:root {
    --bg: #000000;
    --bg2: #0a0a0a;
    --bg3: #111111;
    --border: #222222;
    --text: #ffffff;
    --text2: #888888;
    --text3: #555555;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1000px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between; height: 52px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.nav-logo img { width: 26px; height: 26px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text2); font-size: 0.85rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn-sm {
    background: var(--text); color: var(--bg); padding: 5px 14px;
    border-radius: 6px; font-weight: 500; font-size: 0.8rem;
}
.btn-sm:hover { opacity: 0.8; }

main { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
}

.hero-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin-bottom: 1.5rem;
    border: 2px solid var(--border);
}

.hero-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--text2); margin-bottom: 2rem;
    letter-spacing: 2px; text-transform: uppercase;
}

.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }

.hero h1 {
    font-size: 3.5rem; font-weight: 800; letter-spacing: -3px;
    margin-bottom: 0.5rem;
}

.tagline { color: var(--text2); font-size: 1rem; margin-bottom: 3rem; }

.live-stats {
    display: flex; align-items: center; gap: 0;
    border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
    margin-bottom: 3rem;
}

.live-item { padding: 1rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.live-item:last-child { border-right: none; }
.live-num { display: block; font-size: 1.2rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.live-label { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }

.hero-btns { display: flex; gap: 0.5rem; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 6px; font-weight: 500; font-size: 0.85rem;
    border: 1px solid var(--border); background: var(--text); color: var(--bg);
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn:hover { opacity: 0.8; }
.btn-outline { background: transparent; color: var(--text); }

section { padding: 80px 0; }
section h2 {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text3); margin-bottom: 3rem; text-align: center;
}

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}

.feature {
    padding: 2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.feature:nth-child(3n) { border-right: none; }
.feature:nth-child(n+4) { border-bottom: none; }
.feature:hover { background: var(--bg2); }

.feature-icon {
    font-size: 1.2rem; margin-bottom: 1rem; display: block;
}

.feature h3 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.feature p { color: var(--text2); font-size: 0.8rem; line-height: 1.5; }

.feature-list {
    margin-top: 0.8rem; font-size: 0.75rem; color: var(--text3);
    font-family: monospace;
}

.cmd-filters { display: flex; gap: 0.3rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.cmd-filter {
    padding: 5px 12px; border-radius: 4px; border: 1px solid var(--border);
    background: transparent; color: var(--text2); font-size: 0.8rem; cursor: pointer;
}
.cmd-filter:hover, .cmd-filter.active { background: var(--text); color: var(--bg); }

.cmd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cmd-card { background: var(--bg); padding: 0.8rem 1rem; }
.cmd-name { font-family: monospace; font-size: 0.8rem; color: var(--text); }
.cmd-desc { color: var(--text3); font-size: 0.7rem; margin-top: 0.1rem; }

.cta { text-align: center; padding: 100px 0; border-top: 1px solid var(--border); }
.cta h2 { font-size: 1.5rem; letter-spacing: -1px; color: var(--text); margin-bottom: 0.5rem; }
.cta p { color: var(--text2); margin-bottom: 2rem; font-size: 0.9rem; }

footer {
    border-top: 1px solid var(--border); padding: 2rem; text-align: center;
    color: var(--text3); font-size: 0.75rem;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature { border-right: none !important; }
    .live-stats { flex-direction: column; }
    .live-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
    .live-item:last-child { border-bottom: none; }
    .nav-links { display: none; }
}
