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

body {
    background-color: #050505; /* Full black/deep dark */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Background Subtle Gradient Glow */
body::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle at center, rgba(200, 150, 50, 0.05) 0%, transparent 60%);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.logo {
    max-width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 170, 70, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.countdown-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.number {
    font-size: 4rem;
    font-weight: 600;
    color: #e5b85a; /* Gold tint to match the logo */
    line-height: 1;
    text-shadow: 0 0 15px rgba(229, 184, 90, 0.3);
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 0.5rem;
}

.separator {
    font-size: 3rem;
    color: #444;
    font-weight: 300;
    margin-top: -1.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #777;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.6;
    margin-top: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 600px) {
    .countdown-card {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
        width: 95%;
        justify-content: center;
    }
    .time-block {
        min-width: 50px;
    }
    .number {
        font-size: 2rem;
    }
    .label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .title {
        font-size: 2rem;
    }
    .separator {
        font-size: 1.5rem;
        margin-top: -1rem;
    }
    .logo {
        max-width: 150px;
    }
}
