/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon-cyan: #00f5ff;
  --neon-purple: #b400ff;
  --neon-green: #39ff14;
  --bg-dark: #0a0a0f;
  --bg-card: #12121c;
  --bg-nav: #0d0d18;
  --text-main: #e8e8f0;
  --text-muted: #8888aa;
  --border: #1e1e35;
  --accent: #00f5ff;
  --font-head: 'Rajdhani', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --radius: 8px;
  --shadow-neon: 0 0 18px rgba(0,245,255,0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--neon-cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .03em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title h2 { color: #fff; }
.section-title h2 span { color: var(--neon-cyan); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  margin: 14px auto 0;
  border-radius: 2px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,245,255,0.4);
  color: #000;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
}
.btn-outline:hover {
  background: var(--neon-cyan);
  color: #000;
  transform: translateY(-2px);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-action { background: rgba(255,60,60,.2); color: #ff6060; border: 1px solid rgba(255,60,60,.4); }
.badge-rpg { background: rgba(180,0,255,.2); color: #d060ff; border: 1px solid rgba(180,0,255,.4); }
.badge-strategy { background: rgba(0,245,255,.15); color: var(--neon-cyan); border: 1px solid rgba(0,245,255,.4); }
.badge-esports { background: rgba(57,255,20,.15); color: var(--neon-green); border: 1px solid rgba(57,255,20,.4); }
.badge-fps { background: rgba(255,165,0,.15); color: #ffaa40; border: 1px solid rgba(255,165,0,.4); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 6px; }
.nav-logo span { color: var(--neon-cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--neon-cyan);
  background: rgba(0,245,255,.08);
}
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.7) 0%, rgba(0,245,255,.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0,245,255,.12);
  border: 1px solid rgba(0,245,255,.35);
  border-radius: 20px;
  color: var(--neon-cyan);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--neon-cyan); }
.hero p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: block;
}
.hero-stat .lbl { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon);
  border-color: rgba(0,245,255,.3);
}
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .8rem;
  color: var(--text-muted);
}
.card-body h3 { color: #fff; margin-bottom: 10px; font-size: 1.15rem; }
.card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}
.rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #ffcc00; font-size: .9rem; }
.rating-num { font-weight: 700; color: #fff; font-size: .9rem; }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ===== FEATURED SECTION ===== */
.featured-section { background: var(--bg-dark); }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 50px;
}
.featured-card .fc-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.featured-card .fc-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-label {
  color: var(--neon-cyan);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.featured-card h2 { color: #fff; margin-bottom: 16px; }
.featured-card p { color: var(--text-muted); margin-bottom: 24px; }
.score-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,245,255,.08);
  border: 1px solid rgba(0,245,255,.25);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 28px;
}
.score-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1;
}
.score-label { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .fc-img img { min-height: 240px; }
  .featured-card .fc-body { padding: 28px 24px; }
}

/* ===== TOURNAMENTS ===== */
.tournaments-section { background: #0c0c18; }
.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.tournament-card:hover {
  border-color: rgba(57,255,20,.3);
  box-shadow: 0 0 18px rgba(57,255,20,.1);
}
.t-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.t-header h3 { color: #fff; font-size: 1.1rem; }
.t-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.t-status.live { background: rgba(255,60,60,.2); color: #ff6060; border: 1px solid rgba(255,60,60,.4); }
.t-status.upcoming { background: rgba(57,255,20,.15); color: var(--neon-green); border: 1px solid rgba(57,255,20,.4); }
.t-status.completed { background: rgba(136,136,170,.15); color: var(--text-muted); border: 1px solid rgba(136,136,170,.3); }
.t-info { display: flex; flex-wrap: wrap; gap: 16px; }
.t-info-item { display: flex; flex-direction: column; gap: 2px; }
.t-info-item .ti-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.t-info-item .ti-val { font-size: .9rem; color: #fff; font-weight: 600; }
.t-img { border-radius: 8px; overflow: hidden; }
.t-img img { width: 100%; height: 160px; object-fit: cover; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #0d0d20 0%, #12122a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text h2 { color: #fff; margin-bottom: 14px; }
.newsletter-text h2 span { color: var(--neon-cyan); }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.form-control {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-main);
  padding: 12px 16px;
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,.12);
}
.form-control::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success {
  display: none;
  background: rgba(57,255,20,.1);
  border: 1px solid rgba(57,255,20,.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--neon-green);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { color: #fff; margin-bottom: 16px; }
.contact-info h2 span { color: var(--neon-cyan); }
.contact-info p { color: var(--text-muted); margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,245,255,.1);
  border: 1px solid rgba(0,245,255,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-text .ci-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.contact-item-text .ci-val { color: #fff; font-weight: 500; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-wrap h3 { color: #fff; margin-bottom: 24px; }
textarea.form-control { resize: vertical; min-height: 120px; }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: #0c0c18; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { color: #fff; margin-bottom: 16px; }
.about-text h2 span { color: var(--neon-cyan); }
.about-text p { color: var(--text-muted); margin-bottom: 18px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.af-icon {
  width: 36px; height: 36px;
  background: rgba(0,245,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
  font-size: 1rem;
}
.af-text { color: var(--text-main); font-size: .95rem; }
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img img { height: 260px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--neon-cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: .85rem; }
.footer-bottom-links a:hover { color: var(--neon-cyan); }
.disclaimer {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,13,24,0.97);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { color: var(--text-muted); font-size: .88rem; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--neon-cyan); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0a0a0f 0%, #0d0d20 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header h1 span { color: var(--neon-cyan); }
.page-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--neon-cyan); }
.breadcrumb span { color: var(--neon-cyan); }

/* ===== REVIEWS PAGE ===== */
.reviews-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(0,245,255,.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ===== TOURNAMENTS PAGE ===== */
.tournament-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color .25s;
}
.tournament-full-card:hover { border-color: rgba(0,245,255,.3); }
.tfc-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}
.tfc-img img { width: 100%; height: 200px; object-fit: cover; }
.tfc-info { padding: 28px 32px; }
.tfc-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.tfc-info p { color: var(--text-muted); margin-bottom: 18px; font-size: .93rem; }
.tfc-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.tfc-meta-item { display: flex; flex-direction: column; gap: 2px; }
.tfc-meta-item .tm-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.tfc-meta-item .tm-val { font-size: .95rem; color: #fff; font-weight: 600; }
@media (max-width: 768px) {
  .tfc-header { grid-template-columns: 1fr; }
  .tfc-img img { height: 200px; }
  .tfc-info { padding: 20px; }
}

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.policy-content h2 { color: #fff; margin: 36px 0 14px; font-size: 1.4rem; }
.policy-content h3 { color: var(--neon-cyan); margin: 24px 0 10px; font-size: 1.1rem; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 8px; line-height: 1.65; }
.policy-content a { color: var(--neon-cyan); }
.policy-content .last-updated {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,245,255,.08);
  border: 1px solid rgba(0,245,255,.2);
  border-radius: 20px;
  color: var(--neon-cyan);
  font-size: .82rem;
  margin-bottom: 30px;
}
.policy-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
.policy-toc h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { margin-bottom: 8px; }
.policy-toc ol li a { color: var(--neon-cyan); font-size: .9rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 16px; }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta .btn { width: 100%; text-align: center; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.highlight { color: var(--neon-cyan); }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
