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

:root {
    --primary-gold: #E8A817;
    --primary-gold-dark: #D4960C;
    --bg-dark: #090e1a;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.45);
    --glass-border: rgba(255, 255, 255, 0.06);
}

body {
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Banner with Ken Burns Effect */
.bg-banner {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('/images/banner-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

/* Dark Gradient Overlay for high text contrast & premium depth */
.bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg, 
        rgba(9, 14, 26, 0.92) 0%, 
        rgba(15, 23, 42, 0.85) 50%,
        rgba(9, 14, 26, 0.95) 100%
    );
}

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

/* Logo container & animation */
.logo-container {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-container img {
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.25));
    transition: all 0.5s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 255, 255, 0.45));
}

/* Glassmorphism Card */
.coming-soon-card {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(232, 168, 23, 0.08);
    border: 1px solid rgba(232, 168, 23, 0.2);
    margin-bottom: 2rem;
}

.status-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation: pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary-gold);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Heading / Title */
.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #ffffff 30%, #e2e8f0 70%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Countdown Container */
.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.25rem;
    min-width: 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 168, 23, 0.25);
    background: rgba(232, 168, 23, 0.02);
}

.time-box .number {
    font-family: 'Orbitron', 'Outfit', monospace;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(232, 168, 23, 0.2);
}

.time-box .label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 700;
    animation: separatorPulse 1s ease-in-out infinite;
    align-self: center;
    margin-top: -1.25rem;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 168, 23, 0.12);
    animation: floatUp linear infinite;
}

.particle:nth-child(even) {
    background: rgba(255, 255, 255, 0.08);
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-5vh) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* Entry Animation Helpers */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down-delay-1 {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.animate-fade-in-down-delay-2 {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.animate-fade-in-down-delay-3 {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .coming-soon-card {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .time-box {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }

    .time-separator {
        font-size: 1.25rem;
        margin-top: -1rem;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .logo-container img {
        height: 70px;
    }
}
