/* ============================================================
   CAZIMBO.BET — Main Stylesheet
   Brand: Clean modern gaming, sky-blue + white + green
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #00BFFF;
  --brand-secondary:   #FFFFFF;
  --brand-accent:      #4CD964;
  --brand-bg:          #F5F5F5;
  --brand-text:        #333333;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #4CD964;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  25px;
  --brand-head-font:   'Nunito', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --border-color:      #E0E0E0;
  --card-shadow:       0 2px 12px rgba(0,0,0,0.08);
  --transition:        0.2s ease;
}

/* --- Reset & Base --- */
*, *::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);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

ul {
  list-style: none;
}

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 10000;
  font-family: var(--brand-head-font);
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}

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

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--brand-header-bg);
  border-bottom: 2px solid var(--brand-primary);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,191,255,0.10);
}

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

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

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

/* Nav */
.main-nav {
  position: relative;
}

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

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

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

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 20px;
  color: var(--brand-primary);
  line-height: 1;
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-btn:hover {
  background: var(--brand-primary);
  color: #fff;
}

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

/* ============================================================
   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: 15px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, #4CD964 0%, #2ecc71 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(76,217,100,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,217,100,0.45);
  color: #fff;
}

.btn-hero {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, #4CD964 0%, #27ae60 100%);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 28px rgba(76,217,100,0.50);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(76,217,100,0.60);
  color: #fff;
}

.btn-hero:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.btn-cta {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
  color: #fff;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(0,191,255,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,191,255,0.50);
  color: #fff;
}

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

.btn-outline {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ============================================================
   FLOATING CTA BUTTON (Always visible, fixed)
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4CD964 0%, #27ae60 100%);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  animation: pulse-btn 2.5s infinite;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  color: #fff;
}

.floating-cta:focus {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(76,217,100,0.45); }
  50% { box-shadow: 0 6px 32px rgba(76,217,100,0.70); }
}

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

.hero-section {
  margin-top: 70px;
  background: linear-gradient(135deg, #0099cc 0%, #00BFFF 40%, #33d6ff 70%, #e0f7ff 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--brand-primary);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: rgba(76,217,100,0.12);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.40);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.hero-content h1 span {
  color: #b3f0ff;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.90);
  max-width: 480px;
}

.hero-bonus-box {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero-bonus-box .bonus-label {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
}

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

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

.hero-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

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

.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 380px;
}

.hero-game-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.80);
  transition: transform var(--transition);
}

.hero-game-card:first-child {
  grid-column: 1 / -1;
}

.hero-game-card:hover {
  transform: translateY(-4px);
}

.hero-game-card .card-img-placeholder {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.hero-game-card:nth-child(1) .card-img-placeholder { background: linear-gradient(135deg,#667eea,#764ba2); height: 120px; font-size: 44px; }
.hero-game-card:nth-child(2) .card-img-placeholder { background: linear-gradient(135deg,#f7971e,#ffd200); }
.hero-game-card:nth-child(3) .card-img-placeholder { background: linear-gradient(135deg,#11998e,#38ef7d); }

.hero-game-card .card-label {
  padding: 8px 12px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */

.section-tag {
  display: inline-block;
  background: rgba(0,191,255,0.10);
  color: var(--brand-primary);
  border: 1px solid rgba(0,191,255,0.30);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-intro {
  font-size: 15px;
  color: #555;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ============================================================
   SECTION 1: BONUS OVERVIEW — Full-width single column
   ============================================================ */

.bonus-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.bonus-full-card {
  background: linear-gradient(135deg, #f0fbff 0%, #e8f8e8 100%);
  border: 2px solid var(--brand-primary);
  border-radius: 20px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bonus-left .bonus-headline {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bonus-left .bonus-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bonus-terms-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bonus-terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.bonus-terms-list li .check-icon {
  width: 20px;
  height: 20px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

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

.bonus-stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.bonus-stat-card:hover {
  transform: translateY(-2px);
}

.bonus-stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-icon-blue { background: rgba(0,191,255,0.12); }
.stat-icon-green { background: rgba(76,217,100,0.12); }
.stat-icon-purple { background: rgba(147,90,220,0.12); }
.stat-icon-orange { background: rgba(255,165,0,0.12); }

.bonus-stat-card .stat-text .stat-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-text);
  line-height: 1.1;
}

.bonus-stat-card .stat-text .stat-label {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

/* ============================================================
   SECTION 2: GAME SELECTION — Two-Column Side by Side
   ============================================================ */

.games-section {
  background: var(--brand-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.games-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.games-text-col .section-intro {
  margin-bottom: 28px;
}

.game-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.game-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.game-category-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 2px 12px rgba(0,191,255,0.12);
}

.game-category-item .cat-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,191,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cat-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
}

.cat-sub {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
}

.cat-pill {
  background: rgba(0,191,255,0.10);
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,191,255,0.25);
}

.games-visual-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.game-thumb {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--border-color);
  transition: transform var(--transition), border-color var(--transition);
  background: #fff;
}

.game-thumb:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}

.game-thumb-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.gt-slots    { background: linear-gradient(135deg,#667eea,#764ba2); }
.gt-live     { background: linear-gradient(135deg,#f7971e,#ffd200); }
.gt-sports   { background: linear-gradient(135deg,#11998e,#38ef7d); }
.gt-jackpot  { background: linear-gradient(135deg,#eb3349,#f45c43); }
.gt-table    { background: linear-gradient(135deg,#2980b9,#6dd5fa); }
.gt-scratch  { background: linear-gradient(135deg,#8e44ad,#e040fb); }

.game-thumb .game-thumb-label {
  padding: 10px 12px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  background: #fff;
}

/* ============================================================
   SECTION 3: FEATURES — Three-Column Card Grid
   ============================================================ */

.features-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.features-header .section-intro {
  margin: 0 auto 0 auto;
}

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

.feature-card {
  background: var(--brand-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  border-color: var(--brand-primary);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0,191,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

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

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   SECTION 4: SPORTS BETTING — Asymmetric 2/3 + 1/3
   ============================================================ */

.sports-section {
  background: var(--brand-bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.sports-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.sports-main .section-intro {
  margin-bottom: 28px;
}

.sports-content-body {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

.sports-content-body p {
  margin-bottom: 18px;
}

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

.sports-sidebar {
  background: #fff;
  border: 2px solid var(--brand-primary);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 90px;
}

.sports-sidebar h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.sport-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

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

.sport-item .sport-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--brand-text);
}

.sport-item .sport-badge {
  background: rgba(0,191,255,0.10);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}

.sports-cta-box {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.sports-cta-box p {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ============================================================
   SECTION 5: PAYMENTS — Full-width single column
   ============================================================ */

.payments-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.payments-header .section-intro {
  margin: 0 auto;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.payment-card {
  background: var(--brand-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

.payment-card .pay-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

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

.payment-card .pay-time {
  font-size: 12px;
  color: #888;
}

.payment-card .pay-limit {
  font-size: 12px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 4px;
}

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

.payment-info-block {
  background: var(--brand-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: center;
}

.payment-info-block .info-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.payment-info-block .info-label {
  font-size: 13px;
  color: #666;
}

/* ============================================================
   SECTION 6: LICENSING & TRUST — Two Column Side by Side
   ============================================================ */

.trust-section {
  background: linear-gradient(135deg, #f0fbff 0%, #f0fff5 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text .section-intro {
  margin-bottom: 28px;
}

.trust-body {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

.trust-body p {
  margin-bottom: 16px;
}

.trust-body p:last-child {
  margin-bottom: 0;
}

.trust-badges-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}

.trust-badge-card:hover {
  transform: translateY(-3px);
}

.trust-badge-card .badge-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-badge-card .badge-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.trust-badge-card .badge-sub {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

/* ============================================================
   SECTION 7: FAQ — Full Width Single Column
   ============================================================ */

.faq-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

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

.faq-item:hover {
  border-color: var(--brand-primary);
}

.faq-question {
  padding: 18px 22px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,191,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-primary);
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--brand-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   SECTION 8: FINAL CTA — Full Width
   ============================================================ */

.final-cta-section {
  background: linear-gradient(135deg, #0099cc 0%, #00BFFF 50%, #33d6ff 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(76,217,100,0.10);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta-inner h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.final-cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-cta-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}

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

.site-footer {
  background: #1a1f2e;
  color: #aab2bd;
  padding: 60px 0 0;
  font-size: 13px;
}

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

.footer-brand .footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #8a9bb0;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  color: #8a9bb0;
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-legal-row {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-legal-row .legal-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.legal-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12px;
  color: #aab2bd;
  font-weight: 600;
  font-family: var(--brand-head-font);
  gap: 6px;
  min-height: 44px;
}

.legal-logo-badge .badge-emoji {
  font-size: 18px;
}

.legal-logo-badge.badge-18 {
  background: rgba(235,51,73,0.15);
  border-color: rgba(235,51,73,0.30);
  color: #ff6b7a;
  font-weight: 800;
  font-size: 16px;
}

.payment-logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: #ccc;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pay-badge.visa-badge { color: #1a73e8; }
.pay-badge.mc-badge { color: #eb001b; }
.pay-badge.amex-badge { color: #007bc1; }
.pay-badge.btc-badge { color: #f7931a; }
.pay-badge.eth-badge { color: #627eea; }
.pay-badge.ltc-badge { color: #bfbbbb; }
.pay-badge.skrill-badge { color: #7b2fe8; }

.footer-responsible {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-responsible p {
  font-size: 12px;
  color: #6a7585;
  line-height: 1.7;
  max-width: 900px;
}

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

.footer-bottom .copyright {
  font-size: 12px;
  color: #5a6474;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #5a6474;
  transition: color var(--transition);
}

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

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

.legal-page-wrapper {
  margin-top: 70px;
  padding: 60px 0 80px;
  background: #fff;
  min-height: calc(100vh - 70px);
}

.legal-page-header {
  background: linear-gradient(135deg, #0099cc 0%, #00BFFF 100%);
  padding: 56px 0;
  margin-bottom: 48px;
}

.legal-page-header h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 8px;
}

.legal-page-header .legal-last-updated {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-text);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-text);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.legal-content ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================================
   MAIN CONTENT OFFSET (after fixed header)
   ============================================================ */

main {
  display: block;
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

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

  .hero-visual {
    display: none;
  }

  .bonus-full-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }

  .games-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .sports-sidebar {
    position: static;
  }

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .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.1);
    border-top: 1px solid var(--border-color);
    z-index: 999;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
  }

  .header-inner {
    height: 60px;
  }

  .site-header {
    height: auto;
  }

  .hero-section {
    margin-top: 60px;
    min-height: 70vh;
  }

  .hero-inner {
    padding: 50px 0;
  }

  .hero-bonus-box {
    padding: 18px 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero {
    text-align: center;
    width: 100%;
  }

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

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

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

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

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

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

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

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

  .games-visual-col {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-card-stack {
    display: none;
  }

  .bonus-full-card {
    padding: 24px 20px;
  }
}

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

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

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

  .games-visual-col {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 14px;
  }

  .floating-cta {
    bottom: 14px;
    right: 14px;
    padding: 11px 18px;
    font-size: 13px;
  }
}

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .site-header,
  .floating-cta,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}