/* Custom styles and utilities */

.text-shadow {
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.scanlines {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.2)
    );
    background-size: 100% 4px;
}

/* Custom Scrollbar for skills menu */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1f2937; 
}
::-webkit-scrollbar-thumb {
    background: #4b5563; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; 
}

/* Animations */
@keyframes flashRed {
    0%, 100% { filter: none; }
    50% { filter: brightness(0.5) sepia(1) hue-rotate(-50deg) saturate(5); }
}

.anim-hit {
    animation: flashRed 0.2s ease-in-out;
}
