/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    /* Fondo relajante: un degradado suave tipo cielo */
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Un fondo de imagen sutil (opcional, se ve bien sin ella también) */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1499652848813-8401672553e2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Muy sutil para no molestar la lectura */
    z-index: -1;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    border-top: 5px solid #d4af37; /* Un toque dorado elegante */
    animation: slideUp 1s ease-out;
}

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

.icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

h1 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.message-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 4px solid #3498db; /* Un azul sereno */
}

.message-card strong {
    color: #2980b9;
}

.countdown-section p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.timer {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #d4af37; /* Dorado */
    font-weight: bold;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #aaa;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Responsivo para celulares */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    .timer {
        font-size: 2em;
    }
}