/* ═══════════════════════════════════════════
   7K CASINO — BMW M INSPIRED DARK THEME
   Gold accent (#f5a623) replaces M tricolor
   ═══════════════════════════════════════════ */

/* ── RESET ────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Apple Color Emoji', 'Segoe UI Emoji', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #000000;
  color: #bbbbbb;
  font-weight: 300;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ── DESIGN TOKENS ────────────────────── */
:root {
  --color-canvas:        #000000;
  --color-surface-soft:  #0d0d0d;
  --color-surface-card:  #1a1a1a;
  --color-surface-elevated: #262626;
  --color-carbon:        #2b2b2b;
  --color-hairline:      #3c3c3c;
  --color-hairline-strong: #262626;
  --color-primary:       #ffffff;
  --color-ink:           #ffffff;
  --color-body:          #bbbbbb;
  --color-body-strong:   #e6e6e6;
  --color-muted:         #7e7e7e;
  --color-success:       #0fa336;
  --color-warning:       #f4b400;
  --color-on-dark:       #ffffff;
  --color-on-primary:    #000000;
  /* Gold accent — casino premium */
  --color-gold:          #f5a623;
  --color-gold-dark:     #c4881c;
  --color-gold-light:    #f7c56c;
  --color-gold-muted:    rgba(245, 166, 35, 0.15);
  /* Spacing */
  --space-section: 96px;
  --space-xxl: 64px;
  --space-xl: 40px;
  --space-lg: 24px;
  --space-md: 16px;
  --space-sm: 12px;
  --space-xs: 8px;
  --space-xxs: 4px;
  /* Layout */
  --max-width: 1440px;
  --header-height: 64px;
}

/* ── UTILITY ──────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── GOLD STRIPE DIVIDER ──────────────── */
.gold-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  width: 80px;
  margin-bottom: var(--space-xl);
}

/* ── SKIP LINK ────────────────────────── */
.skip-link {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-gold);
  color: #000;
  padding: var(--space-xs) var(--space-md);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 9999;
  transform: translateY(-200%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ── HEADER ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.brand img {
  width: 100px;
  height: 100px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand small {
  font-size: 8px;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── NAVIGATION ───────────────────────── */
.site-nav {
  display: flex;
  gap: var(--space-xl);
}

.site-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: var(--space-xxs) 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* ── HEADER ACTIONS ───────────────────── */
.header-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-gold);
  color: #ffffff;
  border: 1px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  animation: btn-pulse-ring 2.2s ease-in-out infinite;
}

/* Pulse ring — outline не обрезается overflow:hidden */
@keyframes btn-pulse-ring {
  0%, 100% {
    outline: 1px solid rgba(190, 64, 39, 0.7);
    outline-offset: 0px;
  }
  50% {
    outline: 1px solid rgba(190, 64, 39, 0);
    outline-offset: 4px;
  }
}

/* Shimmer sweep — только background-position, GPU-composited */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 45%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.25) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 150% 0;
  animation: btn-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%, 100% { background-position: 150% 0; }
  50%      { background-position: -50% 0; }
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.btn--primary:hover::after {
  animation: btn-shimmer-hover 0.8s ease-in-out infinite;
}

@keyframes btn-shimmer-hover {
  0%, 100% { background-position: 150% 0; }
  50%      { background-position: -50% 0; }
}

.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn--outline:hover {
  background: var(--color-ink);
  color: #000000;
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline-gold:hover {
  background: var(--color-gold);
  color: #000000;
}

.btn--sm {
  height: 40px;
  padding: 0 var(--space-lg);
  font-size: 12px;
  letter-spacing: 1px;
}

.btn--lg {
  height: 56px;
  padding: 0 40px;
  font-size: 16px;
}

/* ── MENU TOGGLE ──────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
  align-items: flex-end;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-ink);
  transition: all 0.3s;
  border-radius: 1px;
}

.menu-toggle span:nth-child(1) { width: 24px; }
.menu-toggle span:nth-child(2) { width: 18px; }
.menu-toggle span:nth-child(3) { width: 22px; }

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* ── HERO ─────────────────────────────── */
.hero {
  padding: var(--space-xxl) 0;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.hero-copy h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-ink);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-copy .lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Hero badges */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.badge-list li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-body);
}

.badge-icon {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 14px;
}

/* Payment panel */
.payment-panel {
  border-top: 1px solid var(--color-hairline);
  padding-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.payment-panel-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.payment-icons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.payment-icons img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.payment-icons img:hover {
  opacity: 1;
}

.updated {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.hero-visual img {
  max-width: 90%;
  height: auto;
}

/* ── SECTION COMMONS ──────────────────── */
.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--color-surface-soft);
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-ink);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: var(--space-xl);
  max-width: 720px;
}

.section-subtitle--full {
  max-width: none;
}

.narrow {
  max-width: 860px;
}

/* ── CHECK LIST ───────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.check-list li {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-body);
  padding-left: var(--space-lg);
  position: relative;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
}

/* ── TABLE ────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-hairline);
  background: var(--color-surface-soft);
}

table td {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-body-strong);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-hairline);
}

table tbody tr:hover td {
  background: var(--color-surface-card);
}

table th[scope="row"] {
  color: var(--color-gold);
  width: 280px;
}

.compact-table th,
.compact-table td {
  padding: var(--space-sm) var(--space-lg);
  font-size: 14px;
}

/* ── CARD GRIDS ───────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ── CARD ─────────────────────────────── */
.card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-hairline);
  padding: var(--space-xl);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1.6;
}

