:root {
  --bg: #07140f;
  --bg-elevated: #0c1c16;
  --bg-card: #12241c;
  --text: #f4f7f5;
  --muted: #b7c4bc;
  --gold: #f5c518;
  --gold-dark: #c9a00e;
  --line: #1e3a2e;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { color-scheme: dark; background: var(--bg); }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg-elevated);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 18px; }
header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7,20,15,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 64px; }
.logo { flex: 1; min-width: 0; }
.logo img { height: 36px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; }
.nav-desk { display: none; gap: 22px; font-weight: 600; color: var(--muted); }
.nav-desk a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 18px; border-radius: 8px;
  background: var(--gold); color: #111; font-weight: 800; letter-spacing: .02em;
}
.btn:hover { background: #ffd84a; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.burger { width: 42px; height: 42px; border: 0; background: transparent; display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; inset: 64px 0 0; background: #07140f;
  padding: 18px; z-index: 39; flex-direction: column; gap: 14px; font-size: 1.1rem; font-weight: 700;
}
.mobile-nav.active { display: flex; }
.hero { position: relative; overflow: hidden; background: #0d3a2a; min-height: 280px; }
.hero a { display: block; color: inherit; position: relative; }
.hero-img-d { display: none; }
.hero img { width: 100%; height: 70vh; max-height: 640px; object-fit: cover; object-position: center 12%; }
.hero-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(7,20,15,.92) 58%);
}
.hero-copy em { display: block; color: var(--gold); font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.hero-copy strong { display: block; font-size: clamp(1.4rem, 4vw, 2.2rem); line-height: 1.2; margin: 6px 0 14px; }
.kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: -.03em; line-height: 1.15; margin: 8px 0 10px; }
h2 { font-size: 1.35rem; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 1.05rem; }
.section { padding: 28px 0; }
.lobby { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { position: relative; border-radius: 10px; overflow: hidden; background: #000; aspect-ratio: 3/4; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile span { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 8px 8px; background: linear-gradient(transparent, rgba(0,0,0,.85)); font-size: 12px; font-weight: 700; }
.tile b { position: absolute; top: 8px; right: 8px; background: var(--gold); color: #111; font-size: 10px; padding: 3px 7px; border-radius: 4px; }
.promos { display: grid; gap: 12px; }
.promos a { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.article p { color: var(--muted); }
.specs { width: 100%; border-collapse: collapse; margin: 18px 0; }
.specs td, .specs th { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; }
.specs th { color: var(--muted); font-size: 12px; }
.slot-hero { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.slot-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.actions { display: flex; gap: 10px; margin: 16px 0 8px; flex-wrap: wrap; }
footer { border-top: 1px solid var(--line); padding: 28px 0 110px; color: var(--muted); font-size: .92rem; }
.foot-grid { display: grid; gap: 18px; }
.foot-grid h4 { color: #fff; margin: 0 0 8px; font-size: 13px; letter-spacing: .08em; }
.foot-grid a { display: block; margin: 6px 0; }
.sticky {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 50; min-height: 64px; padding: 10px 16px; border-radius: 14px;
  background: var(--gold); color: #111; box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.sticky span { font-weight: 800; font-size: 1.12rem; }
.sticky small { opacity: .7; font-size: 11px; font-weight: 600; }
@media (max-width: 759px) {
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn { min-height: 38px; padding: 0 12px; font-size: 0.82rem; }
}
@media (min-width: 760px) {
  .nav-desk { display: flex; }
  .burger { display: none; }
  .logo { flex: 0 0 auto; }
  .logo img { height: 42px; }
  .lobby { grid-template-columns: repeat(6, 1fr); }
  .promos { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .hero-img-m { display: none; }
  .hero-img-d { display: block; }
  .hero img { height: 56vh; max-height: 560px; object-position: center; }
  .sticky { display: none; }
  footer { padding-bottom: 36px; }
}
