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

:root {
  --brand-primary:     #1a2a3a;
  --brand-secondary:   #2a7b9b;
  --brand-accent:      #e8a020;
  --brand-bg:          #0d1a2a;
  --brand-text:        #c8d8e8;
  --brand-header-bg:   #0a1520;
  --brand-btn-bg:      #e8a020;
  --brand-btn-text:    #1a1a1a;
  --brand-btn-radius:  4px;
  --brand-head-font:   'Cinzel', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-border:      1px solid rgba(232,160,32,0.25);
  --brand-glow:        0 0 12px rgba(232,160,32,0.3);
  --brand-card-bg:     #132030;
  --brand-card-border: 1px solid rgba(42,123,155,0.3);
}

*,
*::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;
}

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

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #f5b840;
}

ul {
  list-style: none;
}

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

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--brand-accent);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(232,160,32,0.25);
}

.section-subtitle {
  font-size: 1rem;
  color: #8aa8c0;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  text-decoration: none;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,160,32,0.45);
}

.btn-hero {
  background: linear-gradient(135deg, #f5b840 0%, #e8a020 50%, #c87810 100%);
  color: var(--brand-btn-text);
  font-size: 1.1rem;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(232,160,32,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #ffc850 0%, #f5a820 50%, #d88820 100%);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.6);
}

.btn-cta {
  background: linear-gradient(135deg, #e8a020 0%, #c87810 100%);
  color: var(--brand-btn-text);
  padding: 13px 32px;
  box-shadow: 0 3px 16px rgba(232,160,32,0.35);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #f5b840 0%, #d89020 100%);
  color: #1a1a1a;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent);
  padding: 11px 26px;
}

.btn-secondary:hover {
  background: rgba(232,160,32,0.1);
  color: #f5b840;
}

/* ============================
   FLOATING CTA
============================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f5b840 0%, #e8a020 60%, #c87810 100%);
  color: #1a1a1a;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,160,32,0.5), 0 0 0 2px rgba(232,160,32,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.65), 0 0 0 3px rgba(232,160,32,0.3);
  color: #1a1a1a;
}

/* ============================
   HEADER & NAV
============================ */

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-accent);
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(232,160,32,0.4);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.main-nav ul li a {
  font-family: var(--brand-head-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-text);
  padding: 8px 14px;
  border-radius: var(--brand-btn-radius);
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}

.main-nav ul li a:hover {
  color: var(--brand-accent);
  background: rgba(232,160,32,0.08);
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--brand-accent);
  font-size: 1.4rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: var(--brand-btn-radius);
  line-height: 1;
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(135deg, #050d14 0%, #0a1a2e 40%, #0f2040 70%, #0d1a2a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(42,123,155,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(232,160,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--brand-bg));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--brand-accent);
  text-shadow: 0 0 20px rgba(232,160,32,0.5);
}

.hero-desc {
  font-size: 1.05rem;
  color: #a0bdd0;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-bonus-box {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.35);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: inline-block;
}

.hero-bonus-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8aa8c0;
  font-family: var(--brand-head-font);
  margin-bottom: 4px;
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-accent);
  text-shadow: 0 0 20px rgba(232,160,32,0.4);
  line-height: 1.1;
}

.hero-bonus-note {
  font-size: 0.8rem;
  color: #7090a8;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-card-main {
  background: linear-gradient(135deg, #132030 0%, #1a2f45 60%, #0f2035 100%);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(42,123,155,0.1);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stat {
  text-align: center;
  padding: 14px 8px;
  background: rgba(42,123,155,0.1);
  border: 1px solid rgba(42,123,155,0.2);
  border-radius: 6px;
}

.hero-stat-value {
  font-family: var(--brand-head-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-accent);
  display: block;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: #7090a8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.hero-game-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.game-thumb {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(42,123,155,0.2);
  background: linear-gradient(135deg, #0f2035, #1a2f45);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.game-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.game-thumb-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(232,160,32,0.4));
}

.game-thumb-name {
  font-size: 0.6rem;
  color: #7090a8;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================
   SECTIONS — GENERAL
============================ */

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

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.3), transparent);
  margin: 0;
}

/* ============================
   SECTION: FEATURES (3 columns)
============================ */

.features-section {
  background: var(--brand-primary);
  border-top: var(--brand-border);
  border-bottom: var(--brand-border);
}

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

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

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

.feature-card:hover {
  border-color: rgba(232,160,32,0.4);
  transform: translateY(-3px);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
}

