* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;    
    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 {
    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;
}

.archive-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
    cursor: none;
}

.archive-title {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.archive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.archive-table thead th {
    text-align: left;
    font-weight: normal;
    padding-bottom: 8px;
    opacity: 0.6;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.archive-table tbody tr {
    transition: background 0.15s ease;
}

.archive-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.archive-table td {
    padding: 8px 0;
}

.name {
    width: 60%;
}

.type {
    width: 15%;
    opacity: 0.7;
}

.lines {
    width: 25%;
    opacity: 0.7;
}

.archive-table a {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    cursor: none;
}

.archive-table a:hover {
    opacity: 1;
    text-decoration: underline;
    cursor: none;
}

.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;
    cursor: none;
}