/* ===================================================================
   NOMAD CASINO KZ — Main Stylesheet v1
   Premium gold + navy + neon orange CTA
   =================================================================== */

/* --- Reset + base --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

pre, code {
  overflow-x: auto;
  word-wrap: break-word;
}

button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- CSS Variables --- */
:root {
  --c-navy: #0d1b3d;
  --c-navy-2: #15265a;
  --c-navy-3: #1d3072;
  --c-gold: #ffd700;
  --c-gold-2: #c9a227;
  --c-gold-soft: #f0d978;
  --c-crimson: #c41e3a;
  --c-orange: #ff6b00;
  --c-orange-glow: #ff8c1a;
  --c-cream: #f5ecd5;
  --c-white: #ffffff;
  --c-text: #1a1a1a;
  --c-text-muted: #6b6b6b;
  --c-bg-light: #faf7ef;
  --c-bg-soft: #f4ede0;
  --c-border: #e6dec5;

  --f-serif: 'Cinzel', 'Georgia', serif;
  --f-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 40px;
  --s-xxl: 64px;

  --container: 1200px;

  --shadow-sm: 0 2px 6px rgba(13,27,61,0.08);
  --shadow-md: 0 8px 24px rgba(13,27,61,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,61,0.18);
  --shadow-gold: 0 8px 28px rgba(201,162,39,0.25);
  --shadow-orange: 0 8px 28px rgba(255,107,0,0.35);
}

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-navy);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: var(--s-md); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); margin-bottom: var(--s-md); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: var(--s-sm); }
h4 { font-size: 1.15rem; margin-bottom: var(--s-sm); }

p { margin-bottom: var(--s-md); }
p:last-child { margin-bottom: 0; }

strong { color: var(--c-navy); font-weight: 700; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.section {
  padding: var(--s-xxl) 0;
}

.section-light { background: var(--c-bg-light); }
.section-cream { background: var(--c-cream); }
.section-navy {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  color: var(--c-white);
}
.section-navy h2, .section-navy h3 { color: var(--c-gold); }

.section-title {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--s-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--c-gold-2), var(--c-gold));
  border-radius: 2px;
}

.section-title p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: var(--s-md) auto 0;
}

.section-navy .section-title p { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: 14px 28px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-glow) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,107,0,0.5);
  filter: brightness(1.08);
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold-2) 0%, var(--c-gold) 100%);
  color: var(--c-navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-gold);
}

.btn-outline:hover {
  background: var(--c-gold);
  color: var(--c-navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}

.btn-outline-dark:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block { width: 100%; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-navy);
  border-bottom: 2px solid var(--c-gold-2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.logo::before {
  content: '◆';
  color: var(--c-orange);
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  transition: all 0.2s;
}

.nav-menu a:hover {
  color: var(--c-gold);
  background: rgba(255,215,0,0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
}

.header-cta .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--c-gold-2);
  border-radius: var(--r-sm);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gold);
  transition: all 0.25s;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: var(--s-xxl) 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,107,0,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,215,0,0.12) 0%, transparent 40%),
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-2) 60%, var(--c-navy-3) 100%);
  color: var(--c-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(255,215,0,0.025) 60px 62px),
    repeating-linear-gradient(-45deg, transparent 0 60px, rgba(255,215,0,0.025) 60px 62px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}

.hero-content h1 {
  color: var(--c-white);
  margin-bottom: var(--s-md);
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-bottom: var(--s-lg);
}

.hero-meta {
  display: flex;
  gap: var(--s-lg);
  flex-wrap: wrap;
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255,215,0,0.2);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta .num {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-gold);
  font-weight: 700;
}

.hero-meta .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bonus card */
.bonus-card {
  position: relative;
  background: linear-gradient(135deg, #1a2d6e 0%, #0d1b3d 100%);
  border: 3px solid var(--c-gold);
  border-radius: var(--r-xl);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,215,0,0.3);
}

.bonus-card::before {
  content: '★';
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-navy);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bonus-card .badge-top {
  display: inline-block;
  background: var(--c-crimson);
  color: var(--c-white);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
}

