/* ============================================================
   RINO CASINO — Main Stylesheet
   Brand: Rino Casino / Ріно Казино
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg:       #0a0a18;
  --bg2:      #0f0f22;
  --bg3:      #13132c;
  --card:     #191930;
  --card2:    #1f1f3a;
  --orange:   #ff6520;
  --orange2:  #ff8c00;
  --purple:   #7c3aed;
  --purple2:  #a855f7;
  --gold:     #ffcb3a;
  --text:     #ffffff;
  --muted:    #8080aa;
  --muted2:   #a0a0cc;
  --line:     rgba(255,255,255,0.07);
  --line-o:   rgba(255,101,32,0.25);
  --shadow:   0 20px 60px rgba(0,0,0,0.7);
  --r-xl:     24px;
  --r-lg:     16px;
  --r-md:     10px;
  --r-pill:   50px;
  --wrap:     1240px;
  --header-h: linear-gradient(135deg, #0f0f22 0%, #1a0a2e 100%);
  --btn-main: linear-gradient(135deg, #ff6520, #ff8c00);
  --btn-alt:  linear-gradient(135deg, #7c3aed, #a855f7);
}

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

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

/* Dark scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--orange2); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.2;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted2);
  font-size: 1rem;
  max-width: 600px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-head .section-subtitle {
  margin: 12px auto 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--btn-main);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,101,32,0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255,101,32,0.5);
}

.btn-secondary {
  background: var(--btn-alt);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124,58,237,0.35);
}

.btn-secondary:hover {
  box-shadow: 0 12px 32px rgba(124,58,237,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,101,32,0.1);
  box-shadow: 0 0 20px rgba(255,101,32,0.2);
}

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

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,101,32,0.15);
  border-color: rgba(255,101,32,0.5);
}

.card2 {
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ============================================================
   Fade-in Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   1. TOPBAR
   ============================================================ */
.topbar {
  background: #08081a;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  height: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.topbar-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 0.82rem;
  color: var(--muted2);
  gap: 60px;
}

.topbar-ticker:hover { animation-play-state: paused; }

.topbar-ticker span {
  color: var(--orange);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   2. HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-h);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-emoji {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,101,32,0.6));
}

.logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

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

.nav a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted2);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav a.active {
  color: var(--orange);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--line);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--r-lg);
  font-weight: 500;
  color: var(--muted2);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.mobile-nav .mobile-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Radial glow background */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,101,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,101,32,0.12);
  border: 1px solid rgba(255,101,32,0.3);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--muted2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Bonus Badges */
.bonus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.bonus-badge {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted2);
}

.hero-stat-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 16px rgba(34,197,94,1); }
}

.hero-stat strong {
  color: var(--text);
  font-weight: 700;
}

/* Hero Right — Mascot area */
.hero-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.mascot-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,101,32,0.2) 0%, rgba(124,58,237,0.1) 50%, transparent 70%);
  border-radius: 50%;
  animation: mascot-pulse 3s ease-in-out infinite;
}

@keyframes mascot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.mascot-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,101,32,0.2);
  border-radius: 50%;
  animation: ring-spin 8s linear infinite;
}

.mascot-ring-2 {
  width: 240px;
  height: 240px;
  border-color: rgba(124,58,237,0.2);
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mascot-emoji {
  font-size: 9rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255,101,32,0.5));
  animation: mascot-float 4s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

/* Floating chips */
.mascot-chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-lg);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 3;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.chip-1 { top: 60px; right: 40px; animation: chip-float 3.5s ease-in-out infinite; }
.chip-2 { bottom: 80px; right: 20px; animation: chip-float 4.2s ease-in-out infinite 0.5s; }
.chip-3 { bottom: 120px; left: 30px; animation: chip-float 3.8s ease-in-out infinite 1s; }
.chip-4 { top: 100px; left: 60px; animation: chip-float 4.5s ease-in-out infinite 0.3s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   4. BENEFITS STRIP
   ============================================================ */
.benefits {
  background: var(--bg2);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.benefit-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,101,32,0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   5. GAMES SECTION
   ============================================================ */
.games {
  background: var(--bg);
  padding: 80px 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted2);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
  border-color: var(--orange);
  color: var(--text);
}

.tab-btn.active {
  background: var(--btn-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,101,32,0.35);
}

/* Featured Game Card */
.game-featured {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 50%, #1a0030 100%);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--r-xl);
  padding: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(168,85,247,0.2);
}

.game-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.game-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,203,58,0.15);
  border: 1px solid rgba(255,203,58,0.3);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.game-featured-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-featured-desc {
  color: var(--muted2);
  font-size: 0.95rem;
  max-width: 400px;
}

