/* =========================================================
   BASKET BOUNTY – style.css
   Theme: Neon-Court Retro-Sport  |  Dark + Electric Orange & Green
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --bg-deep:      #0a0c10;
  --bg-dark:      #0f1218;
  --bg-card:      #141820;
  --bg-card2:     #1a2030;
  --accent-org:   #ff6b1a;
  --accent-org2:  #ff9a3c;
  --accent-grn:   #1aff7a;
  --accent-grn2:  #0fd45e;
  --accent-yel:   #ffe048;
  --text-main:    #f0f4ff;
  --text-muted:   #8a95b0;
  --text-dark:    #505878;
  --border:       rgba(255,107,26,.18);
  --border-bright:rgba(255,107,26,.5);
  --glow-org:     0 0 28px rgba(255,107,26,.55);
  --glow-grn:     0 0 28px rgba(26,255,122,.45);
  --radius:       16px;
  --radius-lg:    24px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--accent-org); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-org2); }

img { max-width: 100%; display: block; }

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-org); border-radius: 3px; }

/* ─── NOISE OVERLAY ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .5;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,16,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent-org), var(--accent-org2));
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: var(--glow-org);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-main);
}

.logo-text .sub {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-org);
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(90deg, var(--accent-org), var(--accent-org2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,26,.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,26,.6);
  color: #fff;
}

.btn-green {
  background: linear-gradient(90deg, var(--accent-grn2), var(--accent-grn));
  color: #0a0c10;
  box-shadow: 0 4px 20px rgba(26,255,122,.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,255,122,.55);
  color: #0a0c10;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-bright);
}

.btn-outline:hover {
  border-color: var(--accent-org);
  color: var(--accent-org);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,107,26,.1);
  color: var(--accent-org);
  border: 1.5px solid rgba(255,107,26,.3);
}

.btn-ghost:hover {
  background: rgba(255,107,26,.2);
  color: var(--accent-org2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,107,26,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(26,255,122,.1) 0%, transparent 60%),
    var(--bg-deep);
}

/* Court lines decoration */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 100px rgba(255,107,26,.03),
    0 0 0 200px rgba(255,107,26,.02);
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,.12);
  border: 1px solid rgba(255,107,26,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-org);
  margin-bottom: 24px;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,.3); }
  50% { box-shadow: 0 0 20px 4px rgba(255,107,26,.2); }
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-grn);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 96px);
  line-height: .95;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--accent-org), var(--accent-yel), var(--accent-org2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-cond);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
  min-width: 110px;
}

.hero-stat .val {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent-org);
  line-height: 1;
}

.hero-stat .lbl {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   FEATURES TICKER
═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--accent-org), var(--accent-org2));
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerMove 30s linear infinite;
  width: max-content;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::after {
  content: '🏀';
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   GAME DEMO SECTION
═══════════════════════════════════════════════════════════ */
.demo-section {
  padding: 80px 0;
  position: relative;
}

.demo-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-org), transparent);
}

.section-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-org);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 40px;
}

.section-title span { color: var(--accent-org); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

/* ── Phone Frame ──────────────────────────────────────── */
.phone-frame-wrap {
  display: flex;
  justify-content: center;
}

.phone-outer {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.phone-shell {
  background: linear-gradient(145deg, #1e2535, #0f1218);
  border: 2.5px solid rgba(255,107,26,.35);
  border-radius: 40px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 30px 80px rgba(0,0,0,.7),
    var(--glow-org);
  position: relative;
}

/* Speaker notch */
.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  margin: 0 auto 10px;
}

/* Screen area – portrait 9:16 */
.phone-screen {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Demo overlay */
.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0c10 0%, #141820 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 26px;
  z-index: 5;
  transition: opacity .5s, visibility .5s;
}

.demo-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.demo-overlay-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--accent-org), var(--accent-org2));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: var(--glow-org);
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.demo-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-main);
  text-align: center;
  padding: 0 16px;
}

.demo-overlay .overlay-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 16px;
}

/* Home button */
.phone-home {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  margin: 10px auto 0;
}

/* Side buttons */
.phone-btn-vol {
  position: absolute;
  right: -4px;
  top: 80px;
  width: 4px;
  height: 28px;
  background: rgba(255,107,26,.4);
  border-radius: 2px;
}

.phone-btn-vol + .phone-btn-vol { top: 116px; height: 20px; }

/* ── Info Table ───────────────────────────────────────── */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-panel-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-bright);
  padding-bottom: 12px;
}

.info-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid rgba(255,107,26,.08);
  transition: background var(--transition);
}

.info-table tr:last-child { border-bottom: none; }

.info-table tr:hover { background: rgba(255,107,26,.05); }

.info-table td {
  padding: 13px 18px;
  font-size: 14px;
  line-height: 1.4;
}

.info-table td:first-child {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 42%;
  white-space: nowrap;
}

.info-table td:last-child {
  color: var(--text-main);
  font-weight: 500;
}

.info-table .highlight { color: var(--accent-org); font-weight: 700; }
.info-table .green { color: var(--accent-grn); font-weight: 700; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: rgba(255,107,26,.12);
  border: 1px solid rgba(255,107,26,.25);
  border-radius: 6px;
  padding: 2px 9px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-org);
  letter-spacing: .5px;
}

.tag.grn {
  background: rgba(26,255,122,.1);
  border-color: rgba(26,255,122,.25);
  color: var(--accent-grn);
}

/* Mini RTP bar */
.rtp-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rtp-bar-bg {
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}

