/* =========================================================
   Panda Casino — design system
   Тёмная тема, акценты: зелёный (основной) + золото (премиум)
   ========================================================= */

:root {
  /* backgrounds — нейтральный графитовый тёмный, без зелёного оттенка */
  --bg-0: #08090b;
  --bg-1: #0c0e11;
  --bg-2: #111318;
  --bg-3: #171a20;
  --card: #12141a;
  --card-hover: #181b22;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* text */
  --text-0: #f5f6f7;
  --text-1: #c8cdd3;
  --text-2: #8b929c;
  --text-3: #5c626b;

  /* brand green */
  --green-300: #4ee08a;
  --green-400: #2fd374;
  --green-500: #17c964;
  --green-600: #0fa653;
  --green-700: #0b7d40;
  --green-glow: rgba(23, 201, 100, 0.35);

  /* brand gold */
  --gold-300: #ffe9ab;
  --gold-400: #ffd873;
  --gold-500: #f0b93a;
  --gold-600: #d4a017;
  --gold-700: #a97b0e;
  --gold-glow: rgba(240, 185, 58, 0.4);

  --red-500: #ef4444;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-pop: 0 20px 50px rgba(0, 0, 0, 0.5);

  --container: 1240px;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 15% -10%, rgba(23, 201, 100, 0.06), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(240, 185, 58, 0.05), transparent 35%),
    var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--text-0);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p {
  color: var(--text-1);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section-tight {
  padding: 40px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-glow);
}

.lead {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 620px;
}

/* =========================== BUTTONS =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  border: 1px solid transparent;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  color: #04150c;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 34px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #241a03;
  box-shadow: 0 10px 24px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 34px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-0);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--green-400);
  color: var(--green-300);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-1);
  padding: 10px 16px;
}

.btn-ghost:hover {
  color: var(--gold-400);
}

.btn-block {
  width: 100%;
}

/* =========================== HEADER =========================== */

.topbar {
  background: linear-gradient(90deg, var(--green-700), var(--green-600) 45%, var(--gold-600));
  color: #04150c;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 14px;
  position: relative;
  z-index: 60;
}

.topbar a {
  text-decoration: underline;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand .brand-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  border: 1px solid var(--gold-700);
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text-1);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  color: var(--text-0);
  background: rgba(255, 255, 255, 0.05);
}

.main-nav a.active {
  color: var(--green-300);
  background: rgba(23, 201, 100, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
}

/* =========================== HERO =========================== */

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-fine {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 8px;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  max-width: 420px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  animation: float 5s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.page-hero {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 201, 100, 0.06), transparent);
}

.page-hero .hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 14px;
}

.breadcrumbs a:hover {
  color: var(--gold-400);
}

/* =========================== WINS TICKER =========================== */

.wins-widget {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.wins-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.wins-widget-head h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 rgba(47, 211, 116, 0.5);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 211, 116, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(47, 211, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 211, 116, 0); }
}

#wins-feed,
.wins-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow: hidden;
}

.win-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  animation: winIn 0.4s ease;
}

@keyframes winIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #04150c;
  background: linear-gradient(135deg, var(--gold-400), var(--green-500));
  flex-shrink: 0;
}

.win-info {
  min-width: 0;
}

.win-name {
  font-weight: 700;
  color: var(--text-0);
  font-size: 0.9rem;
}

.win-game {
  font-size: 0.78rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.win-amount {
  font-weight: 800;
  color: var(--green-300);
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}

.win-time {
  display: block;
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 500;
  text-align: right;
}

.wins-ticker-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  width: max-content;
}

.wins-ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.ticker-item b {
  color: var(--text-0);
}

.ticker-item .amt {
  color: var(--gold-400);
  font-weight: 700;
}

/* =========================== GAME CARDS =========================== */

.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); }

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 58, 0.4);
  box-shadow: var(--shadow-pop);
}

.game-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.07);
}

.game-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 2;
}

