:root {
    --primary-color: #d4af37; /* Gold */
    --text-color: #fdfdfd;
    --text-muted: rgba(253, 253, 253, 0.7);
    --bg-overlay: rgba(10, 15, 25, 0.85); /* Deep midnight blue overlay */
}

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

body {
    height: 100vh;
    overflow: hidden; /* No scroll */
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

.divider {
    height: 1px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 1rem 0;
    opacity: 0.5;
}

.countdown-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.time {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.5rem;
    }
    .time-box {
        min-width: 65px;
        padding: 0.8rem;
    }
    .time {
        font-size: 1.8rem;
    }
    .label {
        font-size: 0.65rem;
    }
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

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