.game-featured-visual {
  width: 280px;
  height: 220px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.game-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Game Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.game-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.game-card:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(255,101,32,.25); }
.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,24,.95) 0%, rgba(10,10,24,.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}
.game-card-provider {
  font-size: 0.65rem;
  color: var(--muted2);
  margin-bottom: 8px;
}
.game-card-overlay .btn {
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.75rem;
}

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

/* ============================================================
   6. BONUSES SECTION
   ============================================================ */
.bonuses {
  background: var(--bg2);
  padding: 80px 0;
}

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

.bonus-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,101,32,0.15);
}

.bonus-card-top {
  height: 5px;
  background: var(--btn-main);
}

.bonus-card-body {
  padding: 32px;
}

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

.bonus-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-card-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.bonus-card-desc {
  color: var(--muted2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bonus-card-features {
  list-style: none;
  margin-bottom: 24px;
}

.bonus-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted2);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.bonus-card-features li:last-child { border-bottom: none; }

.bonus-card-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   7. LIVE CASINO SECTION
   ============================================================ */
.live-casino {
  background: var(--bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.live-casino::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,101,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-blink 1s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-description {
  color: var(--muted2);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

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

.live-game-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,101,32,0.15);
}

.live-game-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}

.live-game-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.live-game-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

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

/* ============================================================
   8. JACKPOT SECTION
   ============================================================ */
.jackpot {
  background: linear-gradient(135deg, #0a0a18 0%, #1a0a00 50%, #0a0a18 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,101,32,0.15);
  border-bottom: 1px solid rgba(255,101,32,0.15);
}

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

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

.jackpot-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.jackpot-number {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  animation: jackpot-glow 2s ease-in-out infinite;
}

@keyframes jackpot-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255,101,32,0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255,140,0,0.8));
  }
}

.jackpot-winner {
  color: var(--muted2);
  font-size: 0.9rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.jackpot-winner strong {
  color: var(--gold);
}

/* ============================================================
   9. TOURNAMENTS SECTION
   ============================================================ */
.tournaments {
  background: var(--bg2);
  padding: 80px 0;
}

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

.tournament-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255,101,32,0.15);
}

.tournament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--btn-main);
}

.tournament-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.tournament-status.active {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
}

.tournament-status.soon {
  background: rgba(255,203,58,0.15);
  border: 1px solid rgba(255,203,58,0.3);
  color: var(--gold);
}

.tournament-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.active .tournament-status-dot {
  animation: live-blink 1s ease-in-out infinite;
}

.tournament-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tournament-prize {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.tournament-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.tournament-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--muted2);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.tournament-meta-row:last-child { border-bottom: none; }

.tournament-meta-val {
  font-weight: 600;
  color: var(--text);
}

.tournament-countdown {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.countdown-unit {
  flex: 1;
  background: var(--card2);
  border-radius: var(--r-md);
  padding: 8px 4px;
  text-align: center;
}

.countdown-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   10. RECENT WINS FEED
   ============================================================ */
.recent-wins {
  background: var(--bg);
  padding: 80px 0;
}

.wins-track-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 8px 0;
}

.wins-track-wrapper::before,
.wins-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.wins-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.wins-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.wins-track {
  display: flex;
  gap: 16px;
  animation: wins-scroll 30s linear infinite;
  width: max-content;
  padding: 8px 24px;
}

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

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

.win-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  min-width: 200px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.win-card:hover {
  transform: scale(1.03);
  border-color: rgba(255,101,32,0.5);
}

.win-user {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.win-user::before {
  content: '👤';
  font-size: 0.9rem;
}

.win-game {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.win-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.win-time {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   11. VIP PROGRAM SECTION
   ============================================================ */
.vip {
  background: var(--bg2);
  padding: 80px 0;
}

.vip-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.vip-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  position: relative;
  flex: 1;
  min-width: 120px;
}

.vip-tier:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
  z-index: 0;
  pointer-events: none;
}

.vip-tier-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255,101,32,0.4));
}

.vip-tier-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.vip-tier.active .vip-tier-name { color: var(--orange); }

.vip-tier-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--line-o);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.vip-tier.active .vip-tier-circle {
  border-color: var(--orange);
  background: rgba(255,101,32,0.1);
  box-shadow: 0 0 20px rgba(255,101,32,0.3);
}

.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vip-feature {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,101,32,0.12);
}

.vip-feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.vip-feature-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vip-feature-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   12. HOW TO START SECTION
   ============================================================ */
