* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: 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 {
    font-family: 'Consola';
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    cursor: none;
    overflow-x: hidden;
    position: relative;
}

.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;
}

@keyframes site_fade_in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enter-overlay {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.8s ease;
    cursor: none;
}

.enter-text {
    font-family: monospace;
    font-size: 20px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.8);
}

.container {
    width: 100%;
    min-height: 100vh;
    padding: 24px;
    animation: site_fade_in 1.2s ease forwards;
}

.container .header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.header .title {
    font-size: 14px;
    opacity: 0.8;
    text-transform: lowercase;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons a {
    font-family: inherit;
    font-size: 12px;
    text-transform: lowercase;

    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 12px;

    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;

    cursor: none;
}

.header-buttons a:hover {
    opacity: 1;
}

.roster {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    cursor: none;
}

.roster a,
.roster span {
    font-size: 20px;
    text-transform: lowercase;
    opacity: 0.7;
}

.roster a {
    color: #fff;
    text-decoration: none;
}

.roster a:hover {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    cursor: none;
}