.bonus-card .big-pct {
  font-family: var(--f-serif);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin: var(--s-sm) 0;
  text-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.bonus-card .sub-line {
  font-size: 1.2rem;
  color: var(--c-white);
  margin-bottom: var(--s-md);
}

.bonus-card .sub-line span { color: var(--c-gold); font-weight: 700; }

.promo-plate {
  margin: var(--s-md) auto;
  max-width: 280px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed var(--c-gold);
  border-radius: var(--r-md);
  padding: 14px var(--s-md);
}

.promo-plate .pp-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.promo-plate .pp-code {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.bonus-card .maxsum {
  margin-top: var(--s-md);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.bonus-card .maxsum strong { color: var(--c-white); }

/* --- Trust bar --- */
.trust-bar {
  background: var(--c-cream);
  padding: var(--s-lg) 0;
  border-bottom: 1px solid var(--c-border);
}

.trust-bar .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-item .ico {
  font-size: 1.6rem;
  color: var(--c-gold-2);
  margin-bottom: 4px;
}

.trust-item .ti-val {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-navy);
}

.trust-item .ti-lbl {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

/* --- Cards (Why us) --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.feat-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold-2), var(--c-gold), var(--c-gold-2));
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(255,107,0,0.18), 0 4px 12px rgba(13,27,61,0.08);
  border-color: var(--c-orange-glow);
}

.feat-card .ico-circle {
  width: 72px; height: 72px;
  margin: 0 auto var(--s-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-gold-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--c-navy);
  box-shadow: var(--shadow-gold);
}

.feat-card h3 {
  color: var(--c-navy);
  margin-bottom: var(--s-sm);
}

.feat-card p {
  color: var(--c-text-muted);
  font-size: 0.96rem;
}

/* --- Games grid --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.game-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-lg);
  color: var(--c-white);
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
}

.game-card > * { position: relative; z-index: 2; }

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255,107,0,0.3);
}

.game-card .gc-emblem {
  position: absolute;
  top: var(--s-md); right: var(--s-md);
  z-index: 2;
  font-size: 2.4rem;
  opacity: 0.9;
}

.game-card .gc-rtp {
  position: absolute;
  top: var(--s-md); left: var(--s-md);
  z-index: 2;
  background: rgba(0,0,0,0.5);
  color: var(--c-gold);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.game-card h3 {
  color: var(--c-white);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.game-card .gc-prov {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: var(--s-sm);
}

.game-card .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
  align-self: flex-start;
}

/* Game backgrounds (gentle gradients) */
.gc-olympus { background: linear-gradient(135deg, #ff6b00 0%, #c41e3a 60%, #6b0e1f 100%); }
.gc-aviator { background: linear-gradient(135deg, #c41e3a 0%, #8b0e22 60%, #2a0408 100%); }
.gc-sweet   { background: linear-gradient(135deg, #ff5b8e 0%, #a13d99 60%, #4f1d6b 100%); }
.gc-book    { background: linear-gradient(135deg, #c9a227 0%, #7a5018 60%, #3a2608 100%); }
.gc-star    { background: linear-gradient(135deg, #6a3aa1 0%, #2a8aa3 60%, #1a3a5e 100%); }
.gc-plinko  { background: linear-gradient(135deg, #2a8aa3 0%, #c9a227 50%, #c41e3a 100%); }

/* --- Payments --- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-md);
  margin-bottom: var(--s-lg);
}

.pay-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-md);
  text-align: center;
  transition: all 0.2s;
}

.pay-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}

.pay-item .pi-ico {
  font-size: 2rem;
  margin-bottom: 6px;
}

.pay-item .pi-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-navy);
}

.pay-item .pi-time {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.pay-note {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.pay-note strong { color: var(--c-navy); }

/* --- Bonus program (navy section) --- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.bonus-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  text-align: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.bonus-tile:hover {
  transform: translateY(-4px);
  background: rgba(255,215,0,0.08);
  border-color: var(--c-gold);
  box-shadow: 0 12px 32px rgba(255,107,0,0.2);
}

.bonus-tile .bt-num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--s-sm);
}

.bonus-tile .bt-title {
  color: var(--c-white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bonus-tile .bt-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.bonus-cta-wrap {
  text-align: center;
}

/* --- FAQ accordion --- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-md);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item[open] {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: var(--s-md) var(--s-lg);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-navy);
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--f-serif);
  font-size: 1.8rem;
  color: var(--c-orange);
  font-weight: 400;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--c-gold-2);
}

.faq-item .faq-body {
  padding: 0 var(--s-lg) var(--s-md);
  color: var(--c-text);
  line-height: 1.7;
}

/* --- Article content (длинный текст главной) --- */
.article-content {
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-content h2 {
  margin-top: var(--s-xl);
  margin-bottom: var(--s-md);
}

.article-content h3 {
  margin-top: var(--s-lg);
  color: var(--c-gold-2);
}

.article-content p { margin-bottom: var(--s-md); }
.article-content ul, .article-content ol {
  margin: var(--s-md) 0 var(--s-md) var(--s-lg);
  padding-left: var(--s-md);
}

.article-content ul li { list-style: disc; margin-bottom: 6px; }
.article-content ol li { list-style: decimal; margin-bottom: 6px; }

.article-content a {
  color: var(--c-orange);
  border-bottom: 1px dotted var(--c-orange);
  font-weight: 600;
  transition: color 0.2s;
}

.article-content a:hover { color: var(--c-crimson); border-color: var(--c-crimson); }

.article-content blockquote {
  background: var(--c-cream);
  border-left: 4px solid var(--c-gold);
  padding: var(--s-md) var(--s-lg);
  margin: var(--s-lg) 0;
  border-radius: var(--r-sm);
  font-style: italic;
  color: var(--c-text);
}

.callout {
  background: linear-gradient(135deg, #fff8e1 0%, var(--c-cream) 100%);
  border: 1px solid var(--c-gold);
  border-radius: var(--r-md);
  padding: var(--s-lg);
  margin: var(--s-lg) 0;
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
}

.callout .ico { font-size: 2rem; flex-shrink: 0; }
.callout p { margin-bottom: var(--s-sm); }
.callout p:last-child { margin-bottom: 0; }

/* Table (для данных) */
.tbl-wrap { overflow-x: auto; margin: var(--s-md) 0; }

.tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tbl thead {
  background: var(--c-navy);
  color: var(--c-gold);
}

.tbl th, .tbl td {
  padding: 12px var(--s-md);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.tbl th {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.tbl tbody tr:hover { background: var(--c-bg-soft); }
.tbl tbody tr:last-child td { border-bottom: 0; }

/* --- Footer --- */
.site-footer {
  background: #08122a;
  color: rgba(255,255,255,0.7);
  padding: var(--s-xxl) 0 var(--s-lg);
  border-top: 3px solid var(--c-gold-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-xl);
}

.footer-col h4 {
  color: var(--c-gold);
  font-family: var(--f-serif);
  font-size: 1.05rem;
  margin-bottom: var(--s-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.94rem;
  transition: color 0.2s;
}

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

.footer-col .logo { margin-bottom: var(--s-md); }

.footer-col .f-desc {
  font-size: 0.92rem;
  margin-bottom: var(--s-md);
  line-height: 1.6;
}

.f-license {
  display: inline-block;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--c-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-lg);
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom .help {
  color: var(--c-gold);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-lg); }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-navy);
    border-top: 1px solid rgba(255,215,0,0.2);
    border-bottom: 2px solid var(--c-gold-2);
    padding: var(--s-sm) 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
  }
  .nav-menu.active {
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-menu a {
    display: block;
    padding: 14px var(--s-md);
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .site-header .container { position: relative; }
  .header-cta .btn { padding: 9px 14px; font-size: 0.8rem; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }
  .hero { padding: var(--s-xl) 0; }

  .grid-3 { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
  .trust-bar .grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: var(--s-xl) 0; }
}

@media (max-width: 768px) {
  table { display: block; overflow-x: auto; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .games-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-lg); }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .bonus-card { padding: var(--s-lg) var(--s-md); }
  .promo-plate .pp-code { font-size: 1.4rem; }

  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
}

@media (max-width: 375px) {
  :root { --s-md: 12px; --s-lg: 18px; --s-xl: 28px; --s-xxl: 40px; }
  body { font-size: 15px; }
  .container { padding: 0 12px; }
  .logo { font-size: 1.3rem; }
  .header-cta .btn { padding: 8px 10px; font-size: 0.72rem; letter-spacing: 0.02em; }
  .bonus-card .big-pct { font-size: 3rem; }
  .hero-meta { gap: var(--s-md); }
}

/* --- Animations --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-orange); }
  50% { box-shadow: 0 12px 36px rgba(255,107,0,0.55); }
}

.pulse { animation: pulse-glow 2.4s ease-in-out infinite; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fade-in-up 0.6s ease forwards; }

/* Print */
@media print {
  .site-header, .site-footer, .hero-buttons, .btn { display: none; }
  body { color: #000; }
}

/* ========== INNER PAGES: Breadcrumbs ========== */
.breadcrumbs {
  background: var(--c-bg-light);
  padding: var(--s-md) 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs .container { display: block; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs li { color: var(--c-text-muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: var(--c-text-muted); }
.breadcrumbs a { color: var(--c-navy); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { color: var(--c-orange); text-decoration: underline; }
.breadcrumbs li[aria-current="page"] { color: var(--c-text); font-weight: 600; }

/* ========== INNER PAGES: Author byline & disclaimers ========== */
.author-info {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  align-items: center;
  padding: var(--s-md) var(--s-lg);
  margin: 0 0 var(--s-xl);
  background: var(--c-bg-soft);
  border-left: 4px solid var(--c-orange);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--c-text-muted);
}
.author-info strong { color: var(--c-navy); }

.age-disclaimer {
  margin: var(--s-xl) 0 var(--s-lg);
  padding: var(--s-lg);
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 2px solid var(--c-orange);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--c-text);
  text-align: center;
  font-weight: 500;
}

.affiliate-note {
  background: var(--c-bg-light);
  padding: var(--s-sm) var(--s-md);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-align: center;
  margin: var(--s-lg) 0;
  border: 1px dashed var(--c-border);
}

.responsible-gaming-block {
  margin: var(--s-xl) 0 var(--s-lg);
  padding: var(--s-lg);
  background: var(--c-bg-light);
  border-left: 4px solid var(--c-crimson);
  border-radius: var(--r-md);
  font-size: 0.92rem;
}
.responsible-gaming-block p { margin: 0; }

/* ========== INNER PAGES: Gutenberg / WP blocks ========== */
.inner-content {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--s-xl) 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.inner-content h1.wp-block-heading {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 var(--s-lg);
  color: var(--c-navy);
  line-height: 1.2;
}
.inner-content h2.wp-block-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: var(--s-xl) 0 var(--s-md);
  color: var(--c-navy);
  border-bottom: 2px solid var(--c-orange);
  padding-bottom: var(--s-sm);
  display: inline-block;
}
.inner-content h3.wp-block-heading {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: var(--s-lg) 0 var(--s-sm);
  color: var(--c-navy-2);
}
.inner-content p.wp-block-paragraph {
  margin: 0 0 var(--s-md);
  color: var(--c-text);
}
.inner-content a { color: var(--c-orange); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--c-orange); }
.inner-content a:hover { color: var(--c-navy); border-bottom-color: var(--c-navy); }

.wp-block-list {
  margin: var(--s-md) 0 var(--s-md) var(--s-md);
  padding-left: var(--s-md);
}
.wp-block-list li {
  margin-bottom: var(--s-sm);
  line-height: 1.65;
}

.wp-block-table {
  margin: var(--s-lg) 0;
  overflow-x: auto;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 27, 61, 0.06);
  font-size: 0.95rem;
}
.wp-block-table thead {
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-2));
  color: var(--c-white);
}
.wp-block-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.wp-block-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.wp-block-table tbody tr:nth-child(even) { background: var(--c-bg-light); }
.wp-block-table tbody tr:hover { background: var(--c-bg-soft); }

.wp-block-buttons {
  margin: var(--s-lg) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  justify-content: center;
}
.wp-block-button__link {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-orange), var(--c-orange-glow));
  color: var(--c-white) !important;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1.02rem;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none !important;
}
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.5);
  color: var(--c-white) !important;
}

.content-img {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: var(--s-lg) auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 6px 20px rgba(13, 27, 61, 0.12);
}

@media (max-width: 700px) {
  .inner-content { padding: var(--s-lg) 0; font-size: 1rem; }
  .wp-block-table table { font-size: 0.85rem; }
  .wp-block-table th, .wp-block-table td { padding: 8px 10px; }
  .wp-block-button__link { padding: 12px 20px; font-size: 0.95rem; }
}
