/* ==========================================================================
   Never Miss — Tasarım Sistemi v2  ·  RETRO-FUTURISM / SYNTHWAVE
   Neon glow · CRT scanlines · cyber grid · Russo One + Chakra Petch
   (ui-ux-pro-max tavsiyesi). Sınıf adları korundu; sadece görsel dil değişti.
   ========================================================================== */

:root {
  /* Renkler — synthwave duotone (neon cyan + neon magenta) koyu lacivert üzerine */
  --bg: #08081a;
  --bg-2: #0c0c26;
  --surface: #14132e;
  --surface-2: #1d1b40;
  --border: #2a2752;
  --border-glow: #3c3a82;
  --border-soft: rgba(180, 190, 255, .07);

  --text: #eaf0ff;
  --text-dim: #b3bbe4;
  --text-muted: #828ac0;

  --accent: #2de2ff;          /* neon cyan */
  --accent-2: #ff2e9a;        /* neon magenta */
  --accent-glow: rgba(45, 226, 255, .42);
  --accent-2-glow: rgba(255, 46, 154, .40);
  --green: #2bf5a0;           /* neon online */
  --green-glow: rgba(43, 245, 160, .32);
  --red: #ff3b6b;
  --gold: #ffd23f;
  --ink: #04111a;             /* neon üzerine koyu metin */

  /* Tipografi */
  --font-display: 'Russo One', 'Segoe UI', sans-serif;
  --font-body: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;

  /* Ölçü — daha keskin/teknik köşeler */
  --maxw: 1200px;
  --radius: 12px;
  --radius-sm: 7px;
  --radius-lg: 18px;
  --gap: 24px;

  --shadow: 0 14px 44px rgba(0, 0, 0, .55);
  --shadow-glow: 0 0 0 1px var(--border-glow), 0 0 34px rgba(45, 226, 255, .2);
  --trans: .25s cubic-bezier(.4, 0, .2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* Arka plan: neon glow + cyber grid */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(820px 480px at 86% -8%, rgba(45, 226, 255, .15), transparent 60%),
    radial-gradient(720px 520px at 4% 6%, rgba(255, 46, 154, .13), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0, 0, 0, .10) 2px 3px),
    linear-gradient(rgba(45, 226, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 46, 154, .04) 1px, transparent 1px);
  background-size: 100% 3px, 50px 50px, 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 80%);
}

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 15px; margin-bottom: 16px;
  border: 1px solid var(--accent-glow);
  border-radius: 100px;
  background: rgba(45, 226, 255, .07);
  box-shadow: 0 0 18px rgba(45, 226, 255, .14), inset 0 0 14px rgba(45, 226, 255, .06);
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: .5px; }
h2.section-title { font-size: clamp(30px, 4.6vw, 46px); text-transform: uppercase; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 17px; }
.text-grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px rgba(45, 226, 255, .35));
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 15px/1 var(--font-body);
  padding: 14px 26px; border-radius: var(--radius-sm);
  transition: var(--trans); white-space: nowrap; letter-spacing: .6px;
  text-transform: uppercase;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(100deg, var(--accent), #6df0ff);
  color: var(--ink); font-weight: 700;
  box-shadow: 0 0 24px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 38px var(--accent-glow), 0 10px 24px rgba(0,0,0,.4); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border-glow); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 0 22px rgba(45,226,255,.18); }
.btn-discord { background: #5865F2; color: #fff; box-shadow: 0 0 22px rgba(88,101,242,.4); }
.btn-discord:hover { transform: translateY(-2px); background: #4954d6; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 26, .78);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(45, 226, 255, .08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 21px; letter-spacing: 1.5px; text-transform: uppercase; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: var(--ink); font-size: 18px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.brand b { color: var(--accent); font-weight: 400; text-shadow: 0 0 16px var(--accent-glow); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 500; font-size: 14.5px; color: var(--text-dim);
  padding: 9px 14px; border-radius: 7px; transition: var(--trans); letter-spacing: .3px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border-glow); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Dil seçici */
.lang-switch { display: flex; gap: 3px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 3px; }
.lang-switch button { padding: 6px 10px; border-radius: 6px; font-weight: 700; font-size: 13px; color: var(--text-muted); transition: var(--trans); }
.lang-switch button.active { background: var(--accent); color: var(--ink); }
.lang-select {
  appearance: none; -webkit-appearance: none;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23828ac0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 9px center;
  border: 1px solid var(--border-glow); border-radius: 8px;
  color: var(--text); font-family: inherit; font-weight: 600; font-size: 13px;
  padding: 8px 28px 8px 12px; cursor: pointer; transition: var(--trans); letter-spacing: .5px;
}
.lang-select:hover { border-color: var(--accent); box-shadow: 0 0 16px rgba(45,226,255,.18); }
.lang-select option { background: var(--bg-2); color: var(--text); font-weight: 600; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--trans); }

