:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --primary: #76ff03; 
    --secondary: #666;
    --accent: #ff003c;
    --text: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; user-select: none; } /* NO TEXT SELECTION */

body { background-color: var(--bg); color: var(--text); font-family: var(--font-main); overflow-x: hidden; }

#login-screen { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center; }
.login-box { text-align: center; border: 1px solid #151515; padding: 40px; background: #050505; width: 350px; }
.login-box h1 { font-family: var(--font-code); letter-spacing: 2px; font-size: 2rem; margin-bottom: 5px; color: #fff; }
.login-box input { background: #080808; border: 1px solid #222; color: var(--primary); padding: 10px; width: 100%; margin: 10px 0 20px 0; font-family: var(--font-code); text-align: center; outline: none; letter-spacing: 2px; }
.login-box button { background: #fff; color: #000; font-weight: 800; border: none; padding: 10px; cursor: pointer; display: block; width: 100%; font-family: var(--font-code); }
.login-box button:hover { background: var(--primary); }

nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 5%; border-bottom: 1px solid #111; background: #000; position: sticky; top: 0; z-index: 100; }
.logo { font-family: var(--font-code); font-weight: 700; color: #fff; letter-spacing: 1px; font-size: 1.2rem; }
.nav-links a { color: #444; text-decoration: none; margin-left: 20px; font-size: 0.75rem; font-family: var(--font-code); transition: 0.3s; }
.nav-links a.active-link { color: var(--primary); }

.hero { text-align: center; padding: 80px 20px; max-width: 1000px; margin: 0 auto; }
.hero h1 { font-size: 4rem; line-height: 1; margin-bottom: 20px; font-weight: 800; letter-spacing: -2px; }
.glitch-text { color: var(--primary); }
.subtitle { color: #555; max-width: 500px; margin: 0 auto 60px auto; font-family: var(--font-code); font-size: 0.8rem; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; text-align: left; margin-bottom: 60px; }
.info-card { background: var(--surface); padding: 25px; border: 1px solid #111; }
.info-card h3 { margin-bottom: 10px; font-weight: 400; font-size: 1rem; color: #fff; font-family: var(--font-code); }
.info-card p { font-size: 0.8rem; color: #666; line-height: 1.5; }
.cta-btn { background: var(--primary); color: #000; padding: 15px 30px; font-weight: 700; border: none; font-size: 0.8rem; cursor: pointer; font-family: var(--font-code); }
.cta-btn:hover { background: #fff; }

.dash-header { display: flex; justify-content: space-between; align-items: center; padding: 40px 5% 20px 5%; }
.dash-header h2 { font-size: 1rem; font-family: var(--font-code); letter-spacing: 1px; color: #fff; }
.status-badge { background: #050505; color: var(--primary); border: 1px solid #151515; padding: 4px 10px; font-size: 0.6rem; font-family: var(--font-code); }
.dot { height: 5px; width: 5px; background: var(--primary); border-radius: 50%; display: inline-block; margin-right: 5px; }

.filter-bar { padding: 0 5%; margin-bottom: 40px; }
.filter-btn { background: transparent; border: 1px solid #222; color: #444; padding: 6px 15px; margin-right: 8px; cursor: pointer; font-family: var(--font-code); font-size: 0.7rem; }
.filter-btn.active { border-color: #fff; color: #fff; }

.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 15px; padding: 0 5% 80px 5%; }
.card { background: var(--surface); border: 1px solid #111; padding: 20px; position: relative; text-decoration: none; display: block; color: inherit; transition: 0.2s; }
.card:hover { border-color: #333; transform: translateY(-3px); }
.stat-row { display: flex; justify-content: space-between; margin-top: 15px; padding-top: 15px; border-top: 1px solid #111; }
.rpg-val { font-family: var(--font-code); font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.card-hover-icon { position: absolute; top: 20px; right: 20px; opacity: 0; transition: 0.2s; }
.card:hover .card-hover-icon { opacity: 1; }
.section-title { grid-column: 1 / -1; font-family: var(--font-code); font-size: 0.7rem; font-weight: 700; margin: 30px 0 10px 0; border-bottom: 1px solid #111; padding-bottom: 10px; letter-spacing: 1px; }

footer { border-top: 1px solid #111; padding: 40px 0; text-align: center; color: #333; font-size: 0.7rem; font-family: var(--font-code); }

.update-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 4px;
    font-family: var(--font-code);
    font-size: 0.8rem;
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.1);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.5s;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