.how-to {
  background: var(--bg);
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--purple));
  z-index: 0;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,101,32,0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--btn-main);
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(255,101,32,0.4);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.83rem;
  color: var(--muted2);
  line-height: 1.5;
}

/* ============================================================
   13. PAYMENT METHODS
   ============================================================ */
.payments {
  background: var(--bg2);
  padding: 80px 0;
}

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

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

.payment-badge {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-lg);
  padding: 20px 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.payment-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,101,32,0.15);
  border-color: rgba(255,101,32,0.4);
}

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

.payment-badge-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted2);
}

.payment-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.payment-info-item {
  text-align: center;
}

.payment-info-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.payment-info-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

/* ============================================================
   14. RESPONSIBLE GAMBLING
   ============================================================ */
.responsible {
  background: var(--bg);
  padding: 40px 0;
}

.responsible-banner {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.responsible-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.responsible-content {
  flex: 1;
}

.responsible-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--orange);
}

.responsible-text {
  font-size: 0.85rem;
  color: var(--muted2);
  line-height: 1.6;
  max-width: 700px;
}

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

.responsible-link {
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted2);
  transition: color 0.2s, border-color 0.2s;
}

.responsible-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.responsible-age {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,101,32,0.1);
  border: 2px solid var(--orange);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   15. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--bg2);
  padding: 80px 0;
}

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

.about-card {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 0.3s ease;
}

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

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.about-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--orange);
}

.about-card-list {
  list-style: none;
}

.about-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted2);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}

.about-card-list li:last-child { border-bottom: none; }

.about-card-list li strong {
  color: var(--text);
}

.about-card-list li::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.faq {
  background: var(--bg);
  padding: 80px 0;
}

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

.faq-item {
  background: var(--card);
  border: 1px solid var(--line-o);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open { border-color: rgba(255,101,32,0.5); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
  user-select: none;
  transition: color 0.2s;
}

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

.faq-item.open .faq-question { color: var(--orange); }

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(255,101,32,0.2);
}

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

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.88rem;
  color: var(--muted2);
  line-height: 1.7;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: #06061a;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-emoji { font-size: 1.8rem; }

.footer-logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,101,32,0.06);
}

.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
  flex: 1;
}

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

.footer-license-badge {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 6px 12px;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.footer-license-badge strong {
  display: block;
  color: var(--muted2);
  font-size: 0.72rem;
}

.footer-age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,101,32,0.1);
  border: 2px solid var(--orange);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--orange);
}

/* Footer payment row */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-payment-pill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted2);
}

/* ============================================================
   SECTION SEPARATORS
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--line);
}

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

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .bonus-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-mascot {
    height: 320px;
  }

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

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

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

  .bonuses-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

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

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-outline-white { display: none; }
  .header-actions .btn-primary { display: none; }
}

/* ============================================================
   FIXED BOTTOM BANNER
   ============================================================ */
.bottom-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #0f0f22 0%, #1a0a2e 100%);
  border-top: 1px solid rgba(255,101,32,0.35);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.bottom-cta-bar__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.bottom-cta-bar__text strong {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.bottom-cta-bar__text span {
  font-size: 0.72rem;
  color: var(--orange2);
  white-space: nowrap;
}

.bottom-cta-bar__btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,101,32,0.45);
  transition: opacity 0.2s;
}

.bottom-cta-bar__btn:hover { opacity: 0.88; }

@media (max-width: 1024px) {
  .bottom-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; min-height: auto; }

  .hero-title { font-size: 1.8rem; }

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

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

  .game-featured {
    flex-direction: column;
    text-align: center;
  }
  .game-featured-visual {
    width: 100%;
    height: 180px;
  }

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

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

  .vip-track {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .vip-tier { min-width: 100px; }
  .vip-tier:not(:last-child)::after { display: none; }

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

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

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

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

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

  .footer-disclaimer { order: 3; }

  .jackpot-number { font-size: 3rem; }

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

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root { --wrap: 100%; }

  .wrap { padding: 0 16px; }

  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 1.5rem; }

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

  .bonus-badges { flex-direction: column; align-items: center; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .hero-mascot { height: 240px; }
  .mascot-emoji { font-size: 6rem; }
  .mascot-ring { width: 200px; height: 200px; }
  .mascot-ring-2 { width: 160px; height: 160px; }
  .chip-1, .chip-4 { display: none; }

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

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

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

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

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

  .responsible-banner { flex-direction: column; }

  .game-featured { padding: 24px; }
  .game-featured-title { font-size: 1.2rem; }

  .filter-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }

  .header-actions .btn { padding: 10px 18px; font-size: 0.82rem; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

.orange { color: var(--orange); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.muted2 { color: var(--muted2); }
