/* ============================================
   CAZIMBO CASINO — COMPLETE STYLESHEET
   Brand: Cazimbo | Market: Germany | Lang: DE
   ============================================ */

/* --- 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;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 32px rgba(0,0,0,0.18);
  --radius-card:       14px;
  --radius-pill:       50px;
  --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;
  overflow-x: hidden;
}

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

a:hover {
  color: #0099cc;
}

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

ul {
  list-style: none;
}

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

.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: var(--shadow-sm);
  border-bottom: 2px solid rgba(0,191,255,0.15);
}

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

/* 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 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: var(--brand-btn-radius);
  transition: background var(--transition), color var(--transition);
}

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

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

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

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0099cc 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,191,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,191,255,0.5);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #38c453 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(76,217,100,0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,217,100,0.5);
  color: #fff;
}

.btn-hero {
  display: inline-block;
  padding: 18px 48px;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, var(--brand-accent) 0%, #33b84a 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(76,217,100,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

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

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, var(--brand-primary) 0%, #007acc 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,255,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  padding: 10px 26px;
  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;
  display: inline-block;
}

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

/* ============================================
   FLOATING CTA (ALWAYS VISIBLE)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #33b84a 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--brand-head-font);
  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;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.floating-cta::before {
  content: '🎰';
  font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  margin-top: 68px;
  background: linear-gradient(135deg, #00BFFF 0%, #0077cc 40%, #005fa3 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 4px solid var(--brand-accent);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76,217,100,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: #fff;
}

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

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.hero-content h1 span {
  color: var(--brand-accent);
}

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

.hero-bonus-box {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-bonus-box .bonus-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-accent);
  margin-bottom: 6px;
  font-family: var(--brand-head-font);
}

.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

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

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.hero-trust-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-family: var(--brand-head-font);
}

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

.hero-card-mockup {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 360px;
}

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

.game-thumb {
  border-radius: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.game-thumb:nth-child(1) { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
.game-thumb:nth-child(2) { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.game-thumb:nth-child(3) { background: linear-gradient(135deg, #fd9644, #e67e22); }
.game-thumb:nth-child(4) { background: linear-gradient(135deg, #26de81, #20bf6b); }
.game-thumb:nth-child(5) { background: linear-gradient(135deg, #45aaf2, #2980b9); }
.game-thumb:nth-child(6) { background: linear-gradient(135deg, #fd79a8, #e84393); }

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.hero-stat {
  padding: 10px;
}

.hero-stat .stat-num {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  display: block;
}

.hero-stat .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 2px;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
main {
  padding-top: 0;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 64px 0;
}

section:nth-child(even) {
  background: #fff;
}

section:nth-child(odd) {
  background: var(--brand-bg);
}

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

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), #0099cc);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--brand-text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header h2 span {
  color: var(--brand-primary);
}

.section-header p {
  font-size: 15px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BONUS SECTION (Two-column asymmetric)
   ============================================ */
.bonus-section {
  background: linear-gradient(160deg, #f0fbff 0%, #e8f8ff 100%);
  border-top: 3px solid rgba(0,191,255,0.2);
}

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

.bonus-main h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.bonus-highlight-card {
  background: #fff;
  border: 2px solid rgba(0,191,255,0.25);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.bonus-highlight-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-bg);
}

.bonus-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.bonus-detail-item .label {
  color: #888;
  font-weight: 600;
}

.bonus-detail-item .value {
  font-weight: 700;
  color: var(--brand-text);
  font-family: var(--brand-head-font);
}

.bonus-sidebar-card {
  background: linear-gradient(160deg, var(--brand-primary) 0%, #0077cc 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,191,255,0.35);
  position: sticky;
  top: 90px;
}

.bonus-sidebar-card .welcome-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  font-family: var(--brand-head-font);
}

.bonus-sidebar-card .bonus-big {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-sidebar-card .bonus-currency {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.bonus-sidebar-card .bonus-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bonus-feature-line {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.bonus-feature-line .check {
  color: var(--brand-accent);
  font-size: 15px;
}

/* ============================================
   GAMES SECTION (3-column grid)
   ============================================ */
.games-section {
  background: var(--brand-bg);
}

.games-filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  background: #fff;
  border: 2px solid #e0e0e0;
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

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

.game-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-card-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.game-card-thumb .game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.game-card-body {
  padding: 16px;
}

.game-card-body h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 4px;
}

.game-provider {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.game-rtp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(76,217,100,0.12);
  color: #2ea84a;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
}

/* ============================================
   PAYMENTS SECTION (4-column full-width)
   ============================================ */
.payments-section {
  background: #fff;
  border-top: 1px solid #eee;
}

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

.payments-intro h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--brand-text);
  margin-bottom: 16px;
}

.payments-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

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

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

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

