/* ==========================================================================
   Panda Casino — панда казино | Основная таблица стилей
   Тёмная зелёно-чёрная палитра, золотые CTA, глянцевые карточки.
   ========================================================================== */

:root {
  --bg-black: #04100a;
  --bg-deep: #071a10;
  --bg-panel: #0d2618;
  --bg-panel-2: #123420;
  --bg-panel-light: #163f27;
  --line: rgba(255, 214, 120, 0.16);
  --line-strong: rgba(255, 214, 120, 0.32);

  --green-500: #1e9c5a;
  --green-400: #2bc373;
  --green-300: #56e39a;
  --green-glow: rgba(43, 195, 115, 0.35);

  --gold-100: #fdeec0;
  --gold-300: #f3cf6b;
  --gold-500: #e3b23c;
  --gold-600: #c8932a;
  --gold-glow: rgba(227, 178, 60, 0.45);

  --text-main: #eef7ef;
  --text-soft: #b9d2c3;
  --text-mute: #86a396;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 30px rgba(227, 178, 60, 0.3);

  --container: 1180px;
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% -10%, #123c24 0%, var(--bg-deep) 42%, var(--bg-black) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 14px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-500);
  color: #10240f;
  padding: 8px 14px;
  border-radius: 0 0 8px 0;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

section {
  padding: 64px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--gold-300);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.section-head p {
  margin: 0;
}
.section-head.align-left {
  margin: 0 0 30px;
  text-align: left;
  max-width: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(43, 195, 115, 0.14);
  border: 1px solid rgba(43, 195, 115, 0.4);
  color: var(--green-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge.gold {
  background: rgba(227, 178, 60, 0.15);
  border-color: rgba(227, 178, 60, 0.5);
  color: var(--gold-300);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-100), var(--gold-500) 55%, var(--gold-600));
  color: #1a2a12;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 34px rgba(227, 178, 60, 0.42);
}
.btn-green {
  background: linear-gradient(180deg, var(--green-400), var(--green-500) 70%, #0f6b3a);
  color: #eafff2;
  box-shadow: 0 10px 26px rgba(30, 156, 90, 0.35);
}
.btn-green:hover {
  filter: brightness(1.08);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 16, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-img {
  height: 30px;
  width: auto;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold-300);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  flex: 1;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  justify-content: center;
}
.site-nav a {
  display: block;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(43, 195, 115, 0.14);
  color: var(--green-300);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- Ticker: свежие выигрыши ---------- */
.winners-bar {
  background: linear-gradient(90deg, rgba(43,195,115,0.12), rgba(227,178,60,0.1));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 8px 0;
}
.winners-bar .container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.winners-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.winners-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 0 rgba(43,195,115,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,195,115,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(43,195,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,195,115,0); }
}
.winners-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.winners-list {
  display: inline-flex;
  gap: 26px;
  list-style: none;
  animation: none;
}
.winners-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text-soft);
  white-space: nowrap;
}
.winners-list li b {
  color: #fff;
}
.winners-list li .win-amount {
  color: var(--gold-300);
  font-weight: 700;
}
.winners-note {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--text-mute);
}

