/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
}

.nav-link-back {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.nav-link-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(-5px);
}

/* Coming Soon Hero Section */
.coming-soon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.coming-soon-content {
    max-width: 850px;
    width: 100%;
    text-align: center;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: titleFadeIn 1s ease-out;
}

.coming-soon-text {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 3px;
    animation: textPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: #000000;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.3);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #ffffff;
    color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav {
        padding: 1.5rem;
    }

    .nav-link-back {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .coming-soon-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .coming-soon-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .coming-soon-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2.2rem;
    }

    .coming-soon-text {
        font-size: 2rem;
    }
}