.feature-card h3 {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 700;
  color: #e0eaf4;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.feature-card p {
  font-size: 0.88rem;
  color: #7a9ab2;
  line-height: 1.6;
}

/* ============================
   SECTION: BONUS (asymmetric 2/3 + 1/3)
============================ */

.bonus-section {
  background: var(--brand-bg);
}

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

.bonus-main {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

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

.bonus-headline {
  font-family: var(--brand-head-font);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.bonus-sub {
  font-size: 0.95rem;
  color: #8aa8c0;
  margin-bottom: 24px;
}

.bonus-terms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.bonus-term-item {
  background: rgba(42,123,155,0.08);
  border: 1px solid rgba(42,123,155,0.2);
  border-radius: 6px;
  padding: 12px 16px;
}

.bonus-term-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6080a0;
  margin-bottom: 3px;
}

.bonus-term-value {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  font-weight: 700;
  color: #e0eaf4;
}

.bonus-body {
  font-size: 0.9rem;
  color: #7a9ab2;
  line-height: 1.65;
  margin-bottom: 24px;
}

.bonus-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-sidebar-card {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  transition: border-color 0.3s;
}

.bonus-sidebar-card:hover {
  border-color: rgba(232,160,32,0.35);
}

.bonus-sidebar-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bonus-sidebar-title {
  font-family: var(--brand-head-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: #c8d8e8;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.bonus-sidebar-text {
  font-size: 0.8rem;
  color: #7090a8;
  line-height: 1.5;
}

/* ============================
   SECTION: GAMES (full-width + cards)
============================ */

.games-section {
  background: var(--brand-primary);
  border-top: var(--brand-border);
  border-bottom: var(--brand-border);
}

.games-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.game-cat-btn {
  background: rgba(42,123,155,0.1);
  border: 1px solid rgba(42,123,155,0.25);
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 8px 18px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-transform: uppercase;
}

.game-cat-btn.active,
.game-cat-btn:hover {
  background: rgba(232,160,32,0.12);
  border-color: rgba(232,160,32,0.4);
  color: var(--brand-accent);
}

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

.game-card {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.3s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.4);
}

.game-card-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0f2035, #1a3050);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(42,123,155,0.15) 0%, transparent 70%);
}

.game-card-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(232,160,32,0.3));
  position: relative;
  z-index: 1;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,30,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

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

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

.game-card-name {
  font-family: var(--brand-head-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: #d0e0f0;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 0.72rem;
  color: #6080a0;
}

.game-rtp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 3px;
  font-size: 0.65rem;
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: var(--brand-accent);
  padding: 2px 7px;
  letter-spacing: 0.05em;
}

.games-cta-row {
  text-align: center;
  padding-top: 8px;
}

/* ============================
   SECTION: SPORTS (two column)
============================ */

.sports-section {
  background: var(--brand-bg);
}

.sports-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sports-content .section-title {
  margin-bottom: 16px;
}

.sports-body {
  font-size: 0.92rem;
  color: #7a9ab2;
  line-height: 1.68;
  margin-bottom: 20px;
}

.sports-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.sports-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(42,123,155,0.08);
  border: 1px solid rgba(42,123,155,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #a8c8e0;
}

