/* ============================================================
   Funrize Casino — Complete Site Stylesheet
   ============================================================ */

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

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --brand-primary:     #1a0a3e;
  --brand-secondary:   #6b2fa0;
  --brand-accent:      #ff00aa;
  --brand-bg:          #0d0828;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d0828;
  --brand-btn-bg:      #ff0098;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  25px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 900;
  --brand-body-size:   16px;
  --brand-card-bg:     #1a0a3e;
  --brand-card-border: #2d1060;
  --brand-glow:        rgba(255, 0, 170, 0.35);
  --transition-base:   0.25s ease;
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #ff44cc;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  color: var(--brand-text);
}

p {
  margin-bottom: 1rem;
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================
   Skip to Content (Accessibility)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--brand-btn-radius);
  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;
}

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

/* ============================================================
   Header & Navigation — Fixed Top Bar
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(107, 47, 160, 0.4);
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

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

.main-nav {
  position: relative;
}

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

.main-nav ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #fff;
  background: rgba(107, 47, 160, 0.4);
}

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

.btn-header {
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.btn-header--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-header--outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.btn-header--primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 0 18px var(--brand-glow);
}

.btn-header--primary:hover {
  background: #ff44cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--brand-glow);
  color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

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

/* ============================================================
   Floating CTA Button — Always Visible
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-btn-bg);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 0, 170, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

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

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

/* ============================================================
   Buttons — Global
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
}

.btn:focus {
  outline: 3px solid rgba(255, 0, 170, 0.6);
  outline-offset: 3px;
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: #fff;
  font-size: 17px;
  padding: 16px 44px;
  box-shadow: 0 0 30px var(--brand-glow), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-hero:hover {
  background: #ff44cc;
  transform: translateY(-3px);
  box-shadow: 0 0 45px var(--brand-glow), 0 8px 24px rgba(0,0,0,0.5);
  color: #fff;
}

.btn-cta {
  background: var(--brand-btn-bg);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-glow);
}

.btn-cta:hover {
  background: #ff44cc;
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--brand-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  background: rgba(255, 0, 170, 0.08);
}

.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: #8a3fc8;
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #0d0828 0%, #1a0a3e 40%, #2d1060 70%, #1a0a3e 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(107, 47, 160, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
}

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

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

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 0, 170, 0.25);
}

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

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--brand-head-font);
  font-weight: 600;
}

.hero-trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(107, 47, 160, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

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

.hero-promo-card {
  background: linear-gradient(145deg, rgba(107, 47, 160, 0.6), rgba(26, 10, 62, 0.8));
  border: 1px solid rgba(107, 47, 160, 0.5);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(107, 47, 160, 0.3);
}

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

.promo-amount {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  font-family: var(--brand-head-font);
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 0, 170, 0.5);
  line-height: 1;
  margin-bottom: 6px;
}

.promo-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--brand-head-font);
  font-weight: 600;
  margin-bottom: 20px;
}

.promo-subtitle {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--brand-head-font);
  color: var(--brand-accent);
  margin-bottom: 24px;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--brand-body-font);
}

.promo-feature .check {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* Floating coin decorations */
.coin {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe566, #f5a623);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.6);
  opacity: 0.7;
  animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 { width: 30px; height: 30px; top: 15%; left: 5%; animation-delay: 0s; }
.coin-2 { width: 20px; height: 20px; top: 60%; right: 8%; animation-delay: 1.2s; }
.coin-3 { width: 16px; height: 16px; top: 30%; right: 3%; animation-delay: 2.5s; }
.coin-4 { width: 24px; height: 24px; bottom: 20%; left: 8%; animation-delay: 0.8s; }

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(180deg); }
}

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

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

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
}

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

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin: 16px 0 32px;
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Section: Welcome / About — Two Column Asymmetric
   ============================================================ */
.welcome-section {
  background: linear-gradient(180deg, #0d0828 0%, #110533 100%);
}

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

.welcome-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.welcome-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.welcome-stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(145deg, #1a0a3e, #2d1060);
  border: 1px solid rgba(107, 47, 160, 0.4);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 47, 160, 0.4);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--brand-head-font);
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

