/* ============================================================
   CASEA CASINO — Complete Stylesheet
   Brand: Dark Navy / Gold / Cyan
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #1a2744;
  --brand-secondary:   #c8a846;
  --brand-accent:      #4dd4f7;
  --brand-bg:          #0f1c33;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d1829;
  --brand-btn-bg:      #4dd4f7;
  --brand-btn-text:    #1a2744;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-gold:        #c8a846;
  --brand-gold-light:  #e6c96a;
  --brand-card-bg:     #162035;
  --brand-card-border: #1e2f4a;
  --transition:        0.25s ease;
}

/* --- Reset --- */
*, *::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 var(--transition);
}

a:hover {
  color: var(--brand-gold-light);
}

ul {
  list-style: none;
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 10px 20px;
  font-weight: 700;
  z-index: 99999;
  border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
  top: 0;
}

/* --- Container --- */
.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);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(77, 212, 247, 0.15);
  color: var(--brand-accent);
}

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

.btn-header {
  display: inline-block;
  padding: 9px 22px;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-header-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}

.btn-header-outline:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-1px);
}

.btn-header-primary {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-primary);
  border: none;
  box-shadow: 0 3px 12px rgba(200, 168, 70, 0.4);
}

.btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 70, 0.55);
  color: var(--brand-primary);
}

/* Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: rgba(77, 212, 247, 0.15);
}

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

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: linear-gradient(135deg, #0a1220 0%, #0f1c33 40%, #1a2744 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(77, 212, 247, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 168, 70, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 212, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-gold {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 70, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 70, 0.15);
  border: 1px solid rgba(200, 168, 70, 0.35);
  color: var(--brand-gold-light);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--brand-head-font);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--brand-text);
}

.hero-title .accent-gold {
  color: var(--brand-secondary);
  display: block;
}

.hero-title .accent-cyan {
  color: var(--brand-accent);
}

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

.hero-stats-row {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  font-family: var(--brand-head-font);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-primary);
  box-shadow: 0 4px 24px rgba(200, 168, 70, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 70, 0.6);
  color: var(--brand-primary);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  background: transparent;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

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

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-promo-card {
  background: linear-gradient(145deg, #1e3058 0%, #162035 100%);
  border: 1px solid rgba(77, 212, 247, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(77, 212, 247, 0.1);
  position: relative;
  overflow: hidden;
}

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

.promo-card-icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}

.promo-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-accent);
  font-weight: 600;
  font-family: var(--brand-head-font);
  margin-bottom: 8px;
}

.promo-card-value {
  font-family: var(--brand-head-font);
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.promo-card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-floating-tag {
  position: absolute;
  background: linear-gradient(135deg, #0d1829, #1a2744);
  border: 1px solid rgba(200, 168, 70, 0.35);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold-light);
  font-family: var(--brand-head-font);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-floating-tag.tag-1 {
  top: -16px;
  left: -30px;
}

.hero-floating-tag.tag-2 {
  bottom: -16px;
  right: -20px;
}

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

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 168, 70, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 70, 0.65);
  color: var(--brand-primary);
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-primary);
  box-shadow: 0 4px 18px rgba(200, 168, 70, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 70, 0.55);
  color: var(--brand-primary);
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #29b8e0 100%);
  color: var(--brand-primary);
  box-shadow: 0 4px 18px rgba(77, 212, 247, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(77, 212, 247, 0.5);
  color: var(--brand-primary);
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-secondary);
  border: 1.5px solid var(--brand-secondary);
}

.btn-outline-gold:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */

.section-header {
  margin-bottom: 40px;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: var(--brand-text);
}

.section-title .gold {
  color: var(--brand-secondary);
}

.section-title .cyan {
  color: var(--brand-accent);
}

.section-desc {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.divider-gold {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-gold-light));
  border-radius: 2px;
  margin-top: 14px;
}

.section-header.centered .divider-gold {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE SECTIONS — PADDING
   ============================================================ */

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

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

.section-darker {
  background: #0a1220;
}

.section-mid {
  background: var(--brand-primary);
}

/* ============================================================
   BONUS HIGHLIGHT — FULL WIDTH SPLIT
   ============================================================ */

.bonus-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 360px;
}

.bonus-split-visual {
  background: linear-gradient(135deg, #1a2744 0%, #0d1829 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.bonus-split-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 168, 70, 0.12) 0%, transparent 70%);
}

.bonus-big-display {
  text-align: center;
  position: relative;
  z-index: 2;
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  color: var(--brand-secondary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(200, 168, 70, 0.4);
}

.bonus-amount-label {
  font-family: var(--brand-head-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-text);
  margin-top: 8px;
}

.bonus-free-spins {
  margin-top: 16px;
  display: inline-block;
  background: rgba(77, 212, 247, 0.15);
  border: 1px solid rgba(77, 212, 247, 0.3);
  color: var(--brand-accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
}

.bonus-split-content {
  background: var(--brand-card-bg);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-detail-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.bonus-detail-icon {
  color: var(--brand-secondary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* ============================================================
   3-COLUMN FEATURE CARDS
   ============================================================ */

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

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

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-title {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ============================================================
   ASYMMETRIC CONTENT — 2/3 + 1/3
   ============================================================ */

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

.asym-layout.reverse {
  grid-template-columns: 1fr 2fr;
}

.content-prose h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 14px;
}

.content-prose h3 {
  font-family: var(--brand-head-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 10px;
  margin-top: 24px;
}

.content-prose p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-prose p:last-child {
  margin-bottom: 0;
}

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

.sidebar-card-title {
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 168, 70, 0.2);
}

.sidebar-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.sidebar-stat-item:last-child {
  border-bottom: none;
}

.sidebar-stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.sidebar-stat-value {
  color: var(--brand-text);
  font-weight: 600;
  font-family: var(--brand-head-font);
}

.sidebar-stat-value.gold {
  color: var(--brand-secondary);
}

.sidebar-stat-value.cyan {
  color: var(--brand-accent);
}

/* ============================================================
   GAME CATEGORIES — HORIZONTAL TABS + GRID
   ============================================================ */

.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.category-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--brand-head-font);
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.category-tab:hover,
.category-tab.active {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background: rgba(77, 212, 247, 0.1);
}

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

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

.game-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e3058 0%, #0d1829 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.game-number {
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-secondary);
  z-index: 2;
}

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

.game-card-name {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 12px;
}

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

.game-play-btn {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-gold-light));
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
}

/* ============================================================
   PAYMENT METHODS — 4 COLUMN
   ============================================================ */

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

.payment-card {
  background: var(--brand-card-bg);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.payment-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.payment-name {
  font-family: var(--brand-head-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.payment-speed {
  font-size: 11px;
  color: var(--brand-accent);
}

/* ============================================================
   LIVE CASINO — SPLIT + CARD
   ============================================================ */

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

.live-visual {
  position: relative;
}

.live-main-card {
  background: linear-gradient(145deg, #1e3058, #0d1829);
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(77, 212, 247, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

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

.live-icon {
  font-size: 72px;
  margin-bottom: 20px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.3);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-badge-dot {
  width: 5px;
  height: 5px;
  background: #ff4444;
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-card-title {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.live-card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.live-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.live-mini {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.live-mini-icon {
  font-size: 22px;
  margin-bottom: 6px;
}

.live-mini-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ============================================================
   TRUST / SECURITY — FULL WIDTH
   ============================================================ */

.trust-bar {
  background: var(--brand-primary);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.trust-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.trust-label {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  line-height: 1.3;
}

.trust-sublabel {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

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

.faq-item {
  background: var(--brand-card-bg);
  border-radius: 12px;
  padding: 24px;
}

.faq-question {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER — FULL WIDTH
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1e3058 50%, var(--brand-primary) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(77, 212, 247, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(200, 168, 70, 0.07) 0%, transparent 60%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-family: var(--brand-head-font);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 14px;
}

.cta-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.providers-strip {
  padding: 36px 0;
  background: #0a1220;
}

.providers-label {
  text-align: center;
  font-family: var(--brand-head-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.providers-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.provider-pill {
  background: var(--brand-card-bg);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition), background var(--transition);
}

.provider-pill:hover {
  color: var(--brand-text);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIBLE GAMBLING NOTICE
   ============================================================ */

.rg-notice {
  background: #0a1220;
  padding: 24px 0;
  text-align: center;
}

.rg-notice p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.rg-notice a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.rg-notice a:hover {
  color: var(--brand-accent);
}

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

.site-footer {
  background: var(--brand-header-bg);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 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: 280px;
}

.footer-heading {
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 0 28px;
}

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

.footer-legal-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-badge {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.3;
}

.age-badge {
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.25);
  color: #ff8080;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--brand-head-font);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

.footer-responsible {
  padding: 20px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 8px;
}

.footer-responsible p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-responsible a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
}

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

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

.legal-page {
  padding: 100px 0 60px;
  min-height: 60vh;
}

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

.legal-title {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 8px;
}

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

.legal-body h2 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-body h3 {
  font-family: var(--brand-head-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

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

.legal-body a {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .asym-layout,
  .asym-layout.reverse {
    grid-template-columns: 1fr;
  }

  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title .accent-gold {
    display: inline;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .section-desc {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE MENU (≤ 992px)
   ============================================================ */

.mobile-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-nav.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);
    gap: 4px;
    z-index: 999;
  }

  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
  }

  .header-cta .btn-header-outline {
    display: none;
  }
}

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

@media (max-width: 768px) {
  .bonus-split {
    grid-template-columns: 1fr;
  }

  .bonus-split-content {
    padding: 40px 28px;
  }

  .live-split {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }

  .section-pad {
    padding: 56px 0;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content-wrap {
    padding: 40px 20px;
  }

  .hero-floating-tag {
    display: none;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }

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

  .cta-banner-group {
    flex-direction: column;
    align-items: center;
  }
}

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

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stats-row {
    gap: 20px;
  }

  .hero-promo-card {
    padding: 24px 20px;
  }

  .promo-card-value {
    font-size: 40px;
  }
}

/* ============================================================
   FOCUS STATES — ACCESSIBILITY
   ============================================================ */

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

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brand-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}