.sports-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sports-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sport-card {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.sport-card:hover {
  border-color: rgba(232,160,32,0.4);
  transform: translateY(-2px);
}

.sport-card-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.sport-card-name {
  font-family: var(--brand-head-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: #c8d8e8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sport-card-note {
  font-size: 0.72rem;
  color: #6080a0;
  margin-top: 4px;
}

/* ============================
   SECTION: PAYMENTS (full-width grid)
============================ */

.payments-section {
  background: var(--brand-primary);
  border-top: var(--brand-border);
  border-bottom: var(--brand-border);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.payment-card {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.payment-card:hover {
  border-color: rgba(232,160,32,0.35);
  transform: translateY(-2px);
}

.payment-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.payment-name {
  font-family: var(--brand-head-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c8d8e8;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.payment-speed {
  font-size: 0.7rem;
  color: #6080a0;
}

.payment-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.payment-info-block {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 22px 20px;
}

.payment-info-block h3 {
  font-family: var(--brand-head-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.payment-info-block p {
  font-size: 0.85rem;
  color: #7a9ab2;
  line-height: 1.6;
}

/* ============================
   SECTION: TRUST / SECURITY (3 cols)
============================ */

.trust-section {
  background: var(--brand-bg);
}

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

.trust-card {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

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

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #e0eaf4;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.trust-card p {
  font-size: 0.86rem;
  color: #7a9ab2;
  line-height: 1.62;
}

/* ============================
   SECTION: SUPPORT (asymmetric 1/3 + 2/3)
============================ */

.support-section {
  background: var(--brand-primary);
  border-top: var(--brand-border);
  border-bottom: var(--brand-border);
}

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

.support-sidebar {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 10px;
  padding: 28px;
}

.support-sidebar h3 {
  font-family: var(--brand-head-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-channel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-channel-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.support-channel-info strong {
  display: block;
  font-size: 0.85rem;
  color: #c8d8e8;
  font-weight: 600;
  margin-bottom: 2px;
}

.support-channel-info span {
  font-size: 0.78rem;
  color: #6080a0;
}

.support-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-faq-item {
  background: var(--brand-card-bg);
  border: var(--brand-card-border);
  border-radius: 8px;
  padding: 20px 22px;
  transition: border-color 0.3s;
}

.support-faq-item:hover {
  border-color: rgba(232,160,32,0.3);
}

.support-faq-q {
  font-family: var(--brand-head-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: #d0e4f4;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.support-faq-a {
  font-size: 0.85rem;
  color: #7a9ab2;
  line-height: 1.6;
}

/* ============================
   SECTION: CTA BANNER (full width)
============================ */

.cta-banner {
  background: linear-gradient(135deg, #0a1a2e 0%, #132030 50%, #0d1a2a 100%);
  border-top: var(--brand-border);
  border-bottom: var(--brand-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(232,160,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 70px 20px;
}

.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.cta-banner h2 span {
  color: var(--brand-accent);
}

.cta-banner p {
  font-size: 1rem;
  color: #8aa8c0;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-disclaimer {
  font-size: 0.73rem;
  color: #506070;
  margin-top: 16px;
}

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

.site-footer {
  background: var(--brand-header-bg);
  border-top: 1px solid rgba(232,160,32,0.2);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #6080a0;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.84rem;
  color: #6080a0;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand-accent);
}

.footer-logos {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #506070;
  font-weight: 600;
  transition: border-color 0.2s;
}

.footer-logo-badge:hover {
  border-color: rgba(232,160,32,0.2);
  color: #7090a8;
}

.footer-logo-badge .badge-icon {
  font-size: 1.1rem;
}

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

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

.footer-legal-links a {
  font-size: 0.78rem;
  color: #506070;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--brand-accent);
}

.footer-copyright {
  font-size: 0.78rem;
  color: #3a5060;
}

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: #3a5060;
  line-height: 1.6;
  text-align: center;
}

/* ============================
   LEGAL PAGES
============================ */

.legal-hero {
  padding: 120px 0 50px;
  background: var(--brand-primary);
  border-bottom: var(--brand-border);
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brand-accent);
  letter-spacing: 0.04em;
}

.legal-updated {
  font-size: 0.82rem;
  color: #6080a0;
  margin-top: 8px;
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-accent);
  margin: 36px 0 12px;
  letter-spacing: 0.04em;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #c0d4e8;
  margin: 22px 0 8px;
}

.legal-content p {
  font-size: 0.9rem;
  color: #7a9ab2;
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.legal-content ul li {
  font-size: 0.9rem;
  color: #7a9ab2;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ============================
   SKIP TO CONTENT
============================ */

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: var(--brand-accent);
  color: #1a1a1a;
  font-weight: 700;
  z-index: 99999;
  border-radius: var(--brand-btn-radius);
  text-decoration: none;
  overflow: visible;
}

/* ============================
   FOCUS STATES
============================ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

/* ============================
   RESPONSIVE — TABLET (992px)
============================ */

@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 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(232,160,32,0.2);
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--brand-btn-radius);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card-main {
    max-width: 100%;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .bonus-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sports-visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-info-row {
    grid-template-columns: 1fr;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================
   RESPONSIVE — MOBILE (768px)
============================ */

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-game-preview {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .bonus-terms-list {
    grid-template-columns: 1fr;
  }

  .bonus-sidebar {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-list {
    grid-template-columns: 1fr;
  }

  .sports-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .section {
    padding: 56px 0;
  }
}

/* ============================
   RESPONSIVE — SMALL (480px)
============================ */

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bonus-amount {
    font-size: 1.8rem;
  }

  .header-actions .btn {
    display: none;
  }
}