@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;700&display=swap');

body {
    font-family: 'IBM Plex Mono', monospace;
}

.shadow-brutal {
    box-shadow: 8px 8px 0px #000000;
}

/* Custom animations */
@keyframes brutal-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.brutal-blink {
    animation: brutal-blink 1.5s step-end infinite;
}

/* Custom cursor */
@media (pointer: fine) {
    body {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Crect width='16' height='16' fill='black'/%3E%3C/svg%3E"), auto;
    }
}