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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6; /* Fondo gris muy claro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.redirect-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: fadeIn 0.5s ease-out;
}

.icon-container {
    background-color: #e0f2fe; /* Azul claro suave */
    color: #0284c7; /* Azul profesional */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111827;
}

.message {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 25px;
}

.countdown-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 25px;
}

#countdown {
    font-weight: bold;
    color: #0284c7;
}

.btn-redirect {
    display: inline-block;
    background-color: #0284c7;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-redirect:hover {
    background-color: #0369a1;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}