* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; 
}

img, a {
    -webkit-user-drag: none;
    user-drag: none;
}

@font-face {
    font-family: 'Consola';
    src: url('../assets/fonts/consola.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Consolas', monospace;
    padding: 24px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    cursor: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255);
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-light {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(174, 198, 207, 0.05), transparent 30%);
    pointer-events: none; 
    z-index: -1; 
    transition: background 0.2s linear;
    transition: opacity 0.3s ease, transform 0.1s ease;
}

pre {
    font-family: inherit;
    font-size: 14px;
    opacity: 0.9;
    cursor: none;
}

pre::selection {
    background: transparent;
    color: #ffffff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 14px;
    cursor: none;
    transition: background 0.2s ease, opacity 0.2s ease;
    z-index: 1000;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}