
:root{--bg:#090c10;--surface:#121820;--card:#182230;--border:#212e40;--gold:#d4af37;--gold-light:#e6c86e;--text:#f3f4f6;--muted:#c5cad3;}
*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;background:var(--bg);color:var(--text);line-height:1.6;}
a{color:inherit;text-decoration:none;}
.container{max-width:1200px;margin:0 auto;padding:0 16px;}
header{display:flex;align-items:center;justify-content:space-between;padding:16px 0;border-bottom:1px solid var(--border);flex-wrap:wrap;gap:12px;}
.logo{font-size:22px;font-weight:900;color:#fff;display:flex;align-items:center;gap:8px;}
.logo-icon{width:32px;height:32px;border-radius:8px;background:linear-gradient(135deg,#f59e0b,#d97706);display:grid;place-items:center;color:#111;font-weight:900;}
.nav-links{display:flex;gap:16px;font-size:14px;font-weight:600;color:#e5e7eb;flex-wrap:wrap;}
.nav-links a.active,.nav-links a:hover{color:var(--gold);}
.hero-card{background:linear-gradient(135deg,#162234,#0d1522);border:1px solid var(--border);border-radius:20px;padding:32px 24px;margin:18px 0;}
.hero-tag{font-size:12px;color:#f59e0b;font-weight:700;margin-bottom:8px;}
.hero-card h1{font-size:28px;font-weight:900;color:#fff;margin-bottom:10px;}
.hero-card p{font-size:15px;color:var(--muted);}
.hero-actions{display:flex;gap:10px;margin-top:18px;flex-wrap:wrap;}
.btn-gold{display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--gold-light),var(--gold));color:#111;font-weight:800;padding:10px 18px;border-radius:999px;border:0;cursor:pointer;}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;background:transparent;border:1px solid var(--gold);color:var(--gold-light);font-weight:700;padding:10px 18px;border-radius:999px;}
.section-head{font-size:18px;font-weight:800;margin:28px 0 14px;display:flex;justify-content:space-between;align-items:center;color:#fff;}
.section-head span{font-size:13px;color:var(--muted);font-weight:500;}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-bottom:12px;}
.card{background:var(--surface);border:1px solid var(--border);border-radius:16px;overflow:hidden;}
.thumb{height:210px;background:#000;}
.thumb img{width:100%;height:100%;object-fit:cover;}
.info{padding:10px 12px;}
.info h3{font-size:14px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.info p{font-size:12px;color:var(--muted);}
.note{font-size:13px;color:var(--muted);margin:8px 0 24px;}
.download-box,.faq-list,article.block{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:20px;margin-bottom:16px;}
.download-box h2,.faq-list h2,article.block h2{font-size:18px;margin-bottom:8px;color:#fff;}
.btn-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;}
.faq-item{border-top:1px solid var(--border);padding:12px 0;}
.faq-item:first-child{border-top:0;}
.faq-item h3{font-size:15px;color:#fff;margin-bottom:6px;}
footer{border-top:1px solid var(--border);padding:24px 0 40px;text-align:center;font-size:13px;color:var(--muted);}
@media(max-width:900px){.grid-5{grid-template-columns:repeat(2,1fr);}.hero-card h1{font-size:22px;}}
