/* Efecto máquina de escribir para el aniversario */
.anniversary-typewriter {
    overflow: hidden;
    border-right: .15em solid #FF6B35; /* cursor naranja */
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .05em;
    animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
    width: fit-content;
    color: #003366; /* azul institucional */
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
}

.anniversary-message {
    font-family: 'Poppins', sans-serif;
    color: #003366;
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.anniversary-countdown {
    font-family: 'Poppins', sans-serif;
    color: #FF6B35;
    font-weight: 700;
    margin: 0.5rem 0;
    text-align: center;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contenedor principal */
.anniversary-container {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(255, 107, 53, 0.05));
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.anniversary-container::before {
    content: "50°";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    z-index: 0;
}

/* Botón mejorado */
.anniversary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FF6B35, #D9B348);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.anniversary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #D9B348, #FF6B35);
}

/* Responsive */
@media (max-width: 768px) {
    .anniversary-typewriter {
        font-size: 1.5rem;
    }
    
    .anniversary-message {
        font-size: 1.2rem;
    }
    
    .anniversary-countdown {
        font-size: 1.4rem;
    }
    
    .anniversary-container::before {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .anniversary-typewriter {
        font-size: 1.3rem;
        border-right-width: .1em;
    }
    
    .anniversary-message, 
    .anniversary-countdown {
        font-size: 1.1rem;
    }
    
    .anniversary-container {
        padding: 2rem 1rem;
    }
    
    .anniversary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .anniversary-container::before {
        font-size: 2rem;
        right: 10px;
    }
}