/* Aniversario App */
.aniversario-content {
    text-align: center;
    padding: 40px;
}

.aniversario-question {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.aniversario-question p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
}

.aniversario-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.btn-sim, .btn-nao {
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid var(--primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.btn-sim {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-sim:hover {
    background: linear-gradient(135deg, #44ffaa, #00ff88);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.btn-nao {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.2);
}

.btn-nao:hover {
    background: #ff4444;
    color: #000;
    border-color: #ff4444;
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.4);
    transform: translateY(-2px);
}

#aniversario-overlay {
    display: none;
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

#aniversario-text {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    z-index: 10000;
}

.aniversario-gif {
    width: 360px;
    height: 360px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    animation: gif-appear 0.5s ease forwards;
}

@keyframes gif-appear {
    from {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}