.card ul, .card ol {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card li {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-body);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.5;
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--color-gold);
}

.card ol {
  counter-reset: steps;
}

.card ol li {
  counter-increment: steps;
  padding-left: var(--space-xl);
}

.card ol li::before {
  content: counter(steps);
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.top-gap {
  margin-top: var(--space-xl);
}

/* ── SLOT SHOWCASE ────────────────────── */
.slot-showcase-head {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
}

.slot-showcase-head h3 {
  margin-bottom: var(--space-sm);
}

.meta-list {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.meta-list li {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-hairline);
  background: var(--color-surface-card);
}

.slot-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.slot-tile {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
  display: block;
}

.slot-tile:hover {
  border-color: var(--color-gold);
}

/* Slot image + hover overlay */
.slot-tile-img {
  position: relative;
  overflow: hidden;
}

.slot-tile-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.slot-tile:hover .slot-tile-img img {
  transform: scale(1.05);
}

.slot-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.slot-tile:hover .slot-tile-overlay {
  opacity: 1;
}

.slot-tile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  transition: all 0.2s;
}

.slot-tile:hover .slot-tile-btn {
  background: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
}

.slot-tile-body {
  padding: var(--space-md);
}

.slot-tile-body h3 {
  font-size: 16px;
  margin-bottom: var(--space-xxs);
}

.slot-meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.slot-tile-body p {
  font-size: 13px;
}

/* ── QAPage BLOCK ─────────────────────── */
.qa-block {
  /* padding comes from parent .section */
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.qa-item {
  background: var(--color-surface-card);
  border: 1px solid var(--color-hairline);
  padding: var(--space-xl);
  transition: border-color 0.2s;
}

.qa-item:hover {
  border-color: var(--color-gold);
}

.qa-question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.qa-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.qa-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
}

.qa-answer {
  padding-left: 40px;
}

.qa-answer p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-body);
  margin-bottom: var(--space-sm);
}

.qa-votes {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

/* ── FAQ (Details/Summary) ────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-list details {
  border: 1px solid var(--color-hairline);
  background: var(--color-surface-card);
}

.faq-list summary {
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-list summary:hover {
  color: var(--color-gold);
}

.faq-list summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details[open] {
  border-color: var(--color-gold);
}

.faq-list details p {
  padding: 0 16px 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1.6;
}

/* ── CTA SECTION ──────────────────────── */
.cta-section {
  padding: var(--space-xxl) 0;
}

.cta-card {
  text-align: center;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.cta-card p {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-body);
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── NOTICE ───────────────────────────── */
.notice {
  background: var(--color-gold-muted);
  border-left: 4px solid var(--color-gold);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.notice strong {
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.notice p, .notice span {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-body);
  margin-top: var(--space-xxs);
}

/* ── RESPONSIBLE WARNING ──────────────── */
.responsible-warning {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-hairline);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.responsible-warning p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
}

.responsible-warning strong {
  color: var(--color-gold);
  font-weight: 700;
}

.responsible-warning a {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.responsible-warning a:hover {
  text-decoration: underline;
}

/* ── FOOTER ───────────────────────────── */
.site-footer {
  background: var(--color-canvas);
  border-top: 1px solid var(--color-hairline);
  padding: var(--space-xxl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand small {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-grid > div:first-child p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-meta p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
}

.footer-meta strong {
  color: var(--color-body);
  font-weight: 700;
}

/* Footer link lists (sitelinks signal) */
.footer-links-extended {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-hairline);
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-link-column a {
  font-size: 11px;
  font-weight: 300;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-link-column a:hover {
  color: var(--color-gold);
}

/* ── MEDIA GRID HELPERS ───────────────── */
.media-highlight {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card {
  display: flex;
  flex-direction: column;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1200px) {
  .hero-copy h1 {
    font-size: 44px;
  }

  .slot-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --space-section: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    max-width: 72%;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .slot-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slot-showcase-head {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 48px;
    --space-xxl: 40px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 20px;
  }

  .menu-toggle {
    display: flex;
    margin-right: var(--space-sm);
  }

  .header-actions .btn--outline {
    display: none;
  }

  .header-actions {
    gap: var(--space-xs);
  }

  .btn--sm {
    height: 36px;
    padding: 0 var(--space-md);
    font-size: 11px;
  }

  .hero {
    padding: var(--space-xl) 0;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy .lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .slot-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-extended {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .card {
    padding: var(--space-lg);
  }

  table th[scope="row"] {
    width: auto;
  }

  .payment-icons {
    gap: var(--space-sm);
  }

  .badge-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .meta-list {
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .slot-showcase-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn--sm {
    font-size: 10px;
    padding: 0 var(--space-sm);
    letter-spacing: 0.5px;
  }

  .brand strong {
    font-size: 14px;
  }

  .qa-item {
    padding: var(--space-lg);
  }

  .qa-title {
    font-size: 16px;
  }

  .faq-list summary {
    font-size: 14px;
    padding: var(--space-md);
  }

  .notice {
    padding: var(--space-md);
  }

  .footer-links-extended {
    grid-template-columns: 1fr;
  }
}
