/* Efeitos personalizados que o Tailwind padrão não cobre */

.smooth-scroll {
    scroll-behavior: smooth;
}

.pixelated {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Efeitos de Brilho Dourado */
.glow-gold {
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.1);
}

.glow-gold-strong {
    text-shadow: 
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 40px #FFD700,
        0 0 60px rgba(255, 215, 0, 0.8);
}

.box-glow-gold {
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.1);
}

.box-glow-gold-strong {
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Configurações do Canvas para Chuva de Pixels */
#pixel-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

/* Ajuste da barra de rolagem */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0E0F;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}