/* Minimal, fast styles */
:root{--bg:#0b1220;--card:#111a2b;--accent:#00ff88;--text:#e7eef7;--muted:#9fb0c3}
*{box-sizing:border-box}html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.55}
a{color:var(--accent);text-decoration:none}
.container{max-width:1000px;margin:0 auto;padding:0 16px}
.site-header{position:sticky;top:0;background:rgba(11,18,32,.9);backdrop-filter:saturate(120%) blur(6px);border-bottom:1px solid #1b2740}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:60px}
.brand{display:flex;gap:10px;align-items:center;color:var(--text)}
.logo{width:28px;height:28px}
.nav a{margin-left:16px;color:#d8e6f5}
.hero{padding:56px 0;border-bottom:1px solid #1b2740;background:radial-gradient(1200px 400px at 10% -10%,rgba(0,255,136,.08),transparent)}
.hero h1{font-size:36px;margin:0 0 8px}
.hero p{color:var(--muted);margin:0}
.section{padding:32px 0}
.card{background:var(--card);border:1px solid #1b2740;border-radius:16px;padding:16px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:12px;border-bottom:1px solid #1b2740;text-align:left}
.table th{color:#bcd2ea}
.news{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.news .item{border:1px solid #1b2740;border-radius:14px;padding:12px;background:#0f1828}
.news .item h3{margin:0 0 8px;font-size:16px}
.form{display:grid;gap:12px;max-width:420px}
.field{display:grid;gap:6px}
.field input{padding:10px 12px;border-radius:10px;border:1px solid #243250;background:#0f1828;color:var(--text)}
button{padding:10px 14px;border-radius:10px;border:1px solid #1b2740;background:linear-gradient(90deg,#00ff88,#3de0ff);color:#001016;font-weight:600;cursor:pointer}
.muted{color:var(--muted);font-size:13px;margin:6px 0 0}
.site-footer{border-top:1px solid #1b2740;padding:20px 0;color:#b3c3d7}
@media (max-width:640px){.hero h1{font-size:28px}}
