:root {
    --bg-color: hsl(0, 0%, 0%);
    --accent-color: hsl(48, 100%, 50%);
    /* Vibrant Yellow #FFD700 */
    --accent-glow: hsla(48, 100%, 50%, 0.3);
    --text-primary: hsl(0, 0%, 98%);
    --card-bg: rgba(13, 13, 13, 0.7);
    /* Glassmorphism base */
    --muted-color: hsl(0, 0%, 15%);
    --border-radius: 0.75rem;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'PT Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Background Image with Dark Overlay */
body::before {
    content: '';
    position: fixed; /* Fixed so it doesn't scroll with content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%),
        url('https://images.unsplash.com/photo-1626225967045-2c330b861619?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomOut 20s ease-out infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    min-height: 100vh; /* Use min-height to allow expansion */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* Header & Logo */
header {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: default;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-color);
}


/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0; /* Add padding for better spacing on scroll */
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 7rem); /* Slightly smaller min-size */
    line-height: 1; /* Adjusted for better fit */
    letter-spacing: -2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.accent {
    color: var(--accent-color);
    display: block;
    position: relative;
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 650px;
    margin-bottom: 3rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    backdrop-filter: blur(5px);
    width: fit-content;
    text-transform: uppercase;
}

.coming-soon-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    70% {
        transform: scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 transparent;
    }
}

button {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0 2rem;
    border-radius: calc(var(--border-radius) - 0.2rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

button:hover {
    background-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer & Socials */
footer {
    padding: 2rem 0;
    margin-top: auto; /* Push to bottom */
}

.social-links {
    display: flex;
    gap: 3rem;
}

.social-link {
    color: rgba(250, 250, 250, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-smooth);
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--text-primary);
}

.social-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-out forwards;
}

.fade-in-delayed {
    animation: fadeIn 2s ease-out 1.2s forwards;
    opacity: 0;
}

.slide-up { animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards; opacity: 0; }
.slide-up-delayed { animation: fadeInUp 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards; opacity: 0; }

.reveal-text {
    animation: fadeInUp 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
        justify-content: flex-start; /* Stack naturally on mobile */
        gap: 2rem;
    }

    .hero {
        padding: 2rem 0;
        flex: none; /* Let it take natural height */
    }

    h1 {
        font-size: clamp(2rem, 12vw, 3.5rem); /* Proportional sizing */
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }

    .tagline {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .logo {
        justify-content: center;
    }
    
    footer {
        padding-bottom: 3rem; /* Extra space at bottom */
    }
}

@media (max-height: 600px) {
    .container {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
}