/* Sidebar / block widget version of winners feed */
.winners-widget {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}
.winners-widget h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.winners-widget h3 .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-400);
  animation: pulse 1.8s infinite;
}
.winners-feed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow: hidden;
}
.winners-feed li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  animation: winFadeIn 0.4s ease;
}
@keyframes winFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.winners-feed .win-player { color: #fff; font-weight: 600; }
.winners-feed .win-game { color: var(--text-mute); display: block; font-size: 12px; }
.winners-feed .win-amount { color: var(--gold-300); font-weight: 700; white-space: nowrap; }
.winners-feed .win-time { color: var(--text-mute); font-size: 11px; }
.winners-widget .fine-print {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--text-mute);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 56px;
  padding-bottom: 40px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .badge {
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  margin-bottom: 16px;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--gold-100), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  max-width: 560px;
  color: var(--text-soft);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 20px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.hero-points li .ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(227,178,60,0.16);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

/* ---------- Promo cards ----------
   Исходные изображения (bonus-shop/tournament/vip-club/wheel-of-fortune)
   являются широкими баннерами: иконка слева, тёмное поле справа.
   Картинка используется как фон карточки целиком, текст размещается
   справа — поверх собственного тёмного поля изображения. */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 168px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.promo-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(4, 16, 10, 0.05) 0%, rgba(6, 18, 12, 0.55) 40%, rgba(5, 15, 10, 0.94) 62%, rgba(4, 12, 8, 0.97) 100%);
}
.promo-card .card-body {
  position: relative;
  z-index: 2;
  min-height: 168px;
  box-sizing: border-box;
  padding: 22px 22px;
  width: 60%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
.promo-card .card-body > * {
  width: 100%;
}
.promo-card .badge {
  width: auto;
  margin-bottom: 8px;
}
.promo-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.promo-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* ---------- Category tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.tab-btn:hover {
  border-color: var(--line-strong);
  color: #fff;
}
.tab-btn.is-active {
  background: linear-gradient(180deg, var(--gold-100), var(--gold-500));
  color: #1a2a12;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ---------- Game grid ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 60%), var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  contain: layout paint;
  transform: translateZ(0);
}
.game-card:hover {
  transform: translateY(-5px) translateZ(0);
  border-color: var(--line-strong);
}
.game-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  /* GPU-хинты для более плавного zoom-in на hover. */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.game-card:hover .game-thumb img {
  transform: scale(1.06) translateZ(0);
}
.game-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 999px;
  background: rgba(4,16,10,0.72);
  color: var(--gold-300);
  border: 1px solid rgba(227,178,60,0.4);
}
.game-play {
  /* Причина странного "овала": этот элемент раньше сам был кнопкой
     (класс .btn задаёт border-radius: 999px), но при этом растягивался
     на весь тайл через inset:0 — пилюльный радиус на большом прямоугольнике
     превращался в огромный эллипс. Теперь .game-play — просто overlay-слой
     без своего border-radius/box-shadow, а видимая кнопка "Играть" — это
     вложенный .game-play-btn нормального размера. */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: none;
  background: rgba(4, 16, 10, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.game-card:hover .game-play {
  opacity: 1;
}
.game-play-btn {
  transform: translateY(6px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.game-card:hover .game-play-btn {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.game-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.game-info h3 {
  font-size: 15px;
  margin: 0;
}
.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-mute);
}
.game-meta .provider {
  color: var(--green-300);
  font-weight: 600;
}
.games-more {
  text-align: center;
  margin-top: 34px;
}

/* ---------- Live category cards (no images, icon-based, avoids overstating claims) ---------- */
.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.live-card {
  border-radius: var(--radius-md);
  padding: 26px 20px;
  background: linear-gradient(160deg, var(--bg-panel-light), var(--bg-panel));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.2s ease;
}
.live-card:hover {
  transform: translateY(-4px);
}
.live-card .live-ico {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: radial-gradient(circle, rgba(227,178,60,0.22), rgba(43,195,115,0.12));
  border: 1px solid var(--line-strong);
}
.live-card h3 { font-size: 16px; margin-bottom: 6px; }
.live-card p { font-size: 13px; margin-bottom: 14px; }

/* ---------- SEO text sections ---------- */
.seo-block {
  border-top: 1px solid var(--line);
}
.seo-block .container {
  max-width: 880px;
}
.seo-block h2 {
  font-size: clamp(22px, 2.8vw, 30px);
}
.seo-block + .seo-block {
  padding-top: 44px;
}
.keyword {
  color: var(--gold-300);
  font-weight: 600;
}

/* ---------- Payment table ---------- */
.pay-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
table.pay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--bg-panel);
}
table.pay-table th, table.pay-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
table.pay-table th {
  background: rgba(227,178,60,0.1);
  color: var(--gold-300);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.4px;
}
table.pay-table tr:last-child td {
  border-bottom: none;
}
table.pay-table td.method {
  color: #fff;
  font-weight: 600;
}
.table-note {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 12px;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-panel);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-300);
  font-size: 22px;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}