/* Hero */
.hero { padding: 92px 0 72px; position: relative; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: .5px;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 24px;
  background: var(--green-glow); border: 1px solid rgba(43,245,160,.35);
  box-shadow: 0 0 18px rgba(43,245,160,.18);
}
.hero h1 { font-size: clamp(40px, 7.5vw, 80px); text-transform: uppercase; letter-spacing: 1.5px; }
.hero h1 span { display: block; }
.hero h1 .text-grad { text-shadow: 0 0 40px rgba(45,226,255,.25); }
.hero-sub { max-width: 640px; margin: 22px auto 34px; color: var(--text-dim); font-size: clamp(16px, 2.2vw, 19px); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; justify-content: center; flex-wrap: wrap; margin-top: 60px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-display); font-size: 42px; color: var(--accent); line-height: 1; text-shadow: 0 0 22px var(--accent-glow); font-variant-numeric: tabular-nums; }
.hero-stat .lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 10px; }

/* Live status pill */
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 var(--green-glow), 0 0 10px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--green-glow), 0 0 10px var(--green); } 70% { box-shadow: 0 0 0 9px transparent, 0 0 10px var(--green); } 100% { box-shadow: 0 0 0 0 transparent, 0 0 10px var(--green); } }

/* Server cards */
.servers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; }
.server-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: var(--trans); position: relative; overflow: hidden;
}
.server-card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 14px var(--accent-glow); }
.server-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-glow); }
.server-card.offline::before { background: var(--red); box-shadow: 0 0 14px rgba(255,59,107,.4); }
.sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sc-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1.4px; }
.sc-status.off { color: var(--red); }
.sc-status.off .live-dot { background: var(--red); animation: none; box-shadow: 0 0 10px var(--red); }
.sc-name { font-family: var(--font-display); font-size: 21px; margin-bottom: 4px; letter-spacing: .5px; }
.sc-map { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.sc-bar { height: 9px; border-radius: 100px; background: var(--surface-2); overflow: hidden; margin-bottom: 8px; box-shadow: inset 0 0 0 1px var(--border); }
.sc-bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--green), #8af7c6); box-shadow: 0 0 12px var(--green-glow); transition: width .8s ease; }
.sc-players { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.sc-players b { color: var(--text); }
.sc-actions { display: flex; gap: 10px; }
.sc-actions .btn { flex: 1; justify-content: center; padding: 12px; font-size: 13px; }
.copy-ip { font-family: 'Chakra Petch', monospace; font-size: 13px; letter-spacing: .5px; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: var(--trans);
}
.feature:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 0 26px rgba(45,226,255,.14); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(45,226,255,.1); color: var(--accent); margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px var(--accent-glow), 0 0 18px rgba(45,226,255,.12);
  font-size: 24px;
}
.feature h3 { font-size: 19px; margin-bottom: 9px; letter-spacing: .4px; }
.feature p { color: var(--text-dim); font-size: 15px; }

