:root {
    --gold-primary: #C5A059;
    --gold-light: #F1D592;
    --gold-dark: #8E6E37;
    --dark-bg: #FFFFFF;
    --text-color: #333333;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    /* Pure white background */
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background-overlay {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.03) 100%);
}

.container {
    max-width: 1000px;
    width: 90%;
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Content Section */
.content-section {
    margin-bottom: 80px;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #F1D592 0%, #C5A059 50%, #8E6E37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.countdown-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.4);
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-gold {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: #C5A059;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Animations */
.animate-fade-down {
    animation: fadeDown 1s ease-out forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.content-section .animate-fade-up:nth-child(1) {
    animation-delay: 0.2s;
}

.content-section .animate-fade-up:nth-child(2) {
    animation-delay: 0.4s;
}

.countdown-container {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 80%;
    }

    .countdown-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 100px;
        padding: 15px 10px;
    }

    .number {
        font-size: 2.2rem;
    }

    .countdown-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 20px 10px;
    }

    .coming-soon-text {
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 5px;
    }

    .number {
        font-size: 1.8rem;
    }

    .label {
        font-size: 0.6rem;
    }
}