/* =============================================
   BETORY V4 — Mobile App Focus
   Purple + Gold | Full-width alternating sections
   App download, mobile features, comparison table
   ============================================= */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:       #09090F;
  --bg2:      #0D0D1C;
  --bg3:      #121228;
  --bg4:      #161638;
  --card:     #0F0F22;

  --purple:   #7B5CF0;
  --purple-lt:#A78BFA;
  --purple-dk:#5B21B6;
  --pglow:    rgba(123,92,240,0.18);
  --gold:     #FFBE16;
  --gold-lt:  #FFD04E;
  --green:    #4ADE80;
  --red:      #F87171;
  --pink:     #F472B6;

  --text:     #F1EFF9;
  --text-md:  rgba(241,239,249,0.72);
  --text-dim: rgba(241,239,249,0.4);
  --border:   rgba(123,92,240,0.14);
  --border-lt:rgba(123,92,240,0.28);
  --border-g: rgba(255,190,22,0.2);

  --header-h: 64px;
  --max-w:    1160px;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
  --sh-card:   0 4px 20px rgba(0,0,0,0.55);
  --sh-purple: 0 0 28px rgba(123,92,240,0.22);
  --sh-gold:   0 4px 18px rgba(255,190,22,0.32);
  --sh-green:  0 0 20px rgba(74,222,128,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dk); border-radius: 3px; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(9,9,15,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.8); }

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 16px; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; transition: opacity var(--tr); }
.logo-link:hover { opacity: 0.8; }
.logo-link img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a {
  font-size: 13px; font-weight: 500; color: var(--text-md);
  padding: 6px 12px; border-radius: var(--r-xs); transition: all var(--tr);
}
.header-nav a:hover { color: var(--purple-lt); background: var(--pglow); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; flex-shrink: 0; margin-left: auto;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(9,9,15,0.99);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px 18px; z-index: 99;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mobile-nav ul a { display: block; font-size: 14px; font-weight: 500; color: var(--text-md); padding: 10px 12px; border-radius: var(--r-xs); transition: all var(--tr); }
.mobile-nav ul a:hover { color: var(--purple-lt); background: var(--pglow); }
.mobile-nav-btns { display: flex; gap: 8px; }
.mobile-nav-btns .btn { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; font-family: var(--font-b); font-weight: 700;
  font-size: 13px; padding: 10px 20px; border-radius: var(--r-sm);
  border: none; cursor: pointer; transition: all var(--tr);
  white-space: nowrap; text-decoration: none !important;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #000 !important; font-weight: 800; box-shadow: var(--sh-gold);
  animation: pulse-gold 2.5s ease-in-out infinite;
  text-decoration: none !important;
}
.btn-gold:hover, .btn-gold:visited, .btn-gold:active { color: #000 !important; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); animation: none; box-shadow: 0 6px 24px rgba(255,190,22,0.5); transform: translateY(-1px); }
@keyframes pulse-gold { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  color: #fff !important; box-shadow: var(--sh-purple);
  text-decoration: none !important;
}
.btn-purple:hover { background: linear-gradient(135deg, var(--purple-lt), var(--purple)); transform: translateY(-1px); }

.btn-green {
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #000 !important; font-weight: 800; box-shadow: var(--sh-green);
  text-decoration: none !important;
}
.btn-green:hover { background: linear-gradient(135deg, #86efac, var(--green)); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text) !important; border: 1px solid rgba(255,255,255,0.15); text-decoration: none !important; }
.btn-ghost:hover { border-color: var(--purple-lt); color: var(--purple-lt) !important; background: var(--pglow); }

.btn-outline-gold { background: transparent; color: var(--gold) !important; border: 1px solid var(--gold); text-decoration: none !important; }
.btn-outline-gold:hover { background: rgba(255,190,22,0.1); box-shadow: var(--sh-gold); }

.btn-sm  { font-size: 12px; padding: 7px 14px; border-radius: var(--r-xs); }
.btn-lg  { font-size: 14px; padding: 12px 28px; border-radius: var(--r-md); }
.btn-xl  { font-size: 16px; padding: 15px 36px; border-radius: var(--r-md); }
.btn-full { width: 100%; }

/* =============================================
   HERO — split, phone mockup right
   ============================================= */
.hero-section {
  background: var(--bg2);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle bg glow */
.hero-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 25% 50%, rgba(123,92,240,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,190,22,0.05) 0%, transparent 50%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 56px 0 52px;
  position: relative; z-index: 1;
}

.hero-left {}

.hero-app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--green);
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero-app-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: 2px; line-height: 0.95;
  color: var(--text); margin-bottom: 14px;
}
.hero-title .acc { color: var(--purple-lt); display: block; }
.hero-title .acc2 { color: var(--gold); display: block; }

.hero-sub { font-size: 16px; color: var(--text-md); line-height: 1.7; margin-bottom: 28px; max-width: 440px; }

/* Download buttons */
.hero-dl-btns {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px;
}
.dl-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border-lt);
  border-radius: var(--r-md); padding: 10px 20px;
  cursor: pointer; transition: all var(--tr);
  text-decoration: none;
}
.dl-btn:hover { background: var(--bg4); border-color: var(--purple-lt); box-shadow: var(--sh-purple); transform: translateY(-2px); }
.dl-btn-icon { font-size: 24px; flex-shrink: 0; }
.dl-btn-text { display: flex; flex-direction: column; }
.dl-btn-sub { font-size: 10px; color: var(--text-dim); letter-spacing: 0.3px; text-transform: uppercase; }
.dl-btn-name { font-size: 15px; font-weight: 700; color: var(--text); }

.hero-features {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-feat {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-dim);
}
.hero-feat::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; }

/* Right — phone visual */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.phone-wrap {
  position: relative; width: 280px;
}

/* Phone frame */
.phone-frame {
  width: 280px; height: 560px;
  background: linear-gradient(145deg, var(--bg3), var(--bg4));
  border: 2px solid var(--border-lt);
  border-radius: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), var(--sh-purple);
}

/* Phone notch */
.phone-frame::before {
  content: ''; position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: var(--bg); border-radius: 3px; z-index: 10;
}

/* Phone screen content */
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0f0f1a 0%, #1a0a2e 40%, #0a1a0f 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 40px 20px 20px;
}

.phone-logo { height: 28px; width: auto; margin-bottom: 16px; opacity: 0.9; }

.phone-bonus {
  background: rgba(255,190,22,0.1);
  border: 1px solid rgba(255,190,22,0.3);
  border-radius: var(--r-md); padding: 12px 16px;
  text-align: center; width: 100%; margin-bottom: 12px;
}
.phone-bonus-pct {
  font-family: var(--font-d);
  font-size: 40px; color: var(--gold);
  letter-spacing: 1px; line-height: 1;
}
.phone-bonus-txt { font-size: 11px; color: var(--text-md); margin-top: 2px; }

.phone-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #000 !important; font-family: var(--font-b);
  font-weight: 800; font-size: 13px;
  text-align: center; padding: 11px;
  border-radius: var(--r-sm); margin-bottom: 8px;
  text-decoration: none !important;
  animation: pulse-gold 2.5s ease-in-out infinite;
}

.phone-games {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; width: 100%; margin-top: 8px;
}
.phone-game {
  border-radius: var(--r-xs); overflow: hidden;
  aspect-ratio: 263/156; background: var(--bg3);
}
.phone-game img { width: 100%; height: 100%; object-fit: cover; }

/* Floating badges on phone */
.phone-badge {
  position: absolute;
  background: rgba(9,9,15,0.92);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-sm);
  padding: 8px 12px; backdrop-filter: blur(8px);
}
.phone-badge-val { font-family: var(--font-d); font-size: 18px; color: var(--purple-lt); letter-spacing: 1px; line-height: 1; }
.phone-badge-lbl { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.pb-left  { left: -48px; top: 30%; animation: float-y 4s ease-in-out infinite; }
.pb-right { right: -48px; bottom: 30%; animation: float-y 4s ease-in-out infinite; animation-delay: -2s; }

@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 64px 0; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 2px; color: var(--text); margin-bottom: 6px; line-height: 1.05;
}
.sec-title .acc { color: var(--purple-lt); }
.sec-title .acc2 { color: var(--gold); }
.sec-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }

/* =============================================
   APP DOWNLOAD SECTION
   ============================================= */
.app-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

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

/* Steps */
.app-steps { display: flex; flex-direction: column; gap: 20px; }
.app-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 18px; color: #fff;
  flex-shrink: 0; box-shadow: var(--sh-purple);
}
.step-body {}
.step-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-md); line-height: 1.6; }

/* iOS / Android cards */
.app-platforms { display: flex; flex-direction: column; gap: 12px; }
.platform-card {
  background: var(--card); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); padding: 24px;
  transition: all var(--tr); box-shadow: var(--sh-card);
}
.platform-card:hover { box-shadow: var(--sh-purple); transform: translateY(-2px); }

.platform-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.platform-icon { font-size: 32px; }
.platform-name { font-family: var(--font-d); font-size: 22px; letter-spacing: 1px; color: var(--text); }
.platform-sub { font-size: 12px; color: var(--text-dim); }
.platform-desc { font-size: 13px; color: var(--text-md); line-height: 1.6; margin-bottom: 14px; }
.platform-card .btn { width: 100%; }

/* =============================================
   MOBILE FEATURES — icon grid
   ============================================= */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 20px;
  transition: all var(--tr); text-align: center;
}
.feature-card:hover { border-color: var(--border-lt); box-shadow: var(--sh-purple); transform: translateY(-3px); }
.feature-icon {
  font-size: 36px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--text-md); line-height: 1.6; }

/* =============================================
   COMPARISON TABLE — App vs Browser
   ============================================= */
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-card);
}
.compare-table th {
  padding: 14px 20px; font-family: var(--font-d);
  font-size: 18px; letter-spacing: 1px; text-align: center;
  background: var(--bg3);
}
.compare-table th:first-child { text-align: left; font-size: 13px; font-family: var(--font-b); color: var(--text-dim); background: var(--bg2); }
.compare-table th.col-app { color: var(--purple-lt); border-bottom: 2px solid var(--purple); }
.compare-table th.col-web { color: var(--text-md); border-bottom: 2px solid var(--border-lt); }
.compare-table td {
  padding: 12px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; text-align: center; color: var(--text-md);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 600; background: rgba(13,13,28,0.5); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(123,92,240,0.04); }
.check { color: var(--green); font-size: 16px; font-weight: 700; }
.cross { color: var(--red); font-size: 16px; }
.neutral { color: var(--text-dim); font-size: 13px; }

/* =============================================
   GAME TABS
   ============================================= */
.tabs {
  display: flex; gap: 4px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; padding: 10px 18px;
  font-family: var(--font-b); font-size: 13px; font-weight: 600;
  color: var(--text-dim); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--tr); border-radius: var(--r-xs) var(--r-xs) 0 0;
}
.tab-btn svg { width: 15px; height: 15px; fill: currentColor; }
.tab-btn:hover { color: var(--text); background: var(--pglow); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(255,190,22,0.05); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.game-card {
  border-radius: var(--r-sm); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--sh-purple); border-color: var(--border-lt); }
.game-thumb { position: relative; aspect-ratio: 263/156; overflow: hidden; background: var(--bg3); }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-badge { position: absolute; top: 6px; left: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 2; }
.badge-hot  { background: #ef4444; color: #fff; }
.badge-new  { background: var(--green); color: #0a1a00; }
.badge-live { background: var(--purple); color: #fff; }
.badge-top  { background: var(--gold); color: #1a0e00; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,15,0.92) 0%, transparent 55%); display: flex; align-items: flex-end; justify-content: center; padding: 10px; opacity: 0; transition: opacity var(--tr); }
.game-card:hover .game-overlay { opacity: 1; }
.play-btn { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--gold); color: #000 !important; font-family: var(--font-b); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px; border-radius: var(--r-xs); transition: background var(--tr); text-decoration: none !important; }
.play-btn:hover { background: var(--gold-lt); }
.game-info { padding: 8px 10px 10px; }
.game-name { font-weight: 600; font-size: 13px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color var(--tr); }
.game-card:hover .game-name { color: var(--purple-lt); }
.game-provider { font-size: 11px; color: var(--text-dim); margin-top: 1px; }

/* =============================================
   PROVIDERS
   ============================================= */
.providers-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.provider-chip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all var(--tr); white-space: nowrap;
}
.provider-chip img { height: 18px; width: auto; object-fit: contain; filter: grayscale(0.3); transition: filter var(--tr); }
.provider-chip:hover { border-color: var(--border-lt); color: var(--purple-lt); box-shadow: var(--sh-purple); }
.provider-chip:hover img { filter: grayscale(0) brightness(1.1); }

/* =============================================
   REVIEW TABLE
   ============================================= */
.review-table-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card); border: 1px solid var(--border); margin: 1.5rem 0; }
.review-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.review-table tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
.review-table tr:last-child { border-bottom: none; }
.review-table tr:hover { background: rgba(123,92,240,0.04); }
.review-table td { padding: 11px 16px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(18,18,40,0.6); width: 40%; }
.review-table td:last-child { color: var(--text-md); background: rgba(15,15,34,0.6); }

/* =============================================
   PROSE
   ============================================= */
.prose h2 { font-family: var(--font-d); font-size: clamp(20px,2.5vw,26px); letter-spacing:1.5px; color:var(--text); margin:2.5rem 0 0.75rem; padding-bottom:8px; border-bottom:1px solid var(--border); scroll-margin-top:calc(var(--header-h) + 16px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16px; font-weight: 700; color: var(--purple-lt); margin: 1.75rem 0 0.5rem; }
.prose p { font-size: 15px; color: var(--text-md); line-height: 1.8; margin-bottom: 1rem; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--purple-lt); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card); }
.prose thead { background: rgba(123,92,240,0.1); border-bottom: 2px solid var(--purple); }
.prose th { font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--purple-lt); padding: 11px 14px; text-align: left; }
.prose tbody tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
.prose tbody tr:last-child { border-bottom: none; }
.prose tbody tr:hover { background: rgba(123,92,240,0.04); }
.prose td { padding: 10px 14px; color: var(--text-md); font-size: 14px; }
.prose td:first-child { font-weight: 600; color: var(--text); }
.prose ol, .prose ul, .list-content { padding-left: 1.5em !important; margin: 0.75rem 0 1rem !important; max-width: 100%; box-sizing: border-box; }
.prose ol, .list-content.list-ol { list-style: decimal !important; }
.prose ul, .list-content.list-ul { list-style: disc !important; }
.prose ol li, .prose ul li, .list-content li { padding-left: 0.3em; margin-bottom: 6px; font-size: 15px; color: var(--text-md); line-height: 1.75; }
.prose ol li::marker, .list-content.list-ol li::marker { color: var(--gold); font-weight: 700; }
.prose ul li::marker, .list-content.list-ul li::marker { color: var(--purple-lt); }

.bonus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.25rem 0; list-style: none !important; padding-left: 0 !important; }
.bonus-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; transition: border-color var(--tr), box-shadow var(--tr); }
.bonus-card:hover { border-color: var(--border-lt); box-shadow: var(--sh-purple); }
.bonus-card-title { font-family: var(--font-d); font-size: 18px; letter-spacing: 1px; color: var(--text); margin-bottom: 7px; }
.bonus-card-text { font-size: 13px; color: var(--text-md); line-height: 1.6; margin: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.5rem 0; }
.pros-card, .cons-card { background: var(--card); border-radius: var(--r-md); overflow: hidden; }
.pros-head { background: rgba(74,222,128,0.08); color: var(--green); border-bottom: 2px solid var(--green); padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.cons-head { background: rgba(248,113,113,0.08); color: var(--red); border-bottom: 2px solid var(--red); padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pros-body, .cons-body { padding: 10px 16px; }
.pros-body li, .cons-body li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-md); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.5; }
.pros-body li:last-child, .cons-body li:last-child { border-bottom: none; }
.pros-body li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-body li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

nav ul, .header-nav, .mobile-nav ul, .footer-links { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }

/* TOC */
.toc-wrap { margin: 1.75rem 0; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--card); overflow: hidden; }
.toc-toggle { display: flex; align-items: center; gap: 10px; width: 100%; background: none; border: none; padding: 14px 18px; cursor: pointer; color: var(--text); font-family: var(--font-b); font-size: 14px; font-weight: 600; text-align: left; transition: background var(--tr); }
.toc-toggle:hover { background: rgba(255,255,255,0.02); }
.toc-toggle svg { color: var(--purple-lt); flex-shrink: 0; width: 16px; height: 16px; }
.toc-label { flex: 1; }
.toc-chevron { width: 16px; height: 16px; color: var(--purple-lt); transition: transform var(--tr); flex-shrink: 0; }
.toc-wrap.open .toc-chevron { transform: rotate(180deg); }
.toc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; border-top: 0 solid var(--border); }
.toc-wrap.open .toc-body { max-height: 600px; border-top-width: 1px; }
.toc-list { padding: 10px 18px 14px; display: flex; flex-direction: column; gap: 3px; }
.toc-list a { display: block; font-size: 13px; color: var(--text-md); padding: 5px 8px; border-radius: var(--r-xs); border-left: 2px solid transparent; transition: all var(--tr); }
.toc-list a:hover, .toc-list a.active { color: var(--purple-lt); border-left-color: var(--purple); background: rgba(123,92,240,0.07); padding-left: 13px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--tr); }
.faq-item:hover, .faq-item.open { border-color: var(--border-lt); }
.faq-question, h3.faq-question { width: 100%; background: none; border: none; padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-b); font-size: 14px; font-weight: 600; color: var(--text); text-align: left; gap: 12px; transition: color var(--tr), background var(--tr); letter-spacing: normal; }
.faq-question:hover, h3.faq-question:hover { color: var(--purple-lt); background: rgba(123,92,240,0.04); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(123,92,240,0.1); border: 1px solid rgba(123,92,240,0.25); display: flex; align-items: center; justify-content: center; color: var(--purple-lt); font-size: 16px; transition: all var(--tr); }
.faq-item.open .faq-icon { background: rgba(123,92,240,0.2); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease; font-size: 14px; color: var(--text-md); line-height: 1.75; border-top: 0 solid var(--border); padding: 0 18px; }
.faq-answer p { font-size: 14px; color: var(--text-md); line-height: 1.75; margin: 0; }
.faq-item.open .faq-answer { max-height: 400px; border-top-width: 1px; padding: 12px 18px 16px; }

/* Payments */
.payments-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 8px 14px; height: 44px; min-width: 76px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.pay-item:hover { border-color: var(--border-lt); box-shadow: var(--sh-purple); }
.pay-item img { max-height: 22px; max-width: 66px; width: auto; height: auto; object-fit: contain; filter: brightness(0.85); transition: filter var(--tr); }
.pay-item:hover img { filter: brightness(1.1); }

/* FOOTER */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.footer-logo { height: 36px; margin-bottom: 12px; }
.footer-about { font-size: 13px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 32px; height: 32px; border-radius: var(--r-xs); background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-dim); cursor: pointer; transition: all var(--tr); user-select: none; }
.social-btn:hover { background: var(--pglow); border-color: var(--border-lt); color: var(--purple-lt); transform: translateY(-2px); }
.footer-col-title { font-weight: 700; font-size: 12px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--tr); }
.footer-links a:hover { color: var(--purple-lt); }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.age-badge { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(123,92,240,0.1); border: 1.5px solid rgba(123,92,240,0.3); color: var(--purple-lt); font-weight: 900; font-size: 10px; margin-top: 2px; }
.footer-disclaimer { font-size: 11px; color: var(--text-dim); line-height: 1.65; max-width: 560px; }
.footer-copy { font-size: 11px; color: var(--text-dim); white-space: nowrap; align-self: flex-end; }

/* FADE */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1{transition-delay:.1s} .fd2{transition-delay:.2s} .fd3{transition-delay:.3s}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { gap: 32px; }
  .phone-badge { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; padding: 40px 0; }
  .hero-right { display: none; }
  .hero-title { font-size: 56px; }

  .app-inner { grid-template-columns: 1fr; gap: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 56px; }
  .mobile-nav { top: 56px; }
  html, body { overflow-x: hidden; }
  .hero-title { font-size: 42px; }
  .hero-dl-btns { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .compare-table { display: block; overflow-x: auto; }
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .review-table { display: block; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { align-self: flex-start; }
}

section.section.prose.container {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}