.rtp-bar-fill {
  height: 100%;
  width: 96%;
  background: linear-gradient(90deg, var(--accent-grn2), var(--accent-grn));
  border-radius: 3px;
  animation: rtpGrow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes rtpGrow {
  from { width: 0; }
  to { width: 96%; }
}

/* Panel CTA buttons */
.panel-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES CARDS SECTION
═══════════════════════════════════════════════════════════ */
.features-section {
  padding: 0 0 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,26,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feat-card:hover {
  border-color: rgba(255,107,26,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), var(--glow-org);
}

.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,107,26,.2), rgba(255,107,26,.05));
  border: 1px solid rgba(255,107,26,.2);
}

.feat-card h3 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   HOW TO PLAY – STEPS
═══════════════════════════════════════════════════════════ */
.howto-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.howto-section::before, .howto-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.howto-section::before {
  background: rgba(255,107,26,.08);
  top: -80px; left: -80px;
}

.howto-section::after {
  background: rgba(26,255,122,.06);
  bottom: -80px; right: -80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  counter-reset: steps;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-org), var(--accent-org), transparent);
  opacity: .25;
}

.step-item {
  counter-increment: steps;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--accent-org);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent-org);
  margin: 0 auto 20px;
  box-shadow: var(--glow-org);
  position: relative;
}

.step-num::before {
  content: counter(steps);
  position: absolute;
}

.step-num .step-icon {
  display: none;
}

.step-item h3 {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.step-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT / TEXT BLOCK
═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 80px 0;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 18px;
  margin-top: 36px;
}

.content-block h2:first-child { margin-top: 0; }

.content-block h3 {
  font-family: var(--font-cond);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--accent-org);
  margin-bottom: 12px;
  margin-top: 28px;
  letter-spacing: .5px;
}

.content-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-block ul, .content-block ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-block li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.content-block li::marker { color: var(--accent-org); }

.content-block strong { color: var(--text-main); }

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.content-block th {
  background: rgba(255,107,26,.12);
  color: var(--accent-org);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-bright);
}

.content-block td {
  padding: 11px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,107,26,.06);
}

.content-block tr:last-child td { border-bottom: none; }
.content-block tr:hover td { background: rgba(255,107,26,.03); }

/* ═══════════════════════════════════════════════════════════
   PAYTABLE / SYMBOLS SECTION
═══════════════════════════════════════════════════════════ */
.paytable-section {
  padding: 0 0 80px;
}

.symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.symbol-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
}

.symbol-card:hover {
  border-color: var(--accent-org);
  transform: translateY(-4px);
  box-shadow: var(--glow-org);
}

.symbol-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,107,26,.4));
}

.symbol-name {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.symbol-payout {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent-yel);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(255,107,26,.45); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(255,107,26,.04); }

.faq-q-text {
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: .3px;
  line-height: 1.3;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,107,26,.1);
  border: 1.5px solid rgba(255,107,26,.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent-org);
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--accent-org);
}

.faq-item.open .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255,107,26,.07);
  padding-top: 18px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIBLE GAMING BANNER
═══════════════════════════════════════════════════════════ */
.responsible-banner {
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(255,107,26,.08), rgba(255,107,26,.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.responsible-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.responsible-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.responsible-content h3 {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.responsible-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   AUTHOR BLOCK
═══════════════════════════════════════════════════════════ */
.author-section {
  padding: 80px 0;
}

.author-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.author-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,26,.04) 0%, transparent 50%);
  pointer-events: none;
}

.author-avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-org);
  box-shadow: var(--glow-org);
  position: relative;
  z-index: 1;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback avatar */
.author-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-org), var(--accent-org2));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  border-radius: 50%;
}

.author-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.author-role {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-org);
  margin-bottom: 4px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1;
}

.author-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 52px 24px 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(255,107,26,.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.footer-logo .brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-main);
}

.footer-disclaimer {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin-bottom: 24px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact-item:hover { color: var(--accent-org); }

.footer-contact-item .icon {
  font-size: 16px;
}

.footer-bottom {
  margin-top: 28px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════
   DECORATIVE: FLOATING BALLS
═══════════════════════════════════════════════════════════ */
.deco-balls {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.deco-ball {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: radial-gradient(circle, var(--accent-org) 0%, transparent 70%);
  animation: drifting 12s ease-in-out infinite;
}

@keyframes drifting {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(120deg); }
  66% { transform: translate(-20px, 15px) rotate(240deg); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .phone-outer {
    max-width: 280px;
  }

  .steps-grid::before { display: none; }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .header-actions .btn:not(.btn-primary):not(.btn-green) {
    display: none;
  }

  .hero { padding: 56px 0 44px; }

  .hero-stats { gap: 6px; }
  .hero-stat { min-width: 90px; padding: 8px 14px; }
  .hero-stat .val { font-size: 20px; }

  .hero-actions .btn { padding: 12px 20px; font-size: 13px; }

  .demo-section, .content-section, .faq-section,
  .paytable-section, .author-section,
  .features-section { padding-top: 56px; padding-bottom: 56px; }

  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 22px;
  }

  .panel-btns { flex-direction: column; }
  .panel-btns .btn { justify-content: center; }

  .footer-contacts { gap: 16px; }
  .footer-contacts .footer-contact-item { font-size: 12px; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .symbols-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-block { padding: 24px 20px; }
  .info-table td { padding: 10px 12px; }

  .responsible-inner { justify-content: center; text-align: center; }
  .responsible-icon { width: 100%; text-align: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 44px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .symbols-grid { grid-template-columns: repeat(2, 1fr); }
}