.tag-hot {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.tag-new {
  background: var(--gold-400);
  color: #241a03;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0) 40%, rgba(5, 8, 6, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-card .game-info {
  padding: 12px 14px 14px;
}

.game-info .g-name {
  font-weight: 700;
  color: var(--text-0);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info .g-provider {
  font-size: 0.76rem;
  color: var(--text-3);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--green-400);
  color: var(--text-0);
}

.chip.active {
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  border-color: transparent;
  color: #04150c;
}

/* =========================== FEATURE / INFO CARDS =========================== */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(23, 201, 100, 0.18), rgba(240, 185, 58, 0.14));
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
}

.step .step-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-300), var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* =========================== BONUS CARDS =========================== */

.bonus-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
}

.bonus-card .bonus-art {
  position: absolute;
  right: -30px;
  top: -10px;
  width: 200px;
  opacity: 0.9;
  pointer-events: none;
}

.bonus-card .bonus-body {
  position: relative;
  z-index: 2;
  max-width: 74%;
}

.bonus-pct {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-400);
}

.bonus-card ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-card ul li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}

.bonus-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 800;
}

/* =========================== PROVIDERS =========================== */

.providers-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.provider-pill {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  color: var(--text-2);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* =========================== ACCORDION / FAQ =========================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--text-0);
  font-size: 1rem;
}

.acc-item summary::-webkit-details-marker {
  display: none;
}

.acc-item summary .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;
  font-size: 1.1rem;
  color: var(--gold-400);
  transition: transform 0.25s ease;
}

.acc-item[open] summary .plus {
  transform: rotate(45deg);
  color: var(--green-400);
}

.acc-item .acc-body {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 0.94rem;
}

.acc-item .acc-body p + p {
  margin-top: 10px;
}

/* =========================== SEO CONTENT BLOCK =========================== */

.seo-content {
  max-width: 880px;
}

.seo-content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--gold-300);
}

.seo-content p {
  margin-bottom: 14px;
}

.seo-content ul,
.seo-content ol {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-content ul li,
.seo-content ol li {
  position: relative;
  padding-left: 26px;
  color: var(--text-1);
}

.seo-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
}

.seo-content ol {
  counter-reset: seo-counter;
}

.seo-content ol li {
  counter-increment: seo-counter;
}

.seo-content ol li::before {
  content: counter(seo-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(240, 185, 58, 0.16);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-content strong {
  color: var(--text-0);
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

table th {
  background: var(--bg-2);
  color: var(--gold-400);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

table tr:last-child td {
  border-bottom: none;
}

/* =========================== CTA BANNER =========================== */

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 52px;
  background: linear-gradient(135deg, #14161b, #0e1013 60%);
  border: 1px solid rgba(240, 185, 58, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 60%;
  height: 220%;
  background: radial-gradient(circle, rgba(240, 185, 58, 0.16), transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -70%;
  left: -10%;
  width: 45%;
  height: 200%;
  background: radial-gradient(circle, rgba(23, 201, 100, 0.1), transparent 65%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 8px;
}

/* =========================== FOOTER =========================== */

.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-0);
  font-size: 0.92rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-2);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

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

.footer-about p {
  color: var(--text-2);
  font-size: 0.88rem;
  margin: 14px 0 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-3);
}

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

/* =========================== MISC =========================== */

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  color: var(--text-3);
  font-size: 0.82rem;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mascot-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* =========================== RESPONSIVE =========================== */

@media (max-width: 980px) {
  .hero-grid,
  .page-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
  }
  .hero-art img {
    max-width: 260px;
  }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--bg-1);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    transition: right 0.3s ease;
    z-index: 55;
    gap: 4px;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav a {
    padding: 14px 16px;
  }
  .burger {
    display: flex;
  }
  .header-actions .btn-lg {
    padding: 12px 20px;
    font-size: 0.86rem;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .bonus-card .bonus-body { max-width: 100%; }
  .bonus-card .bonus-art { width: 130px; opacity: 0.5; }
  .cta-banner { flex-direction: column; text-align: center; padding: 34px 24px; }
}

@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .win-row { grid-template-columns: 34px 1fr auto; }
  .section { padding: 52px 0; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 54;
}

.nav-overlay.open {
  display: block;
}
