/* ============================================================
   FUNRIZE CASINO — COMPLETE STYLESHEET
   Brand: Dark purple-navy + neon pink + gold
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --brand-primary:     #1a0e4f;
  --brand-secondary:   #ff00ff;
  --brand-accent:      #ffcc00;
  --brand-bg:          #0d0a2e;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0d0a2e;
  --brand-btn-bg:      #ff1493;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  25px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   16px;
  --brand-card-bg:     #1e1450;
  --brand-card-border: rgba(255,0,255,0.15);
  --brand-glow-pink:   rgba(255,20,147,0.4);
  --brand-glow-gold:   rgba(255,204,0,0.3);
  --transition-std:    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);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-accent);
  color: #000;
  padding: 10px 20px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: var(--brand-header-bg);
  border-bottom: 1px solid rgba(255,0,255,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

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

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

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.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-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition-std), color var(--transition-std);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--brand-accent);
  background: rgba(255,204,0,0.08);
}

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

/* Mobile Burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255,0,255,0.5);
  color: var(--brand-text);
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition-std);
  align-items: center;
  justify-content: center;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-std), box-shadow var(--transition-std), background var(--transition-std);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff1493, #cc0070);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,20,147,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,20,147,0.6);
  color: #fff;
}

.btn-hero {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #0d0a2e;
  font-size: 18px;
  padding: 18px 48px;
  border-radius: var(--brand-btn-radius);
  box-shadow: 0 6px 30px rgba(255,204,0,0.45);
  font-weight: 800;
}

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

.btn-cta {
  background: linear-gradient(135deg, #ff1493, #9900cc);
  color: #fff;
  font-size: 16px;
  padding: 16px 40px;
  box-shadow: 0 4px 24px rgba(255,0,255,0.4);
}

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

.btn-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  padding: 10px 24px;
}

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

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

/* ============================================================
   FLOATING CTA (FIXED PLAY NOW)
   ============================================================ */

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff1493, #cc0070);
  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(255,20,147,0.5), 0 0 0 0 rgba(255,20,147,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlow 2.5s infinite;
}

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

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

@keyframes pulseGlow {
  0%   { box-shadow: 0 4px 20px rgba(255,20,147,0.5), 0 0 0 0 rgba(255,20,147,0.4); }
  50%  { box-shadow: 0 4px 20px rgba(255,20,147,0.5), 0 0 0 10px rgba(255,20,147,0); }
  100% { box-shadow: 0 4px 20px rgba(255,20,147,0.5), 0 0 0 0 rgba(255,20,147,0); }
}

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

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(135deg, #0d0a2e 0%, #1a0e4f 40%, #2a0a5e 70%, #0d0a2e 100%);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff00ff, transparent);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffcc00, transparent);
  bottom: -80px;
  left: 30%;
  opacity: 0.25;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff1493, transparent);
  top: 50%;
  left: -50px;
  opacity: 0.2;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,0,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .highlight-pink {
  color: var(--brand-secondary);
  text-shadow: 0 0 30px rgba(255,0,255,0.5);
}

.hero-title .highlight-gold {
  color: var(--brand-accent);
  text-shadow: 0 0 30px rgba(255,204,0,0.4);
}

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

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

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

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

/* Hero Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 440px;
}

.hero-game-card {
  background: var(--brand-card-bg);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--brand-card-border);
  transition: transform var(--transition-std), box-shadow var(--transition-std);
  cursor: pointer;
}

.hero-game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,0,255,0.3);
}

.hero-game-card.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,46,0.9) 0%, transparent 50%);
  z-index: 1;
}

.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 2;
}

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

.game-card-rtp {
  font-size: 11px;
  color: var(--brand-accent);
  font-weight: 600;
}

.game-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  background: linear-gradient(135deg, var(--brand-primary), #2d1b8e);
}

/* Floating coin elements */
.hero-floating-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 35% 35%, #ffe066, #ffaa00, #cc7700);
  border-radius: 50%;
  box-shadow: inset -3px -3px 6px rgba(0,0,0,0.3), 0 0 12px rgba(255,204,0,0.4);
  animation: floatCoin 4s ease-in-out infinite;
}

.coin::after {
  content: '$';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: rgba(0,0,0,0.4);
  font-size: 18px;
}

.coin-1 { top: 10%; right: 5%;   animation-delay: 0s;    width: 36px; height: 36px; }
.coin-2 { top: 30%; right: -2%;  animation-delay: 0.8s;  width: 28px; height: 28px; }
.coin-3 { bottom: 25%; right: 8%; animation-delay: 1.6s; width: 44px; height: 44px; }
.coin-4 { top: 55%; left: -3%;  animation-delay: 2.4s;  width: 32px; height: 32px; }

@keyframes floatCoin {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-16px) rotate(8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

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

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

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

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

.section-tag {
  display: inline-block;
  background: rgba(255,0,255,0.1);
  border: 1px solid rgba(255,0,255,0.3);
  color: var(--brand-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

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

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

.section-desc {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,255,0.2), rgba(255,204,0,0.2), transparent);
  margin: 0;
}

/* ============================================================
   WELCOME / INTRO SECTION (Full-width single col)
   ============================================================ */

.welcome-section {
  background: linear-gradient(180deg, #0d0a2e 0%, #130d3a 100%);
  padding: 80px 0;
}

.welcome-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.welcome-inner h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
  color: #fff;
}

.welcome-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 18px;
}

.welcome-inner p:last-of-type {
  margin-bottom: 36px;
}

/* ============================================================
   BONUS SECTION (Asymmetric 2/3 + 1/3)
   ============================================================ */

.bonus-section {
  background: linear-gradient(180deg, #130d3a 0%, #1a0e4f 100%);
  padding: 90px 0;
}

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

.bonus-main h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.bonus-main p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,0,255,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform var(--transition-std), border-color var(--transition-std), box-shadow var(--transition-std);
}

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

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

.bonus-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-accent);
  margin-bottom: 8px;
}

.bonus-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.bonus-card-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

/* Sidebar bonus panel */
.bonus-sidebar {
  position: sticky;
  top: 90px;
}

.bonus-panel {
  background: linear-gradient(135deg, #2d1b8e, #1a0e4f);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.bonus-panel-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.bonus-panel-amount {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(42px, 6vw, 64px);
  color: var(--brand-accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,204,0,0.4);
  margin-bottom: 8px;
}

.bonus-panel-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.5;
}

.bonus-panel-terms {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   GAMES SECTION (3-col card grid)
   ============================================================ */

.games-section {
  background: var(--brand-bg);
  padding: 90px 0;
}

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

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

.game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255,0,255,0.25);
}

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

.game-tile-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--brand-card-bg));
}

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

