/* =============================================
   STAKEBOT SHOWCASE – style.css (v3 FIXED)
   Fixes: two-col layout, FAQ styling, mobile
============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #060814;
  --bg2: #0b0f1e;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --text: #f0f2ff;
  --text-muted: #8892b0;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --gold: #f59e0b;
  --gold2: #fbbf24;
  --green: #10b981;
  --cyan: #06b6d4;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  --glow: 0 0 40px rgba(124, 58, 237, 0.3);
  --glow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   BACKGROUND DECORATION
═══════════════════════════════════════ */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
  background: rgba(124, 58, 237, 0.15);
}

.orb-2 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: -10%;
  background: rgba(6, 182, 212, 0.10);
  animation-delay: -3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  left: 30%;
  background: rgba(245, 158, 11, 0.08);
  animation-delay: -6s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.05);
  }
}

/* ═══════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--accent2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 8, 20, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.navbar.scrolled {
  background: rgba(6, 8, 20, 0.96);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-accent {
  color: var(--accent2);
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-cta {
  margin-top: 12px;
  text-align: center;
}

@media(max-width:860px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-bright);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* card inner buttons */
.btn-purple {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 9px;
  font-size: .82rem;
  font-weight: 700;
  transition: opacity .2s;
}

.btn-purple:hover {
  opacity: .9;
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 9px;
  font-size: .82rem;
  font-weight: 700;
  transition: opacity .2s;
}

.btn-gold-solid:hover {
  opacity: .9;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 120px 40px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.85;
}

.hero-sub strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.1rem;
  font-weight: 800;
}

.stat-label {
  font-size: .72rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ── Hero Visual ── */
.hero-visual {
  flex-shrink: 0;
}

.dual-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-card {
  width: 290px;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(10, 15, 35, 0.9);
  backdrop-filter: blur(10px);
}

.card-tg {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--glow);
  animation: floatA 4s ease-in-out infinite;
}

.card-pro {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--glow-gold);
  animation: floatB 4s ease-in-out infinite;
  animation-delay: -.5s;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tg-av {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.pro-av {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}

.card-name {
  font-weight: 700;
  font-size: .9rem;
}

.card-live {
  font-size: .72rem;
  color: var(--green);
}

.card-live.gold {
  color: var(--gold2);
}

.card-body {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-pill {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
}

.pill-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.2);
}

@media(max-width:1000px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding: 120px 24px 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .dual-cards {
    flex-direction: row;
    justify-content: center;
  }

  .dual-cards .preview-card {
    width: 260px;
  }
}

@media(max-width:600px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .dual-cards {
    flex-direction: column;
    align-items: center;
  }

  .dual-cards .preview-card {
    width: 100%;
    max-width: 340px;
  }
}

/* ═══════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark .section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  font-size: .72rem;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   BOT OVERVIEW CARDS
═══════════════════════════════════════ */
.bots-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.overview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.overview-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ov-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.overview-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.overview-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   TWO-COLUMN LAYOUT (FIXED — no RTL trick)
═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* reversed column order without RTL direction hack */
.two-col.reverse {}

.two-col.reverse .info-col {
  order: 2;
}

.two-col.reverse .reviews-col {
  order: 1;
}

@media(max-width:860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse .info-col {
    order: 1;
  }

  .two-col.reverse .reviews-col {
    order: 2;
  }
}

/* ── Accuracy Badge ── */
.acc-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 28px;
}

.acc-badge.acc-gold {
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.3);
}

.acc-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent2);
  line-height: 1;
}

.acc-num.gold-text {
  color: var(--gold2);
}

.acc-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Feature List ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  line-height: 1.6;
}

.fi {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Games Grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  transition: border-color .2s, transform .2s;
  cursor: default;
}

.game-card span {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.game-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

/* ── Free Tier ── */
.free-tier {
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}

.free-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.free-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.free-list li {
  font-size: .82rem;
  color: var(--text-muted);
}

.free-list li::before {
  content: "· ";
  color: var(--green);
}

/* ── Reviews ── */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.review-stars {
  font-size: .9rem;
  margin-bottom: 8px;
}

.review-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  font-style: italic;
}

.reviewer {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold2);
}

/* ═══════════════════════════════════════
   ARTICLE / GUIDE SECTION
═══════════════════════════════════════ */
.article-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}

.article-inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.meta-dot {
  color: var(--border-bright);
}

.article-body {
  line-height: 1.85;
}

.article-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 44px 0 14px;
  color: var(--text);
}

.article-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--accent2);
}

.article-body p {
  font-size: .975rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.9;
}

.article-body p strong {
  color: var(--text);
}

.article-body a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--cyan);
}

.article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-list li::before {
  content: "→";
  color: var(--accent2);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.article-list li strong {
  color: var(--text);
}

.article-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   INSTALL GUIDE
═══════════════════════════════════════ */
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.install-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s;
}

.install-card:hover {
  border-color: var(--border-bright);
}

.install-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.install-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.install-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  counter-reset: steps;
}

.install-steps li {
  counter-increment: steps;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.install-steps li::before {
  content: counter(steps);
  min-width: 24px;
  height: 24px;
  background: rgba(124, 58, 237, 0.25);
  color: var(--accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.install-steps code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: .8rem;
  color: var(--cyan);
}

/* ═══════════════════════════════════════
   COMPARE TABLE
═══════════════════════════════════════ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 500px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: rgba(255, 255, 255, 0.04);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.col-tg {
  color: var(--accent2) !important;
}

.col-pro {
  color: var(--gold2) !important;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table td:first-child {
  color: var(--text-muted);
}

.tag-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

.tag-gold {
  background: rgba(245, 158, 11, 0.13);
  color: var(--gold2);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   FAQ (FULLY FIXED)
═══════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item.open {
  border-color: rgba(124, 58, 237, 0.5);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  gap: 16px;
  line-height: 1.5;
}

.faq-q:hover {
  color: var(--accent2);
}

.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent2);
  font-size: .7rem;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(124, 58, 237, 0.3);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.78;
  padding: 0 22px;
}

.faq-a a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.06));
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  background: rgba(0, 0, 0, 0.4);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  width: 100%;
  color: var(--text-muted);
  font-size: .75rem;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
═══════════════════════════════════════ */
@media(max-width:768px) {

  .section,
  .article-section,
  .cta-section {
    padding: 72px 20px;
  }

  .section-dark {
    padding: 72px 20px;
  }

  .footer {
    padding: 24px 20px;
  }

  .footer-links {
    margin-left: 0;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .install-grid {
    grid-template-columns: 1fr;
  }

  .bots-overview-grid {
    grid-template-columns: 1fr;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
    font-size: .82rem;
  }

  .article-cta {
    flex-direction: column;
  }

  .dual-cards {
    flex-direction: column;
    align-items: center;
  }

  .faq-list {
    max-width: 100%;
  }
}

@media(max-width:480px) {
  .section-title {
    font-size: 1.7rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}