/* === Tema: Día de Muertos === */
:root {
    --bg-primary: #1a0f1e;
    --bg-secondary: #2d1b3d;
    --bg-tertiary: #3a2448;
    --text-primary: #f4e4c1;
    --text-secondary: #c19a6b;
    --text-muted: #8b7355;
    --accent: #ff6b35;
    --accent-hover: #ff8856;
    --accent-glow: rgba(255, 107, 53, 0.3);
    --border: #4a2d5e;
    --border-light: #5e3a71;
    --shadow: rgba(255, 107, 53, 0.15);
    --shadow-heavy: rgba(255, 107, 53, 0.3);
}

/* Animación especial para el tema */
@keyframes calavera-dance {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.pixel-icon {
    animation: calavera-dance 0.5s ease-in-out infinite;
}