.payment-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.payment-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.payment-card .payment-time {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.payment-card p {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}

/* ============================================
   SECURITY & LICENSING — Full-width single col
   ============================================ */
.security-section {
  background: linear-gradient(160deg, #001a33 0%, #003366 100%);
  color: #fff;
}

.security-section .section-header h2 {
  color: #fff;
}

.security-section .section-header p {
  color: rgba(255,255,255,0.75);
}

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

.security-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: background var(--transition);
}

.security-feature:hover {
  background: rgba(255,255,255,0.12);
}

.security-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.security-feature h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.security-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ============================================
   WHY CAZIMBO — Asymmetric 1/3 + 2/3
   ============================================ */
.why-section {
  background: var(--brand-bg);
}

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

.why-sidebar h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-sidebar p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
}

.why-stat-box {
  background: linear-gradient(135deg, var(--brand-primary), #0077cc);
  border-radius: var(--radius-card);
  padding: 24px;
  color: #fff;
  text-align: center;
}

.why-stat-box .big-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat-box .stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

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

.why-feature-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: var(--radius-card);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-feature-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.why-feature-card .feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

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

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

/* ============================================
   SUPPORT SECTION — Two equal columns
   ============================================ */
.support-section {
  background: #fff;
}

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

.support-info h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--brand-text);
  margin-bottom: 16px;
}

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

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

.support-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
  transition: border-color var(--transition);
}

.support-channel:hover {
  border-color: var(--brand-primary);
}

.channel-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-primary), #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-info h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 2px;
}

.channel-info p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.support-faq h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--brand-text);
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

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

.faq-question {
  padding: 16px 20px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--brand-primary);
  font-weight: 700;
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  background: #fff;
}

/* ============================================
   RESPONSIBLE GAMBLING SECTION
   ============================================ */
.responsible-section {
  background: linear-gradient(160deg, #fff8e1 0%, #fff3cd 100%);
  border-top: 3px solid #ffc107;
  border-bottom: 3px solid #ffc107;
}

.responsible-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.responsible-main {
  grid-column: span 2;
}

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

.responsible-main p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.responsible-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.resp-link {
  padding: 8px 18px;
  background: rgba(255,193,7,0.2);
  border: 1px solid rgba(255,193,7,0.5);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #856404;
  font-family: var(--brand-head-font);
  transition: background var(--transition);
}

.resp-link:hover {
  background: rgba(255,193,7,0.35);
  color: #856404;
}

.responsible-badge {
  background: #fff;
  border: 2px solid #ffc107;
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
}

.age-badge {
  width: 72px;
  height: 72px;
  background: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.responsible-badge h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.responsible-badge p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #00BFFF 0%, #0055aa 50%, #003388 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

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

.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

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

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

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

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

.footer-col h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,191,255,0.3);
}

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

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

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

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

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

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

.footer-logo-group span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-right: 4px;
}

.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color var(--transition);
}

.trust-badge:hover {
  border-color: var(--brand-primary);
}

.trust-badge.age-badge-footer {
  background: rgba(220,53,69,0.15);
  border-color: rgba(220,53,69,0.4);
  color: #ff6b6b;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pay-badge.visa { border-color: rgba(26,115,232,0.5); color: #4a90d9; }
.pay-badge.mc { border-color: rgba(255,95,0,0.5); color: #ff7a2f; }
.pay-badge.amex { border-color: rgba(0,120,200,0.5); color: #5bc0f8; }
.pay-badge.btc { border-color: rgba(247,147,26,0.5); color: #f7931a; }
.pay-badge.eth { border-color: rgba(98,126,234,0.5); color: #8a9eff; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  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: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

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

.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

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

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu-btn {
  display: none;
}

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

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

  #mainNav.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);
    z-index: 999;
    border-top: 2px solid rgba(0,191,255,0.2);
  }

  #mainNav.mobile-nav-active ul li a {
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page-wrapper {
  margin-top: 68px;
  padding: 64px 0;
  min-height: 60vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid #eee;
}

.legal-content h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--brand-bg);
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-text);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  margin-top: 20px;
  margin-bottom: 8px;
}

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

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

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

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), #0099cc);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  letter-spacing: 0.5px;
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  margin: 8px 0;
  border: none;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

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

  .hero-content p {
    max-width: 100%;
  }

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

  .hero-trust-icons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .bonus-sidebar-card {
    position: static;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .responsible-inner {
    grid-template-columns: 1fr;
  }

  .responsible-main {
    grid-column: span 1;
  }

  .payments-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }

  .hero-section {
    padding: 56px 0 48px;
  }

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

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

  .footer-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

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

  .legal-content {
    padding: 32px 24px;
  }

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

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

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

  .hero-bonus-box .bonus-amount {
    font-size: 36px;
  }

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

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

  .games-filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}