/* === FONT === */
@font-face {
    font-family: 'VCRFont';
    src: url('VCR.ttf') format('truetype');
}

/* === BASE BODY CURSOR === */
body {
    cursor: url("Cursor/Normal Cursor.cur"), auto;
    font-family: 'VCRFont', Arial, sans-serif;
}

/* === OTHER CURSORS === */
a,
button,
.enter-gif,
#sound-icon {
    cursor: url("Cursor/Link Select Cursor.cur"), pointer;
}

input[type="text"],
textarea {
    cursor: url("Cursor/Text Select Cursor.cur"), text;
}

.precision {
    cursor: url("Cursor/Precision Select Cursor.cur"), crosshair;
}

.unavailable {
    cursor: url("Cursor/Unavailable Cursor.cur"), not-allowed;
}

.handwriting {
    cursor: url("Cursor/Handwriting Cursor.cur"), auto;
}

.alt-select {
    cursor: url("Cursor/Alternate Select Cursor.cur"), auto;
}

/* === GHOST TRAIL CHARACTERS === */
.trail-char {
    position: fixed;
    color: yellow;
    font-family: monospace;
    font-size: 14px;
    pointer-events: none;
    text-shadow: 0 0 6px yellow, 0 0 12px yellow;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .trail-char {
        display: none;
    }
}
