/* ============================================================
   7BitCasino.digital — Complete Stylesheet
   ============================================================ */

/* Google Fonts */
@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:     #1a1a2e;
  --brand-secondary:   #7b2FBF;
  --brand-accent:      #00d4ff;
  --brand-bg:          #0f0f23;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a0a1a;
  --brand-btn-bg:      #2a6ef0;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-card-bg:     #16213e;
  --brand-card-border: #1e2a4a;
  --brand-glow:        rgba(0, 212, 255, 0.15);
  --brand-purple-glow: rgba(123, 47, 191, 0.25);
  --transition:        0.25s 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);
  background-color: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #ffffff;
}

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

ul {
  list-style: none;
}

/* ============================================================
   Skip to Content (Accessibility)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--brand-accent);
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 10px;
}

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

/* ============================================================
   Sticky Header & Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.header-logo {
  flex-shrink: 0;
}

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

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

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  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(0, 212, 255, 0.1);
  color: var(--brand-accent);
}

/* ============================================================
   Mobile Menu Button
   ============================================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--brand-text);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(0, 212, 255, 0.1);
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #2a6ef0 0%, #7b2FBF 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(42, 110, 240, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 110, 240, 0.55);
  color: #ffffff;
}

.btn-accent {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #0a0a1a;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
  color: #0a0a1a;
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 17px;
  background: linear-gradient(135deg, #00d4ff 0%, #2a6ef0 100%);
  color: #ffffff;
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.6);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: 8px 22px;
  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), transform var(--transition);
}

.btn-outline:hover {
  background: var(--brand-accent);
  color: #0a0a1a;
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #7b2FBF 0%, #2a6ef0 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(123, 47, 191, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 47, 191, 0.55);
  color: #ffffff;
}

/* ============================================================
   Floating CTA (Fixed Play Now Button)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00d4ff 0%, #2a6ef0 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-head-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

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

.floating-cta:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  margin-top: 64px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d0d25 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

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

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

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.hero-trust-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-visual {
  position: relative;
}

.hero-promo-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-card {
  background: linear-gradient(135deg, var(--brand-card-bg) 0%, #1e1e3f 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.promo-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateX(4px);
}

.promo-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
}

.promo-card-text h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 3px;
}

.promo-card-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.promo-card-text span {
  color: var(--brand-accent);
  font-weight: 700;
}

/* ============================================================
   Section Base
   ============================================================ */
section {
  padding: 70px 0;
}

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

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

.section-label {
  display: inline-block;
  background: rgba(123, 47, 191, 0.2);
  border: 1px solid rgba(123, 47, 191, 0.4);
  color: #b47fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  line-height: 1.7;
}

.section-header.center p {
  margin: 0 auto;
}

/* ============================================================
   Bonus Section — Two Column Asymmetric
   ============================================================ */
.bonus-section {
  background: linear-gradient(180deg, #0f0f23 0%, #12122b 100%);
}

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

.bonus-main-card {
  background: linear-gradient(135deg, #16213e 0%, #1e1e3f 100%);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.bonus-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #7b2FBF);
}

.bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  background: linear-gradient(90deg, #00d4ff, #7b2FBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

.bonus-details {
  margin-bottom: 28px;
}

.bonus-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

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

.bonus-detail-row .label {
  color: rgba(255, 255, 255, 0.55);
}

.bonus-detail-row .value {
  color: #ffffff;
  font-weight: 600;
}

.bonus-detail-row .value.highlight {
  color: var(--brand-accent);
}

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

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

.bonus-side-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(123, 47, 191, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: border-color var(--transition);
}

.bonus-side-card:hover {
  border-color: rgba(123, 47, 191, 0.45);
}

.bonus-side-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.bonus-side-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 6px;
}

.bonus-side-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================================
   Games Section — Full Width + Card Grid
   ============================================================ */
.games-section {
  background: #0a0a1a;
}

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

.games-tab {
  padding: 9px 20px;
  border-radius: var(--brand-btn-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}

.games-tab.active,
.games-tab:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 191, 0.15) 100%);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--brand-accent);
}

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

.game-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.game-card-thumb::after {
  content: 'PLAY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(0, 212, 255, 0.9);
  color: #000;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.game-card:hover .game-card-thumb::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.game-card-info h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.games-rtp {
  display: inline-block;
  margin-left: auto;
  background: rgba(0, 212, 255, 0.1);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  float: right;
}

.games-view-all {
  text-align: center;
}

/* ============================================================
   Payments Section — Three Column Grid
   ============================================================ */
