@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --brand-primary:     #1a1045;
  --brand-secondary:   #6b2fa0;
  --brand-accent:      #ff4d6a;
  --brand-bg:          #0f0a2e;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d0829;
  --brand-btn-bg:      #3cba54;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #1c1150;
  --brand-pill-bg:     #251560;
  --brand-border:      rgba(107,47,160,0.4);
  --brand-glow:        rgba(107,47,160,0.6);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background-color: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.skip-to-content {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

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

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-secondary);
  color: #fff;
}

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

.btn-header-cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--brand-btn-bg), #2ea046);
  color: var(--brand-btn-text);
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(60,186,84,0.4);
  white-space: nowrap;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60,186,84,0.55);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: var(--brand-secondary); }

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0829 0%, #1a1045 40%, #2d1570 70%, #0f0a2e 100%);
  padding-top: 68px;
}

.hero-bg-glow {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107,47,160,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-secondary), #9b4dca);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #ff4d6a, #ff8c69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-bonus-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-btn-bg);
  line-height: 1.1;
}

.hero-bonus-box .bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-bonus-box .bonus-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #3cba54, #2ea046);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 30px rgba(60,186,84,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(60,186,84,0.65);
  color: #fff;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

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

.hero-visual-card {
  background: linear-gradient(145deg, rgba(107,47,160,0.3), rgba(26,16,69,0.8));
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(107,47,160,0.2);
  width: 100%;
  max-width: 380px;
}

.visual-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.game-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-secondary), #3d1080);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--brand-border);
  transition: transform 0.2s;
}
.game-thumb:hover { transform: scale(1.05); }
.game-thumb.featured { grid-column: span 2; aspect-ratio: 2/1; font-size: 32px; }

.visual-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.visual-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.visual-stat .stat-num {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-btn-bg);
}

.visual-stat .stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent), #e0365a);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,77,106,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  border: 2px solid rgba(255,255,255,0.15);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,77,106,0.7);
  color: #fff;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,77,106,0.5); }
  50% { box-shadow: 0 4px 35px rgba(255,77,106,0.8); }
}