/* Store / VIP */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; transition: var(--trans); position: relative;
}
.plan:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-glow); }
.plan.featured { border-color: var(--accent-2); background: linear-gradient(180deg, rgba(255,46,154,.09), var(--surface)); box-shadow: 0 0 30px var(--accent-2-glow); }
.plan.featured::after {
  content: "POPULAR"; position: absolute; top: 18px; right: 18px;
  font: 700 11px/1 var(--font-body); letter-spacing: 1.5px; color: var(--ink);
  background: var(--accent-2); padding: 6px 11px; border-radius: 100px; box-shadow: 0 0 16px var(--accent-2-glow);
}
.plan .tier { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 1.5px; }
.plan .price { font-family: var(--font-display); font-size: 44px; margin: 14px 0 4px; color: var(--accent); text-shadow: 0 0 22px var(--accent-glow); font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 16px; color: var(--text-muted); font-family: var(--font-body); text-shadow: none; }
.plan ul { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; gap: 10px; font-size: 15px; color: var(--text-dim); align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan .btn { margin-top: auto; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.post-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--trans); display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 0 24px rgba(45,226,255,.14); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--surface-2), var(--bg-2)); position: relative; display: grid; place-items: center; font-family: var(--font-display); font-size: 56px; color: rgba(45,226,255,.28); text-shadow: 0 0 24px rgba(45,226,255,.2); }
.post-tag { position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); background: rgba(8,8,26,.82); padding: 5px 11px; border-radius: 100px; border: 1px solid var(--accent-glow); }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-body time { font-size: 13px; color: var(--text-muted); }
.post-body h3 { font-size: 19px; margin: 8px 0 10px; line-height: 1.3; letter-spacing: .3px; }
.post-body p { color: var(--text-dim); font-size: 15px; flex: 1; }
.post-body .read { color: var(--accent); font-weight: 600; font-size: 14px; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 16px; line-height: 1.15; }
.article .meta { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.article h2 { font-size: 25px; margin: 36px 0 14px; letter-spacing: .4px; }
.article h3 { font-size: 20px; margin: 28px 0 10px; }
.article p { color: var(--text-dim); margin-bottom: 18px; }
.article ul.bullets { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 10px; }
.article ul.bullets li { color: var(--text-dim); padding-left: 24px; position: relative; }
.article ul.bullets li::before { content: "▹"; position: absolute; left: 0; color: var(--accent); }
.article a.inline { color: var(--accent); border-bottom: 1px solid var(--accent-glow); }
.article code { font-family: 'Chakra Petch', monospace; background: var(--surface-2); border: 1px solid var(--border); padding: 2px 8px; border-radius: 5px; color: var(--accent); font-size: .92em; }
.article em { color: var(--text); font-style: normal; font-weight: 600; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--trans); }
.faq-item.open { border-color: var(--border-glow); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-weight: 600; font-size: 16px; color: var(--text); letter-spacing: .3px; }
.faq-q .chev { transition: var(--trans); color: var(--accent); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a div { padding: 0 22px 20px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 360px; }

/* Page hero (alt sayfalar) */
.page-hero { padding: 64px 0 36px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 6vw, 54px); text-transform: uppercase; letter-spacing: 1px; }
.page-hero p { color: var(--text-dim); margin-top: 14px; font-size: 18px; max-width: 580px; margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(100deg, rgba(45,226,255,.12), rgba(255,46,154,.1)); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 50px; text-align: center; box-shadow: inset 0 0 40px rgba(45,226,255,.06); }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; }
.cta-band p { color: var(--text-dim); margin: 12px auto 26px; max-width: 520px; }
.cta-band .hero-cta { margin-top: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--border-soft); padding: 56px 0 30px; background: var(--bg-2); box-shadow: 0 -1px 0 rgba(45,226,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--text); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 5px 0; transition: var(--trans); }
.footer-col a:hover { color: var(--accent); }
.footer-about p { color: var(--text-muted); font-size: 14px; margin: 14px 0; max-width: 320px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); transition: var(--trans); }
.social a:hover { color: #fff; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 0 18px rgba(45,226,255,.2); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; }

/* Toast */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--surface-2); border: 1px solid var(--accent); color: #fff; padding: 13px 22px; border-radius: 100px; font-weight: 600; font-size: 14px; box-shadow: 0 0 26px var(--accent-glow); z-index: 200; transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; align-items: center; gap: 9px; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* Reveal anim */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 12px; transform: translateY(-120%); transition: var(--trans); }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px; border-radius: 8px; }
  .burger { display: flex; }
  .desktop-cta { display: none; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .cta-band { padding: 32px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===== Oyun Modu Kartları ===== */
.modes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.mode-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: var(--trans); overflow: hidden;
  display: flex; flex-direction: column;
}
.mode-card .m-ic { font-size: 34px; margin-bottom: 14px; }
.mode-card h3 { font-size: 22px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; letter-spacing: .4px; }
.mode-card p { color: var(--text-dim); font-size: 15px; flex: 1; margin-bottom: 18px; }
.mode-badge { font: 600 11px/1 var(--font-body); letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.mode-badge.active { color: var(--green); background: var(--green-glow); border: 1px solid rgba(43,245,160,.35); }
.mode-badge.soon { color: var(--gold); background: rgba(255,210,63,.1); border: 1px solid rgba(255,210,63,.3); }
.mode-card.active { border-color: rgba(43,245,160,.35); }
.mode-card.active:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 34px var(--green-glow); }
.mode-card.soon { opacity: .72; }
.mode-card.soon::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.015) 12px, rgba(255,255,255,.015) 24px);
  pointer-events: none;
}
.mode-card.soon:hover { opacity: .9; transform: translateY(-3px); border-color: var(--gold); }
.mode-card .btn { width: 100%; justify-content: center; }
.btn-soon { background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border); cursor: pointer; }
.btn-soon:hover { color: var(--gold); border-color: var(--gold); }
