/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080c14;
  --bg2:       #0d1220;
  --card-bg:   #111828;
  --accent:    #f0b429;
  --accent2:   #ff4d6d;
  --neon:      #00e5ff;
  --neon2:     #7c3aed;
  --text:      #e2e8f0;
  --muted:     #64748b;
  --radius:    16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-icon { font-size: 1.6rem; filter: drop-shadow(0 0 8px var(--accent)); }
.logo-text  { color: #fff; }
.logo-accent { color: var(--accent); }

.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--neon); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
}

.btn-sm { padding: 9px 22px; font-size: 0.85rem; background: var(--accent); color: #000; }
.btn-sm:hover { background: #ffd166; transform: translateY(-1px); }

.btn-hero {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 1.1rem;
  padding: 18px 42px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 0 32px rgba(240, 180, 41, 0.4);
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(240, 180, 41, 0.6);
}

.btn-arrow { font-size: 1.2rem; transition: transform .2s; }
.btn-hero:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--neon2), var(--neon));
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(124, 58, 237, 0.5); }

.btn-outline {
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--neon);
  background: transparent;
}
.btn-outline:hover { background: rgba(0, 229, 255, 0.08); border-color: var(--neon); }

.btn-lg { padding: 20px 52px; font-size: 1.1rem; }

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 32px rgba(240, 180, 41, 0.4); }
  50%       { box-shadow: 0 0 60px rgba(240, 180, 41, 0.75), 0 0 100px rgba(240, 180, 41, 0.2); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px 60px;
  overflow: hidden;
  gap: 40px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow--left  { background: rgba(124, 58, 237, 0.2); top: -100px; left: -200px; }
.hero-glow--right { background: rgba(0, 229, 255, 0.12); bottom: -100px; right: -200px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown .6s ease both;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeInDown .7s ease .1s both;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
  animation: fadeInDown .7s ease .2s both;
}

/* Bonus card */
.bonus-card {
  background: rgba(17, 24, 40, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  animation: fadeInDown .7s ease .3s both;
}

.bonus-card__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.bonus-item {
  flex: 1;
  text-align: center;
}

.bonus-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.5);
}

.bonus-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 229, 255, 0.15);
  margin: 0 10px;
}

.hero-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 14px;
  opacity: 0.7;
  animation: fadeInDown .7s ease .5s both;
}

/* Slot machine */
.hero-slots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  background: rgba(13, 18, 32, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.1), inset 0 0 40px rgba(0,0,0,0.5);
  animation: fadeInRight .8s ease .2s both;
}

.slot-reel {
  width: 80px;
  height: 240px;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  position: relative;
}

.slot-reel::before, .slot-reel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.slot-reel::before { top: 0; background: linear-gradient(to bottom, rgba(8,12,20,0.9), transparent); }
.slot-reel::after  { bottom: 0; background: linear-gradient(to top, rgba(8,12,20,0.9), transparent); }

.slot-symbol {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 80px;
}

.section--dark {
  background: var(--bg2);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.25);
}

.card--featured {
  border-color: rgba(240, 180, 41, 0.4);
  background: linear-gradient(145deg, #1a1f2e, #111828);
  box-shadow: 0 0 40px rgba(240, 180, 41, 0.1);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(240, 180, 41, 0.4));
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
}

.game-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.game-thumb--1 { background: linear-gradient(135deg, #e91e8c, #ff6b35); background-image: none; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.game-thumb--2 { background: linear-gradient(135deg, #7c3aed, #2563eb); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.game-thumb--3 { background: linear-gradient(135deg, #059669, #0891b2); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.game-thumb--4 { background: linear-gradient(135deg, #d97706, #b45309); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.game-thumb--5 { background: linear-gradient(135deg, #dc2626, #7c3aed); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.game-thumb--6 { background: linear-gradient(135deg, #0891b2, #7c3aed); display: flex; align-items: center; justify-content: center; font-size: 4rem; }

.game-thumb--1::after { content: '🍬'; }
.game-thumb--2::after { content: '⚡'; }
.game-thumb--3::after { content: '🐟'; }
.game-thumb--4::after { content: '🐺'; }
.game-thumb--5::after { content: '📖'; }
.game-thumb--6::after { content: '⭐'; }

.game-info {
  background: var(--card-bg);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-name { font-size: 0.82rem; font-weight: 600; color: #fff; }
.game-rtp  { font-size: 0.72rem; color: #22c55e; font-weight: 600; }

.center-btn { text-align: center; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .3s, border-color .3s;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 229, 255, 0.05);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.ticker {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-size: 0.85rem;
  color: var(--muted);
}

.ticker strong { color: var(--accent); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 40px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(240, 180, 41, 0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(100, 116, 139, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== HOW TO START ===== */
.steps-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.25); }

.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(240,180,41,0.15);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }

/* ===== CONTENT BLOCKS ===== */
.content-block { max-width: 900px; margin: 0 auto; }
.content-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin: 28px 0 10px;
}
.content-text h3:first-child { margin-top: 0; }
.content-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===== LIVE CASINO ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.live-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.live-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.25); }
.live-card--featured {
  border-color: rgba(240,180,41,0.4);
  background: linear-gradient(145deg, #1a1f2e, #111828);
  box-shadow: 0 0 40px rgba(240,180,41,0.1);
}
.live-card__badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #000; font-size: 0.7rem; font-weight: 800;
  padding: 4px 14px; border-radius: 20px; letter-spacing: 1px;
}
.live-card__icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.live-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.live-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }

.live-description {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(17,24,40,0.6);
  border: 1px solid rgba(0,229,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.live-description p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ===== TOURNAMENTS ===== */
.tournament-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tournament-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s, border-color .3s;
}
.tournament-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.2); }
.tournament-card--gold {
  border-color: rgba(240,180,41,0.4);
  box-shadow: 0 0 40px rgba(240,180,41,0.08);
}
.t-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.t-icon { font-size: 1.6rem; }
.t-type { font-size: 0.75rem; color: var(--neon); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.tournament-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.t-prize { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.t-prize strong { color: var(--accent); }
.tournament-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

/* ===== PAYMENTS ===== */
.payments-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.payment-block {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .3s, border-color .3s;
}
.payment-block:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.2); }
.payment-block--featured {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 30px rgba(0,229,255,0.06);
}
.payment-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.payment-block h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.payment-block p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ===== RESPONSIBLE GAMING ===== */
.responsible-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.responsible-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin: 24px 0 8px;
}
.responsible-text h3:first-child { margin-top: 0; }
.responsible-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

.responsible-rules {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rule-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--muted); }
.rule-check { color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.about-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--accent); margin: 24px 0 8px; }
.about-text h3:first-child { margin-top: 0; }
.about-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.faq-open { border-color: rgba(0,229,255,0.2); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--neon); }
.faq-arrow {
  color: var(--muted);
  font-size: 0.7rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease;
  padding: 0 24px;
}
.faq-item.faq-open .faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--neon); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-slots { display: none; }
  .bonus-card__inner { flex-direction: column; gap: 16px; }
  .bonus-divider { width: 80%; height: 1px; }
  .section { padding: 60px 24px; }
  .header { padding: 16px 20px; }
  .nav { display: none; }
  .footer { padding: 40px 24px; }
  .responsible-content { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .stats-block { grid-template-columns: repeat(2, 1fr); }
  .live-description { padding: 20px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .btn-hero { font-size: 0.95rem; padding: 16px 28px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
