/* GrandSlots777.gt – Bespoke stylesheet
   Palette: midnight #121420 | electric yellow #ffeb00 | red #d50000 | accent #1e2136
   System font stack – no external font requests
*/

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

:root {
  --bg:        #121420;
  --bg2:       #1a1d30;
  --bg3:       #1e2136;
  --yellow:    #ffeb00;
  --yellow-dim:#ccbb00;
  --red:       #d50000;
  --red-bright:#ff1a1a;
  --white:     #ffffff;
  --text:      #e0e0f0;
  --muted:     #8888aa;
  --border:    #2a2d48;
  --radius:    8px;
  --header-h:  64px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--white); }

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

/* ── Typography helpers ── */
.txt-yellow  { color: var(--yellow); }
.txt-red     { color: var(--red-bright); }
.txt-muted   { color: var(--muted); }

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(18, 20, 32, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
}

/* Wordmark */
.site-wordmark {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}
.site-wordmark .wm-grand   { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: 0.02em; text-transform: uppercase; }
.site-wordmark .wm-slots   { font-size: 1.4rem;  font-weight: 900; color: var(--yellow); letter-spacing: -0.01em; }
.site-wordmark .wm-777     { font-size: 1.4rem;  font-weight: 900; color: var(--red-bright); letter-spacing: 0.05em; }

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.desktop-nav a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: var(--bg3);
  color: var(--yellow);
}

/* Header right cluster */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.8rem;
  font-weight: 700;
}
.lang-switch a {
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.lang-switch a.active {
  background: var(--yellow);
  color: var(--bg);
}
.lang-switch a:hover:not(.active) { color: var(--white); }
.lang-switch span { color: var(--border); }

.btn-login {
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-login:hover { background: var(--yellow); color: var(--bg); }

.btn-register {
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--red);
  border: 2px solid var(--red);
  color: var(--white);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-register:hover { background: var(--red-bright); border-color: var(--red-bright); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 2px solid var(--yellow);
  z-index: 99;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: var(--bg3); color: var(--yellow); }
.mobile-nav .mn-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.mobile-nav .mn-lang {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
}
.mobile-nav .mn-lang a {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}
.mobile-nav .mn-lang a.active {
  background: var(--yellow);
  color: var(--bg);
}
.mobile-nav .mn-actions {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  flex-wrap: wrap;
}
.mobile-nav .mn-actions a { flex: 1; justify-content: center; min-width: 120px; }

/* ──────────────────────────────────────────
   BREADCRUMB
────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }
.breadcrumb .sep { margin: 0 6px; }

/* ──────────────────────────────────────────
   HERO (index only)
────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18,20,32,0.9) 0%,
    rgba(18,20,32,0.5) 50%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 40px 60px 48px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255,235,0,0.4);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,235,0,0.35);
  color: var(--bg);
}
.btn-cta-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-cta-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ──────────────────────────────────────────
   STATS TICKER (below hero)
────────────────────────────────────────── */
.stats-bar {
  background: var(--yellow);
  padding: 10px 24px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
}
.stats-bar .stat-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--bg);
}
.stats-bar .stat-sep { color: rgba(18,20,32,0.3); }

/* ──────────────────────────────────────────
   SECTION WRAPPER
────────────────────────────────────────── */
.section {
  padding: 56px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-full {
  padding: 56px 0;
}
.section-full .section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section heading */
.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon-accent {
  width: 4px;
  height: 28px;
  background: var(--yellow);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.section-title .badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  white-space: nowrap;
}

/* ──────────────────────────────────────────
   CATEGORY CHIPS
────────────────────────────────────────── */
.cat-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cat-chip {
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--bg3);
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  user-select: none;
}
.cat-chip:hover,
.cat-chip.active {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
}

/* ──────────────────────────────────────────
   GAME GRID
────────────────────────────────────────── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 288 / 210;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid var(--border);
}
.game-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255,235,0,0.2);
  border-color: var(--yellow);
  z-index: 2;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card .gc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,20,32,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s;
}
.game-card:hover .gc-overlay { opacity: 1; }
.gc-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-play-btn svg { fill: var(--bg); }

/* ──────────────────────────────────────────
   PROMO CARDS
────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.promo-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.promo-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(255,235,0,0.1);
}
.promo-card-top {
  padding: 28px 24px 16px;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(213,0,0,0.15) 100%);
}
.promo-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(213,0,0,0.15);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.promo-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.promo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.promo-card-body {
  padding: 16px 24px 20px;
}
.promo-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn-promo {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 6px;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
}
.btn-promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,235,0,0.3);
  color: var(--bg);
}

/* ──────────────────────────────────────────
   FEATURES STRIP
────────────────────────────────────────── */
.features-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.feature-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,235,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { fill: var(--yellow); }
.feature-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.feature-value {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ──────────────────────────────────────────
   PAYMENT LOGOS
────────────────────────────────────────── */
.payment-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg2);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.payment-row img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.15s;
}
.payment-row img:hover { opacity: 1; }

/* ──────────────────────────────────────────
   SEO ARTICLE BLOCK
────────────────────────────────────────── */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}
.seo-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* Article typography */
.seo-article h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.seo-article h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--yellow);
}
.seo-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 8px;
}
.seo-article p {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.97rem;
}
.seo-article ul, .seo-article ol {
  margin: 12px 0 14px 20px;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
}
.seo-article li { margin-bottom: 6px; }
.seo-article strong { color: var(--white); }

/* SEO tables – responsive */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
  table-layout: fixed;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-article th {
  background: var(--bg3);
  color: var(--yellow);
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
  white-space: normal;
  overflow-wrap: anywhere;
}
.seo-article td {
  padding: 9px 12px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-article tr:nth-child(even) td { background: rgba(30,33,54,0.4); }
.seo-article tr:hover td { background: rgba(255,235,0,0.04); }

/* ──────────────────────────────────────────
   FAQ ACCORDION
────────────────────────────────────────── */
.faq-block {
  margin-top: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--bg3);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  font-size: 0.97rem;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { color: var(--yellow); }
.faq-q .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q .faq-icon svg { fill: currentColor; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 2px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-rg {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}
.rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(213,0,0,0.15);
  border: 1px solid rgba(213,0,0,0.35);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-bright);
  margin-bottom: 6px;
}

/* ──────────────────────────────────────────
   INNER PAGE HERO (non-index)
────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(30,33,54,0.8) 100%);
  border-bottom: 2px solid var(--yellow);
  padding: 36px 24px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  /* Hide desktop elements */
  .desktop-nav { display: none; }
  .header-right { display: none; }
  /* Show burger */
  .burger { display: flex; }

  .hero-content { padding: 40px 20px; }
  .section { padding: 40px 16px; }
  .seo-section { padding: 40px 16px; }
  .page-hero { padding: 28px 16px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .hero { min-height: 360px; }
  .hero-title { font-size: 1.7rem; }
  .hero-content { padding: 32px 16px; }

  .game-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-rg { text-align: left; }

  .stats-bar { gap: 16px; }
  .stats-bar .stat-sep { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
}

@media (max-width: 560px) {
  .seo-article th, .seo-article td {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hero-cta-row { flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }

  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* ── Neon glow effects ── */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 8px var(--yellow), 0 0 20px rgba(255,235,0,0.3); }
  50%       { text-shadow: 0 0 16px var(--yellow), 0 0 40px rgba(255,235,0,0.5); }
}
.neon-text {
  animation: neonPulse 2.5s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }
