
/* assets/styles.css - premium cinematic UI (SSG) */
:root{
  --bg: #0f1724; --text:#e6eef8; --muted:#9aa4b2; --accent:#ffb86b; --accent-2:#06b6d4;
  --surface: rgba(255,255,255,0.02); --radius:12px; --max-width:1200px;
}
*{box-sizing:border-box} html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial;background:linear-gradient(180deg,var(--bg),#071122);color:var(--text);-webkit-font-smoothing:antialiased}
.wrap{max-width:var(--max-width);margin:0 auto;padding:28px 20px}
header{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:6px 0 20px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit}
.brand img{width:48px;height:48px;border-radius:10px;object-fit:cover;background:#07101a}
.brand strong{font-weight:700;font-family:Poppins,system-ui,sans-serif}
nav a{color:var(--muted);text-decoration:none;padding:8px 12px;border-radius:10px;font-weight:600}
nav a:hover{color:var(--text);background:rgba(255,255,255,0.02)}
.hero{display:grid;grid-template-columns:1fr 420px;gap:24px;align-items:center;margin-top:12px}
.hero-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:24px;border-radius:14px}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;border:0;cursor:pointer;font-weight:700;text-decoration:none}
.btn-primary{background:linear-gradient(90deg,var(--accent),#ff9b3d);color:#071022}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;margin-top:20px}
.card{background:var(--surface);padding:12px;border-radius:12px;display:flex;flex-direction:column;gap:10px}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px;background:#07101a}
.price{font-weight:800}
.product-hero{display:grid;grid-template-columns:420px 1fr;gap:20px;align-items:start;margin-top:8px}
.product-hero img{width:100%;height:320px;object-fit:cover;border-radius:12px}
.video-section{margin-top:20px;display:flex;gap:20px;align-items:center}
.video-thumb{width:420px;height:240px;overflow:hidden;border-radius:12px}
.video-thumb img{width:100%;height:100%;object-fit:cover}
.video-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.8);z-index:1100;padding:20px}
.video-modal-inner{width:min(1100px,96%);background:#000;border-radius:10px;overflow:hidden}
.hidden{display:none}
.footer{margin-top:40px;color:var(--muted);font-size:13px;text-align:center;padding-top:18px}
@media(max-width:900px){.hero{grid-template-columns:1fr}.product-hero{grid-template-columns:1fr}.video-thumb{width:100%;height:220px}}
