body { font-family: 'Inter', sans-serif; background-color: #000; color: #fff; }

.text-accent { color: #DF2727; }
.bg-accent { background-color: #DF2727; }
.outline-text { -webkit-text-stroke: 1px #fff; color: transparent; }
.grain-overlay { 
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05; pointer-events: none;
}
/* Custom cursor for typewriter */
.cursor {
    display: inline-block;
    width: 10px;
    background-color: #DF2727;
    margin-left: 8px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}