/* =========================================================
   PANDA CASINO — общие стили
   Тёмная тема, зелёные + золотые акценты
   ========================================================= */

:root {
  --bg: #070f0b;
  --bg-soft: #0a1712;
  --surface: #0f2018;
  --surface-2: #14291f;
  --surface-3: #183120;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --green: #19c96b;
  --green-light: #4ee892;
  --green-dark: #0a7d42;
  --green-glow: rgba(25, 201, 107, 0.45);

  --gold: #f2c14e;
  --gold-light: #ffe08a;
  --gold-dark: #b9832a;
  --gold-glow: rgba(242, 193, 78, 0.5);

  --text: #f4f8f5;
  --text-muted: #a9c2b4;
  --text-dim: #74907f;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-lg: 0 30px 60px -25px rgba(0, 0, 0, 0.75);
  --shadow-md: 0 16px 32px -18px rgba(0, 0, 0, 0.65);

  --container: 1200px;
  --font-head: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(ellipse 120% 60% at 50% -10%, #12261b 0%, var(--bg) 55%) fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding-left: 1.3em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--text);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
}

.section-tight {
  padding: 32px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head.left {
  margin: 0 0 32px;
  text-align: left;
}

.text-gradient {
  background: linear-gradient(95deg, var(--green-light), var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #241703;
  box-shadow: 0 10px 24px -8px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 30px -8px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--green {
  background: linear-gradient(135deg, var(--green-light), var(--green) 60%, var(--green-dark));
  color: #04180d;
  box-shadow: 0 10px 24px -8px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--green:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 10, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.brand img {
  height: 38px;
  width: auto;
}

.brand__gold {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ---------- Marquee: winners ticker ---------- */
.wins-ticker {
  background: linear-gradient(90deg, rgba(25, 201, 107, 0.12), rgba(242, 193, 78, 0.1));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.wins-ticker::before,
.wins-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.wins-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.wins-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.wins-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 9px 0;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}

.wins-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.wins-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.wins-ticker__item b {
  color: var(--text);
  font-weight: 700;
}

.wins-ticker__item .amt {
  color: var(--gold-light);
  font-weight: 800;
}

.wins-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-badge b {
  color: var(--gold-light);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media img {
  max-width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  padding: 44px 0 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(25, 201, 107, 0.08), transparent);
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.page-hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.page-hero-inner img {
  max-width: 150px;
}

.page-hero p.lead {
  max-width: 640px;
  font-size: 1.05rem;
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--text);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: transparent;
  color: #04180d;
}

.game-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.game-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.06);
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 13, 10, 0.72);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #241703;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.game-card__body {
  padding: 12px 14px 14px;
}

.game-card__title {
  font-size: 0.92rem;
  margin: 0 0 2px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__provider {
  display: block;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

/* ---------- Feature / info cards ---------- */
.feature-card,
.bonus-card,
.live-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.bonus-card:hover,
.live-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-glow), transparent);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.bonus-card {
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bonus-card__media {
  background: #060b09;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bonus-card__media img {
  width: 100%;
  object-fit: cover;
}

.bonus-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-light);
  background: rgba(25, 201, 107, 0.14);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.bonus-card__body p {
  flex: 1;
}

.live-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.live-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.live-card__tags span {
  font-size: 0.72rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--text-dim);
}

/* ---------- Winners widget ---------- */
.winners-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.winners-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.winners-panel__head h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 var(--green-glow);
  }
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

#winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 360px;
  overflow: hidden;
}

.winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  animation: row-in 0.4s ease;
}

@keyframes row-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.winner-row__thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-3);
}

.winner-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-row__info {
  flex: 1;
  min-width: 0;
}

.winner-row__name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.winner-row__game {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-row__amt {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gold-light);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- Toast (popup) wins ---------- */
#wins-toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}

.wins-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.35s ease;
}

.wins-toast.closing {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateX(-30px) scale(0.96);
  }
}

.wins-toast__thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.wins-toast__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wins-toast__text {
  flex: 1;
  min-width: 0;
}

.wins-toast__text .name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.wins-toast__text .desc {
  font-size: 0.74rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wins-toast__text .amt {
  font-weight: 800;
  color: var(--gold-light);
}

.wins-toast__close {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 4px;
  flex-shrink: 0;
}

.wins-toast__close:hover {
  color: var(--text);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  display: block;
}

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

table.data-table th,
table.data-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

table.data-table th {
  background: var(--surface-2);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

table.data-table td {
  color: var(--text-muted);
}

table.data-table tr:last-child td {
  border-bottom: none;
}

/* ---------- FAQ accordion ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
}

.accordion-trigger .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: transform 0.25s ease;
  font-size: 1rem;
}

.accordion-item.open .accordion-trigger .plus {
  transform: rotate(45deg);
  color: var(--green-light);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel__inner {
  padding: 0 22px 20px;
  color: var(--text-muted);
}

.accordion-panel__inner ul {
  margin: 10px 0 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, rgba(25, 201, 107, 0.16), rgba(242, 193, 78, 0.14));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin-bottom: 6px;
}

.cta-band p {
  margin: 0;
  max-width: 460px;
}

/* ---------- SEO text block ---------- */
.seo-text {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.seo-text h2 {
  margin-top: 1.4em;
}

.seo-text h3 {
  color: var(--gold-light);
  margin-top: 1.2em;
}

.seo-text .prose {
  max-width: 880px;
  margin: 0 auto;
}

.seo-text .prose p,
.seo-text .prose li {
  color: var(--text-muted);
}

.seo-text .prose ul,
.seo-text .prose ol {
  margin-bottom: 1.2em;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  border-top: 1px dashed var(--border);
  padding-top: 18px;
  margin-top: 30px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 50px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-chips span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-legal {
  max-width: 900px;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.7;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ---------- Utilities ---------- */
.mt-0 {
  margin-top: 0;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .hero-media img {
    max-width: 260px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    background: #081511;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 26px 26px;
    gap: 22px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    z-index: 120;
  }
  .main-nav.open {
    right: 0;
  }
  .burger {
    display: flex;
  }
  .header-actions .btn--outline {
    display: none;
  }
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero-inner img {
    display: none;
  }
}

@media (max-width: 620px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    padding: 30px 22px;
  }
  section {
    padding: 44px 0;
  }
  .hero {
    padding: 40px 0 20px;
  }
}

@media (max-width: 420px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Nav overlay for mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
