* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(10, 10, 10);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

.snow-container {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 110vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(110vh) translateX(var(--drift));
        opacity: 0;
    }
}

.main-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.anime-girl-section {
    flex-shrink: 0;
    position: sticky;
    top: 60px;
}

.content {
    flex: 1;
    max-width: 900px;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #d8b4fe;
    text-shadow: 0 0 30px rgba(196, 181, 253, 0.4), 0 0 60px rgba(168, 139, 250, 0.2);
    letter-spacing: 1px;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    color: #d1d5db;
}

b {
    color: #e9d5ff;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(196, 181, 253, 0.3);
}

.anime-girl-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.anime-girl {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(196, 181, 253, 0.3));
    margin-bottom: 30px;
}

.visualizer {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
}

.bar {
    width: 8px;
    height: 20px;
    background: #d8b4fe;
    border-radius: 4px;
    box-shadow: 0 0 10px #d8b4fe;
    transition: height 0.1s ease;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }
    
    .anime-girl-section {
        position: relative;
        top: 0;
    }
    
    .content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 30px 20px;
        gap: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    p {
        font-size: 14px;
    }
    
    .anime-girl {
        max-width: 200px;
    }
}
