/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #2E2E2E 0%, #1a1a2e 50%, #2E2E2E 100%);
    color: #F4F4F4;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hero section */
.hero {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-image {
    height: clamp(200px, 25vw, 350px);
    width: auto;
    filter: drop-shadow(0 0 30px rgba(242, 80, 107, 0.4));
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F2506B, #7E3DF0, #4D52F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 300;
    color: #F4F4F4;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content sections */
.content {
    width: 100%;
    max-width: 800px;
}

.coming-soon {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(126, 61, 240, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 80, 107, 0.2);
}

.coming-soon h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F2506B, #7E3DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: #F4F4F4;
    opacity: 0.9;
    line-height: 1.6;
}

/* Social links */
.social-links h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #7E3DF0, #4D52F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: rgba(244, 244, 244, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: #F4F4F4;
    transition: all 0.3s ease;
    border: 1px solid rgba(126, 61, 240, 0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(242, 80, 107, 0.1);
    box-shadow: 0 10px 30px rgba(242, 80, 107, 0.2);
    border-color: rgba(242, 80, 107, 0.4);
}

.social-link svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Social link specific colors */
.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-link.spotify:hover {
    background: rgba(30, 215, 96, 0.1);
    border-color: rgba(30, 215, 96, 0.3);
}

.social-link.apple-music:hover {
    background: rgba(250, 250, 250, 0.1);
    border-color: rgba(250, 250, 250, 0.3);
}

.social-link.discord:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 214, 0, 0.1));
    border-color: rgba(225, 48, 108, 0.3);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(126, 61, 240, 0.2);
    color: #F4F4F4;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Background animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(242, 80, 107, 0.03), transparent);
    animation: rotate 20s linear infinite;
}

.wave-1 {
    animation-duration: 25s;
    background: linear-gradient(45deg, transparent, rgba(126, 61, 240, 0.02), transparent);
}

.wave-2 {
    animation-duration: 30s;
    animation-direction: reverse;
    background: linear-gradient(45deg, transparent, rgba(77, 82, 242, 0.02), transparent);
}

.wave-3 {
    animation-duration: 35s;
    background: linear-gradient(45deg, transparent, rgba(242, 80, 107, 0.015), transparent);
}

/* Animations */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(242, 80, 107, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(126, 61, 240, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(77, 82, 242, 0.35));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}



@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-link {
        padding: 1.2rem 0.8rem;
    }
    
    .coming-soon {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .logo-image {
        height: clamp(150px, 40vw, 250px);
    }
    
    .hero {
        margin-bottom: 2rem;
    }
}