.game-tile-name {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.game-tile-provider {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.game-tile-rtp {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  background: rgba(255,204,0,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

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

.games-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition-std), border-color var(--transition-std), color var(--transition-std);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.games-tab:hover,
.games-tab.active {
  background: var(--brand-btn-bg);
  border-color: var(--brand-btn-bg);
  color: #fff;
}

/* ============================================================
   PAYMENTS SECTION (4-col)
   ============================================================ */

.payments-section {
  background: linear-gradient(180deg, #0d0a2e 0%, #100c36 100%);
  padding: 80px 0;
}

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

.payment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition-std), transform var(--transition-std);
}

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

.payment-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.payment-method {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}

.payment-time {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.payment-time strong {
  color: var(--brand-accent);
}

/* ============================================================
   HOW IT WORKS SECTION (single col + numbered steps)
   ============================================================ */

.howitworks-section {
  background: var(--brand-primary);
  padding: 90px 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,0,255,0.3), rgba(255,204,0,0.3));
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1493, #cc0070);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 6px 20px rgba(255,20,147,0.4);
}

.step-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ============================================================
   WHY FUNRIZE SECTION (2-col side-by-side)
   ============================================================ */

.why-section {
  background: linear-gradient(180deg, #100c36 0%, #0d0a2e 100%);
  padding: 90px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color var(--transition-std);
}

.why-feature:hover {
  border-color: rgba(255,204,0,0.2);
}

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

.why-feature-text strong {
  display: block;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.why-feature-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* Why visual panel */
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-box {
  background: linear-gradient(135deg, #1e1450, #2d1b8e);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255,0,255,0.15);
  transition: transform var(--transition-std);
}

.why-stat-box:hover {
  transform: translateY(-4px);
}

.why-stat-box.accent-gold {
  border-color: rgba(255,204,0,0.25);
  background: linear-gradient(135deg, #1e1450, #3d2600);
}

.why-stat-num {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-box.accent-gold .why-stat-num {
  color: #ffcc00;
}

.why-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================================
   PROVIDERS SECTION (single full-width)
   ============================================================ */

.providers-section {
  background: var(--brand-bg);
  padding: 70px 0;
}

.providers-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
}

.provider-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  transition: background var(--transition-std), color var(--transition-std), border-color var(--transition-std);
}

.provider-badge:hover {
  background: rgba(255,204,0,0.08);
  color: var(--brand-accent);
  border-color: rgba(255,204,0,0.25);
}

/* ============================================================
   RESPONSIBLE GAMING SECTION (2-col)
   ============================================================ */

.responsible-section {
  background: linear-gradient(180deg, #0d0a2e 0%, #0a0820 100%);
  padding: 80px 0;
}

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

.responsible-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 20px;
  color: #fff;
}

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

.rg-tools {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.rg-tool {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.rg-tool-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.rg-hotlines {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,204,0,0.15);
  border-radius: 16px;
  padding: 28px;
}

.rg-hotlines h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-accent);
  margin-bottom: 20px;
}

.hotline-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hotline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hotline-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.hotline-number {
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 16px;
}

.hotline-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ============================================================
   FAQ SECTION (single column accordion)
   ============================================================ */

.faq-section {
  background: var(--brand-primary);
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,0,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-std);
}

.faq-item:hover {
  border-color: rgba(255,0,255,0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  transition: color var(--transition-std);
}

.faq-question:hover {
  color: var(--brand-accent);
}

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

.faq-icon {
  font-size: 20px;
  color: var(--brand-secondary);
  flex-shrink: 0;
  transition: transform var(--transition-std);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER SECTION (Full-width)
   ============================================================ */

.cta-banner-section {
  background: linear-gradient(135deg, #2d0060 0%, #1a0e4f 40%, #3d1000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner-inner h2 {
  font-family: var(--brand-head-font);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 56px);
  margin-bottom: 16px;
  color: #fff;
}

.cta-banner-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.site-footer {
  background: #070518;
  border-top: 1px solid rgba(255,0,255,0.12);
  padding-top: 56px;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-accent);
  margin-bottom: 18px;
}

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

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

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

/* Responsible gambling logos */
.responsible-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.resp-logo {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.footer-bottom-left {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.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-std);
}

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

/* Age restriction badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--brand-btn-bg);
  border-radius: 50%;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}

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

.legal-page-wrap {
  padding-top: 68px;
  min-height: 80vh;
}

.legal-hero {
  background: linear-gradient(135deg, #1a0e4f, #0d0a2e);
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(255,0,255,0.1);
}

.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.legal-hero .last-updated {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-accent);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 24px 0 10px;
}

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

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

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

/* ============================================================
   MOBILE MENU
   ============================================================ */

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

@media (max-width: 992px) {
  .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: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,0,255,0.15);
    z-index: 8999;
    gap: 4px;
  }

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

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

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

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

  .hero-subtitle { max-width: 100%; }

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

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

  .hero-visual {
    display: none;
  }

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

  .bonus-sidebar {
    position: static;
  }

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

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

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

  .steps-row::before {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

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

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

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

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

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

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

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

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

  .hero-section {
    min-height: 75vh;
  }
}

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

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

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

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

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

  .providers-row {
    gap: 10px;
  }

  .provider-badge {
    padding: 10px 16px;
    font-size: 12px;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-gold   { color: var(--brand-accent); }
.text-pink   { color: var(--brand-secondary); }
.text-muted  { color: rgba(255,255,255,0.55); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }