/**
 * Easter Eggs CSS
 *
 * Estilos para os easter eggs mais épicos de sempre!
 *
 * @package Musica_Theme
 */

/* ============================================
   EASTER EGG MESSAGES
   ============================================ */

.easter-egg-message {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    user-select: none;
}

/* ============================================
   SNOW EFFECT
   ============================================ */

.easter-snow-container {
    overflow: hidden;
}

/* ============================================
   CONFETTI EFFECT
   ============================================ */

.easter-confetti-container {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .easter-egg-message {
        font-size: 1.2rem !important;
        padding: 1.5rem 2rem !important;
        max-width: 90% !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .easter-egg-message,
    .easter-snow-container *,
    .easter-confetti-container * {
        animation: none !important;
        transition: none !important;
    }

    body[style*="animation"] {
        animation: none !important;
    }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .easter-egg-message,
    .easter-snow-container,
    .easter-confetti-container,
    #musica-easter-eggs-container {
        display: none !important;
    }
}