.payments-section {
  background: linear-gradient(180deg, #0f0f23 0%, #0a0a1a 100%);
}

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

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

.payment-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

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

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

.payment-speed {
  display: inline-block;
  margin-top: 14px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
}

.payment-methods-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background: var(--brand-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.payment-method-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

/* ============================================================
   Features Section — Asymmetric 1/3 + 2/3
   ============================================================ */
.features-section {
  background: #0a0a1a;
}

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

.features-intro h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.features-intro p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.feature-item {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  transition: border-color var(--transition);
}

.feature-item:hover {
  border-color: rgba(123, 47, 191, 0.35);
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.feature-item h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
}

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

/* ============================================================
   Security & Licensing — Full Width
   ============================================================ */
.security-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.security-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 40px;
  background: var(--brand-card-bg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 20px;
  flex-wrap: wrap;
}

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

.security-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.7;
}

.security-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
}

.security-badge .badge-icon {
  font-size: 24px;
}

.security-badge .badge-text {
  font-size: 12px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.security-badge .badge-sub {
  display: block;
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 400;
}

/* ============================================================
   Why Choose — Single Column Full Width
   ============================================================ */
.why-section {
  background: #0f0f23;
}

.why-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.why-inner h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: #ffffff;
  margin-bottom: 16px;
}

.why-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.why-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  background: linear-gradient(90deg, #00d4ff, #7b2FBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ============================================================
   Content/Info Section
   ============================================================ */
.info-section {
  background: #0a0a1a;
  padding: 60px 0;
}

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

.info-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 36px;
}

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

.info-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 28px;
}

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

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

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

/* ============================================================
   Mid Page CTA — Full Width Banner
   ============================================================ */
.mid-cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d30 100%);
  padding: 60px 0;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.mid-cta-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  color: #ffffff;
  margin-bottom: 10px;
}

.mid-cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Support Section
   ============================================================ */
.support-section {
  background: #0f0f23;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.support-card {
  background: var(--brand-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  transition: border-color var(--transition);
}

.support-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
}

.support-card .s-icon {
  font-size: 30px;
  margin-bottom: 16px;
}

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

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

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: #0a0a1a;
}

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

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

.faq-intro p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(0, 212, 255, 0.05);
}

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

.faq-toggle {
  font-size: 18px;
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

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

/* ============================================================
   Responsible Gaming Section
   ============================================================ */
.rg-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 50px 0;
}

.rg-inner {
  background: rgba(123, 47, 191, 0.08);
  border: 1px solid rgba(123, 47, 191, 0.2);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.rg-icon-col {
  text-align: center;
}

.rg-icon-col .rg-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
}

.rg-icon-col h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.rg-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  color: #ffffff;
  margin-bottom: 12px;
}

.rg-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.rg-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rg-link {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.rg-link:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--brand-accent);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #060613;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 0;
}

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

.footer-brand-col .footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

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

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

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* Gambling Info Banner */
.gambling-info-bar {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
}

.gambling-info-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 12px;
}

.gambling-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gambling-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.gambling-badge.age-badge {
  background: rgba(255, 50, 50, 0.12);
  border-color: rgba(255, 50, 50, 0.3);
  color: #ff6b6b;
  font-size: 14px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
}

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

.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

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

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

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

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-hero {
  margin-top: 64px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  color: #ffffff;
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.legal-body {
  background: #0f0f23;
  padding: 60px 0;
}

.legal-content {
  max-width: 860px;
  background: var(--brand-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 50px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 14px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  margin-top: 24px;
}

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

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

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

.legal-updated {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--brand-accent);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 30px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--brand-accent); }
.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; }

/* ============================================================
   Responsive — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .hero-visual {
    display: none;
  }

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

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

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

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

  .features-intro {
    text-align: center;
  }

  .features-intro p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .rg-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rg-links {
    justify-content: center;
  }

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

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

  .security-badges {
    justify-content: center;
  }

  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   Responsive — Mobile (max-width: 992px) — Nav
   ============================================================ */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .main-nav {
    position: relative;
  }

  .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: 100vw;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 999;
  }

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

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

/* ============================================================
   Responsive — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

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

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

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

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

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

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

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

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

  .legal-content {
    padding: 30px 20px;
  }

  .bonus-main-card {
    padding: 28px 24px;
  }
}

/* ============================================================
   Responsive — Small (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-section {
    padding: 60px 0 50px;
  }

  .security-badges {
    flex-direction: column;
  }
}