/* ============================================================
   Section: Bonuses — Three-Column Card Grid
   ============================================================ */
.bonuses-section {
  background: #0d0828;
}

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

.bonus-card {
  background: linear-gradient(145deg, #1a0a3e, #22104a);
  border: 1px solid rgba(107, 47, 160, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(107, 47, 160, 0.45);
}

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

.bonus-card--featured {
  border-color: rgba(255, 0, 170, 0.5);
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.15);
}

.bonus-card--featured::before {
  opacity: 1;
}

.bonus-tag {
  display: inline-block;
  background: rgba(255, 0, 170, 0.15);
  border: 1px solid rgba(255, 0, 170, 0.35);
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--brand-head-font);
}

.bonus-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.bonus-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-accent);
  font-family: var(--brand-head-font);
  margin-bottom: 12px;
  line-height: 1;
}

.bonus-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

/* ============================================================
   Section: Game Library — Full-Width Grid
   ============================================================ */
.games-section {
  background: linear-gradient(180deg, #110533 0%, #0d0828 100%);
}

.games-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(107, 47, 160, 0.4);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

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

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(107, 47, 160, 0.5);
  border-color: var(--brand-secondary);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #2d1060, #1a0a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.game-thumb::after {
  content: 'PLAY';
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 170, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-card:hover .game-thumb::after {
  opacity: 1;
}

.game-info {
  padding: 10px 12px;
}

.game-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

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

/* ============================================================
   Section: Payments — Two-Column Side by Side
   ============================================================ */
.payments-section {
  background: #0d0828;
}

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

.payments-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}

.payments-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.payment-method {
  background: linear-gradient(145deg, #1a0a3e, #2d1060);
  border: 1px solid rgba(107, 47, 160, 0.35);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition-base);
}

.payment-method:hover {
  border-color: var(--brand-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 0, 170, 0.2);
}

.payment-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.payment-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--brand-head-font);
}

.payments-timing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(145deg, #1a0a3e, #22104a);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 12px;
}

.timing-method {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.timing-speed {
  font-size: 13px;
  color: var(--brand-accent);
  font-weight: 600;
  font-family: var(--brand-head-font);
}

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

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

.security-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(107, 47, 160, 0.3), rgba(26, 10, 62, 0.8));
  border: 1px solid rgba(107, 47, 160, 0.4);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
}

.security-big-icon {
  font-size: 72px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255, 0, 170, 0.4));
}

.security-icon-block h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.security-icon-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.security-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 20px;
}

.security-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(26, 10, 62, 0.6);
  border: 1px solid rgba(107, 47, 160, 0.25);
  border-radius: 12px;
}

.security-feature .feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-feature h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-feature p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   Section: Providers — Marquee Row (Full Width)
   ============================================================ */
.providers-section {
  background: #0d0828;
  padding: 60px 0;
  overflow: hidden;
}

.providers-track {
  display: flex;
  gap: 32px;
  animation: scrollProviders 30s linear infinite;
  width: max-content;
}

.providers-track:hover {
  animation-play-state: paused;
}

.provider-pill {
  background: linear-gradient(145deg, #1a0a3e, #2d1060);
  border: 1px solid rgba(107, 47, 160, 0.35);
  border-radius: 12px;
  padding: 14px 28px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.provider-pill:hover {
  border-color: var(--brand-accent);
  color: #fff;
}

@keyframes scrollProviders {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   Section: Support — Three Column Icons
   ============================================================ */
.support-section {
  background: linear-gradient(180deg, #0d0828 0%, #110533 100%);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.support-card {
  background: linear-gradient(145deg, #1a0a3e, #22104a);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(107, 47, 160, 0.4);
  border-color: var(--brand-secondary);
}

.support-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(255, 0, 170, 0.3));
}

.support-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

/* ============================================================
   Section: CTA Banner — Full Width
   ============================================================ */
.cta-banner-section {
  background: linear-gradient(135deg, #2d1060 0%, #1a0a3e 50%, #2d1060 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ============================================================
   Section: Responsible Gaming
   ============================================================ */
.responsible-section {
  background: #0d0828;
  padding: 60px 0;
  border-top: 1px solid rgba(107, 47, 160, 0.25);
}

.responsible-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.responsible-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.responsible-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

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

.responsible-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: all var(--transition-base);
}

.responsible-link:hover {
  color: #fff;
  border-color: var(--brand-accent);
}

.responsible-age-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a0a3e, #2d1060);
  border: 2px solid rgba(255, 0, 170, 0.4);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.age-number {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--brand-head-font);
  color: var(--brand-accent);
  line-height: 1;
}

.age-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--brand-head-font);
  font-weight: 700;
  margin-top: 6px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #060318;
  padding: 60px 0 0;
  border-top: 1px solid rgba(107, 47, 160, 0.3);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(107, 47, 160, 0.2);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
  color: #fff;
}

.footer-security-logos {
  padding: 32px 0;
  border-bottom: 1px solid rgba(107, 47, 160, 0.2);
}

.security-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.security-logo-badge {
  background: rgba(26, 10, 62, 0.8);
  border: 1px solid rgba(107, 47, 160, 0.3);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(107, 47, 160, 0.15);
  flex-wrap: wrap;
}

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

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-disclaimer {
  padding: 28px 0;
  text-align: center;
}

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

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(107, 47, 160, 0.15);
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-page-wrap {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page-wrap h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-last-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
  font-family: var(--brand-head-font);
  font-weight: 600;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: rgba(255, 255, 255, 0.95);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: rgba(255, 255, 255, 0.85);
}

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

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

.legal-content ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ============================================================
   Mid-Page CTA Section
   ============================================================ */
.mid-cta-section {
  background: linear-gradient(135deg, #1a0a3e, #2d1060, #1a0a3e);
  padding: 60px 0;
  text-align: center;
}

.mid-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.mid-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Gamblers Help Section
   ============================================================ */
.gamblers-help {
  background: rgba(26, 10, 62, 0.5);
  border: 1px solid rgba(107, 47, 160, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 20px;
}

.gamblers-help h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-family: var(--brand-head-font);
}

.gamblers-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gamblers-help-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: all var(--transition-base);
}

.gamblers-help-list a:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--brand-accent);
}

/* ============================================================
   Utility Classes
   ============================================================ */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.highlight-text {
  color: var(--brand-accent);
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Large desktops: 1440px */
@media (max-width: 1440px) {
  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

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

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

  .hero-inner {
    gap: 40px;
  }
}

/* Tablets: 1024px */
@media (max-width: 1024px) {
  .main-nav ul {
    display: none;
  }

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

  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100vw);
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(107, 47, 160, 0.4);
    z-index: 999;
    gap: 4px;
  }

  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
  }

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

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

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

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

  .hero-promo-card {
    max-width: 380px;
    margin: 0 auto;
  }

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

  .welcome-stats-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .welcome-stats-sidebar .stat-card {
    flex: 1;
    min-width: 140px;
  }

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

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

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

  .security-icon-block {
    padding: 32px;
  }

  .security-big-icon {
    font-size: 52px;
  }

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

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

  .responsible-age-badge {
    width: fit-content;
    margin: 0 auto;
  }

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

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

/* Tablets (768px) */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    min-height: 60vh;
    padding: 100px 0 60px;
  }

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

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

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

  .footer-legal-links {
    gap: 16px;
  }

  .security-logos-row {
    gap: 12px;
  }

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

  .header-cta-group {
    display: none;
  }

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

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

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

/* Small phones: 480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

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

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

  .btn-hero {
    padding: 14px 28px;
    font-size: 15px;
  }

  .promo-amount {
    font-size: 3rem;
  }

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

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

  .games-filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 11px;
  }

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

  .cta-btn-group .btn {
    text-align: center;
  }

  .gamblers-help-list {
    flex-direction: column;
    gap: 10px;
  }
}

/* 320px — Minimum */
@media (max-width: 375px) {
  .container {
    padding: 0 14px;
  }

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

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

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