
:root {
  --bg: #0f172a;
  --panel: #0b1220;
  --card: #111827;
  --muted: #9ca3af;
  --text: #e5e7eb;
  --accent: #fbbf24;
  --accent-2: #22d3ee;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji'; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: rgba(15,23,42,.7); border-bottom: 1px solid #1f2937; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 10px 16px; }
.logo { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.04em;}
.logo img { width:36px; height:36px; border-radius:10px; }
.nav a.btn { padding:10px 14px; border-radius:12px; background:#1f2937; border:1px solid #334155; }
.hero { padding: 40px 16px 16px; text-align:center; background: linear-gradient(180deg, rgba(34,211,238,.06), transparent); }
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 10px; }
.hero p { color: var(--muted); margin: 0; }
.search { margin: 24px auto; max-width: 720px; display:flex; gap:10px; }
.search input { flex:1; padding:14px 16px; border-radius:14px; border:1px solid #334155; background:#0b1220; color:var(--text); }
.search .chip { white-space:nowrap; padding: 12px 14px; border-radius: 999px; border:1px solid #334155; background:#0b1220; cursor:pointer; }
.grid { display:grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap:16px; }
@media (min-width:640px){ .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width:1024px){ .grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card { background: var(--card); border-radius:16px; border:1px solid #334155; overflow:hidden; display:flex; flex-direction:column; }
.card .thumb { position:relative; width:100%; padding-top:62%; background:#0b1220; overflow:hidden; }
.card .thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.badges { display:flex; gap:8px; flex-wrap:wrap; padding: 10px 12px 0; }
.badge { font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid #374151; background:#0b1220; color:#cbd5e1; }
.card h3 { margin: 10px 12px 6px; font-size:18px; }
.card p { margin: 0 12px 12px; color: var(--muted); min-height: 40px; }
.card .row { display:flex; align-items:center; justify-content:space-between; gap: 12px; padding: 0 12px 12px; }
.price { font-weight:800; color: var(--accent); }
.btn { display:inline-flex; align-items:center; gap:8px; padding: 10px 14px; border-radius:12px; border:1px solid #334155; background:#0b1220; color:#fff; cursor:pointer; }
.btn:hover { background:#111827; }
footer { color:#9ca3af; border-top:1px solid #1f2937; margin-top: 32px; }
footer .container { padding: 24px 16px; }
.section-title { display:flex; align-items:center; justify-content:space-between; margin-top: 24px; }
.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background: rgba(2,6,23,.72); z-index: 100; }
.modal.open { display:flex; }
.modal-card { width:min(100%, 980px); max-height: 90vh; overflow:auto; background:#0b1220; border:1px solid #334155; border-radius:16px; }
.modal-media { position:relative; background:#000; border-bottom:1px solid #334155; }
.modal-media img { width:100%; height: 56vh; object-fit:contain; background:#000; }
.modal-media .nav-btn { position:absolute; top:50%; transform:translateY(-50%); padding: 12px; border-radius:50%; background:rgba(0,0,0,.4); border:1px solid #475569; cursor:pointer; }
.modal-media .nav-btn.left { left: 8px; }
.modal-media .nav-btn.right { right: 8px; }
.modal-media .pager { position:absolute; right: 10px; bottom: 8px; padding:6px 10px; font-size:12px; background:rgba(0,0,0,.4); border:1px solid #475569; border-radius:999px; }
.more-indicator { position:absolute; right:8px; bottom:8px; padding: 6px 8px; border-radius:999px; background:rgba(0,0,0,.45); border:1px solid #475569; }
hr.split { border: 0; height:1px; background:#1f2937; margin: 16px 0; }
#contact .qr { max-width: 300px; border-radius:16px; border:1px solid #334155; overflow:hidden; }
.splash { position:fixed; inset:0; display:grid; place-items:center; background:#000; }
.splash video { position: absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.splash .enter { position:relative; z-index:2; display:inline-flex; align-items:center; gap:10px; padding: 16px 22px; font-size: clamp(20px, 3vw, 30px); border-radius: 16px; background: rgba(255,255,255,.14); color:#fff; border: 1px solid rgba(255,255,255,.4); text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.splash .enter:hover { background: rgba(255,255,255,.22); }
.small { font-size: 12px; color: #94a3b8; }