/* ─── SECTION COMMONS ─── */
.section { padding: 80px 0; }
.section-alt { background: rgba(26,16,69,0.4); }
.section-dark { background: rgba(13,8,41,0.6); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header h2 span {
  background: linear-gradient(90deg, #ff4d6a, #ff8c69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  background: rgba(107,47,160,0.3);
  border: 1px solid var(--brand-border);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* ─── BONUS STRIP ─── */
.bonus-strip {
  background: linear-gradient(90deg, #1a1045, #2d1570, #1a1045);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 24px 0;
}

.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-strip-text {
  font-family: var(--brand-head-font);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 800;
}

.bonus-strip-text span { color: var(--brand-btn-bg); }

.bonus-strip-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ─── FEATURES SECTION (Asymmetric 2/3 + 1/3) ─── */
.features-section { padding: 80px 0; }

.features-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.features-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,47,160,0.3);
  border-color: var(--brand-secondary);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.features-sidebar-card {
  background: linear-gradient(145deg, var(--brand-secondary), #3d1080);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(107,47,160,0.3);
  position: sticky;
  top: 88px;
}

.features-sidebar-card .sidebar-emoji { font-size: 48px; margin-bottom: 16px; }

.features-sidebar-card h3 {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.features-sidebar-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ─── GAMES SECTION (Full-width with 4-col grid) ─── */
.games-section { padding: 80px 0; }

.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.pill {
  display: inline-block;
  padding: 8px 20px;
  background: var(--brand-pill-bg);
  border: 1px solid var(--brand-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pill:hover,
.pill.active {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

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

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(107,47,160,0.4);
}

.game-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb.slot-bg { background: linear-gradient(135deg, #2d1570, #6b2fa0); }
.game-card-thumb.live-bg { background: linear-gradient(135deg, #0d4a2e, #1a8a50); }
.game-card-thumb.table-bg { background: linear-gradient(135deg, #1a3060, #2d5ab0); }
.game-card-thumb.jackpot-bg { background: linear-gradient(135deg, #6b1a00, #c73d00); }

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

.game-card-info .game-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-info .game-provider {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.game-card-info .game-rtp {
  font-size: 11px;
  color: var(--brand-btn-bg);
  margin-top: 4px;
  font-weight: 600;
}

/* ─── BONUSES SECTION (3-column) ─── */
.bonuses-section { padding: 80px 0; }

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
}

.bonus-card.featured {
  border-color: var(--brand-accent);
  box-shadow: 0 0 40px rgba(255,77,106,0.15);
}

.bonus-card.featured .featured-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(107,47,160,0.3);
}

.bonus-card .bonus-icon { font-size: 40px; margin-bottom: 16px; }

.bonus-card h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bonus-card .bonus-value {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--brand-btn-bg);
  margin: 10px 0;
}

.bonus-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-card .bonus-terms-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ─── PAYMENTS SECTION (Full-width single column + row) ─── */
.payments-section { padding: 80px 0; }

.payments-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.payments-text h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.payments-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 14px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.payment-method-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.payment-method-item:hover {
  border-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.payment-method-item .pm-icon { font-size: 24px; margin-bottom: 6px; }

.payment-method-item .pm-name {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.payment-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--brand-border);
}

.payment-stat {
  text-align: center;
}

.payment-stat .pstat-num {
  font-family: var(--brand-head-font);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--brand-btn-bg);
}

.payment-stat .pstat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ─── LIVE CASINO SECTION (Side-by-side asymmetric) ─── */
.live-section { padding: 80px 0; }

.live-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.live-content h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.live-content h2 span {
  background: linear-gradient(90deg, #ff4d6a, #ff8c69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 16px;
}

.live-feature-list {
  margin-top: 20px;
}

.live-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.live-feature-item:last-child { border-bottom: none; }

.live-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-btn-bg);
  flex-shrink: 0;
  margin-top: 6px;
}

.live-feature-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.live-games-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.live-game-card {
  background: linear-gradient(135deg, #0d4a2e, #1a8a50);
  border: 1px solid rgba(26,138,80,0.4);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.live-game-card.variant-2 { background: linear-gradient(135deg, #1a3060, #2d5ab0); border-color: rgba(45,90,176,0.4); }
.live-game-card.variant-3 { background: linear-gradient(135deg, #4a1a00, #8b3500); border-color: rgba(139,53,0,0.4); }

.live-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-accent);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.live-game-card .lg-icon { font-size: 36px; margin: 10px 0 12px; }

.live-game-card .lg-name {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.live-game-card .lg-players {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* ─── CONTENT ARTICLE SECTION (Single column, full-width prose) ─── */
.content-section { padding: 80px 0; }

.content-prose {
  max-width: 820px;
  margin: 0 auto;
}

.content-prose h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  margin: 40px 0 16px;
  line-height: 1.25;
}

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

.content-prose h3 {
  font-family: var(--brand-head-font);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  margin: 28px 0 12px;
}

.content-prose p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-prose a {
  color: #9b6dea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-prose a:hover { color: var(--brand-accent); }

/* ─── FAQ SECTION ─── */
.faq-section { padding: 80px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover { background: rgba(107,47,160,0.2); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ─── PROVIDERS SECTION (Full-width scrolling) ─── */
.providers-section { padding: 60px 0; }

.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.provider-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.provider-badge:hover {
  border-color: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1045, #2d1570, #1a1045);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,47,160,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .cta-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  position: relative;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #080620;
  border-top: 1px solid var(--brand-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-divider {
  border: none;
  border-top: 1px solid var(--brand-border);
  margin-bottom: 32px;
}

.footer-responsible {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.footer-responsible p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge .tb-icon { font-size: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand-accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding-top: 100px;
  min-height: 80vh;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}

.legal-content h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: rgba(255,255,255,0.9);
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ─── BUTTONS GENERAL ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-btn-bg), #2ea046);
  color: #fff;
  box-shadow: 0 4px 18px rgba(60,186,84,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(60,186,84,0.55);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-secondary), #4d1a80);
  color: #fff;
  box-shadow: 0 4px 18px rgba(107,47,160,0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,47,160,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-cta {
  display: inline-block;
  padding: 15px 36px;
  background: linear-gradient(135deg, #3cba54, #2ea046);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 28px rgba(60,186,84,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(60,186,84,0.6);
  color: #fff;
}

/* ─── MOBILE ─── */
@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    z-index: 999;
    border-bottom: 1px solid var(--brand-border);
  }
  .mobile-nav-active ul li a { padding: 12px 16px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-layout { grid-template-columns: 1fr; }
  .features-sidebar-card { position: static; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .payments-intro { grid-template-columns: 1fr; gap: 32px; }
  .payment-methods-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-stats-row { grid-template-columns: repeat(2, 1fr); }
  .live-layout { grid-template-columns: 1fr; }
  .live-games-preview { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid-main { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .section { padding: 50px 0; }
  .hero-section { min-height: auto; padding-bottom: 50px; }
  .hero-content h1 { font-size: 1.8rem; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-stats-row { grid-template-columns: 1fr 1fr; }
  .live-games-preview { grid-template-columns: 1fr 1fr; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-actions .btn-header-cta { display: none; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 320px) {
  .container { padding: 0 12px; }
  body { font-size: 13px; }
}