:root {
    --deep-green: #1a2f23;
    --accent-green: #2d4a3e;
    --gold: #d4af37;
    --gold-light: #f1d279;
    --off-white: #f5f5f5;
    --text-muted: rgba(245, 245, 245, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-green);
    color: var(--off-white);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtly animated background */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-green) 0%, var(--deep-green) 70%);
    animation: backgroundMove 20s ease-in-out infinite alternate;
    z-index: -1;
}

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

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.countdown-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-light);
    font-weight: 700;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    position: relative;
    transition: width 1s ease-in-out;
}

.progress-text {
    font-size: 0.75rem;
    margin-top: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Nature/Ethereal accents */
.decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
    z-index: 0;
}

.decoration-top {
    top: 5%;
    right: 5%;
    width: 200px;
}

.decoration-bottom {
    bottom: 5%;
    left: 5%;
    width: 250px;
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .logo { font-size: 3rem; }
    h1 { font-size: 1.4rem; }
    .countdown { gap: 1rem; }
    .countdown-value { font-size: 1.8rem; }
    .countdown-item { min-width: 60px; }
}