.faq-a p {
  padding-bottom: 18px;
  margin: 0;
  font-size: 14.5px;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
}

/* ---------- Bonus page ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* Карточка с портретным маскотом (панда на прозрачном фоне):
   текст слева, панда — декоративный акцент в правом углу. */
.bonus-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  background: linear-gradient(160deg, var(--bg-panel-light), var(--bg-panel));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  min-height: 190px;
  overflow: hidden;
}
.bonus-card img.bonus-card-mascot {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 132px;
  height: 132px;
  object-fit: contain;
}
.bonus-card h3 {
  font-size: 17px;
  max-width: 62%;
}
.bonus-card p {
  font-size: 13px;
  max-width: 58%;
}
.bonus-card .badge {
  margin-bottom: 10px;
}

/* Карточки-баннеры (колесо удачи, турниры, VIP-клуб): изображение —
   фон карточки целиком, текст размещается справа, поверх тёмного
   поля самого изображения — так же, как на promo-card. */
.bonus-card.bonus-card--banner {
  padding: 0;
}
.bonus-card--banner .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.bonus-card--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(4, 16, 10, 0.05) 0%, rgba(6, 18, 12, 0.55) 40%, rgba(5, 15, 10, 0.94) 62%, rgba(4, 12, 8, 0.97) 100%);
}
.bonus-card--banner .card-body {
  position: relative;
  z-index: 2;
  min-height: 190px;
  box-sizing: border-box;
  padding: 22px 22px;
  width: 60%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
.bonus-card--banner .card-body > * {
  width: 100%;
}
.bonus-card--banner h3,
.bonus-card--banner p {
  max-width: 100%;
}
.bonus-card--banner .badge {
  width: auto;
}

.promo-box {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.promo-box h3 {
  margin-bottom: 8px;
}
.promo-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.promo-form input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 14px;
}
.promo-form input::placeholder {
  color: var(--text-mute);
}
.promo-result {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--green-300);
  min-height: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-panel);
  border: 1px solid var(--line);
}
.step-card .step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-100), var(--gold-500));
  color: #1a2a12;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 15px; }
.step-card p { font-size: 13px; margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--bg-panel-light), var(--bg-panel) 60%);
  border: 1px solid var(--line-strong);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}
.cta-banner p { margin: 0; max-width: 480px; }
.cta-banner .cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---------- Trust / features strip ---------- */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  text-align: center;
}
.feature-card .f-ico {
  font-size: 26px;
  margin-bottom: 10px;
}
.feature-card h3 { font-size: 15px; }
.feature-card p { font-size: 13px; margin-bottom: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-mute);
  padding: 18px 0 0;
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--gold-300); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 40px 0 30px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}
.page-hero p {
  max-width: 680px;
  margin: 0 auto;
}
.page-hero-art {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.page-hero-art img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
  animation: floaty 6s ease-in-out infinite;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 26px;
  background: var(--bg-black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; }
.footer-col h4 {
  font-size: 14px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--text-soft);
}
.footer-col a:hover { color: var(--gold-300); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
.footer-legal p { margin: 0; font-size: 12px; color: var(--text-mute); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-300);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 260px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(4, 16, 10, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { padding: 12px 10px; }
  .header-actions .btn-outline { display: none; }
  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 46px 0; }
  .promo-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .promo-form { flex-direction: column; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .cta-banner .cta-actions { flex-direction: column; width: 100%; }
}

@media (max-width: 420px) {
  .promo-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr; }
}
