:root {
    --primary-bg: #4a0d16; /* Deep Maroon / Kumkum */
    --accent-gold: #d4af37; /* Antique Gold for traditional jewelry feel */
    --accent-gold-dark: #b5952f;
    --text-light: #fdfbf7; /* Off-white / Cream */
    --text-muted: #e8dcc4;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Playfair Display', serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Subtle radial gradient to bring focus to the center */
    background: radial-gradient(circle at center, #6b1220 0%, #2a050b 100%);
}

.background-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Subtle geometric overlay to emulate temple architecture/mandala patterns */
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(212, 175, 55, 0.04)" stroke-width="1" fill="none"/><circle cx="50" cy="50" r="30" stroke="rgba(212, 175, 55, 0.03)" stroke-width="1" fill="none"/></svg>');
    background-size: 150px 150px;
    z-index: 1;
}

.container {
    z-index: 2;
    text-align: center;
    padding: 3.5rem;
    max-width: 700px;
    background: rgba(42, 5, 11, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 2s ease-out forwards;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.divider {
    color: var(--accent-gold);
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider::before, .divider::after {
    content: '';
    height: 1px;
    background: var(--accent-gold);
    width: 120px;
    margin: 0 15px;
    opacity: 0.4;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 35px auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
}

.time-box span {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.time-box label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 5px;
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.social-links .links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-links span {
    color: rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
}

.social-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.social-links a:hover {
    color: var(--text-light);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container { padding: 2.5rem 1.5rem; margin: 20px; }
    .title { font-size: 2.5rem; }
    .countdown { flex-wrap: wrap; gap: 10px; }
    .time-box { min-width: 60px; padding: 10px; }
    .time-box span { font-size: 1.8rem; }
}
