/* =====================================================
   BIG FAT MODS – Main Stylesheet
   Theme: Industrial / Gritty Survival – Dark
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --bg:         #080808;
  --bg-2:       #101010;
  --bg-3:       #181818;
  --bg-4:       #202020;
  --border:     #2a2a2a;
  --gold:       #c8a84b;
  --gold-dark:  #9c7e32;
  --red:        #9b1c1c;
  --red-bright: #dc2626;
  --text:       #ddd5c4;
  --text-muted: #888;
  --text-dim:   #555;
  --white:      #f0ebe0;
  --nav-h:      64px;
  --radius:     3px;
  --transition: 200ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
ul { list-style: none; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -40px; left: 6px;
  background: var(--gold); color: #000;
  padding: 6px 14px; border-radius: var(--radius);
  font-weight: 700; z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 6px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--white); border-color: var(--white); color: #000; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-discord {
  background: #5865F2;
  color: #fff;
  border-color: #5865F2;
}
.btn-discord:hover { background: #4752C4; border-color: #4752C4; color: #fff; }
.btn-danger {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-danger:hover { background: var(--red-bright); border-color: var(--red-bright); }
.btn-sm { padding: 8px 18px; font-size: .9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.15rem; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,8,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
}
.logo-fat  { color: var(--text-muted); }
.logo-mods { color: var(--gold); }
.logo:hover { color: var(--white); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 12px;
}
.primary-nav ul a {
  display: block;
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.primary-nav ul a:hover { color: var(--gold); background: rgba(200,168,75,.08); }
.nav-verify { color: #f59e0b !important; }
.nav-verify:hover { color: var(--white) !important; background: rgba(245,158,11,.12) !important; }
.nav-store { color: var(--gold) !important; }

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

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0) 60%, var(--bg) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,.012) 2px,
      rgba(255,255,255,.012) 4px
    ),
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,168,75,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(155,28,28,.06) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 { color: var(--white); margin-bottom: 1.2rem; max-width: 820px; }
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2.5rem 0;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Cards ── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: rgba(200,168,75,.35); transform: translateY(-2px); }
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,75,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── Warning / Alert Blocks ── */
.alert-imposter {
  background: rgba(155,28,28,.12);
  border: 1px solid rgba(155,28,28,.5);
  border-left: 4px solid var(--red-bright);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.alert-imposter h2, .alert-imposter h3 { color: #f87171; }

.callout-verify {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red-bright);
  border-radius: var(--radius);
  padding: 40px;
}

/* ── Server Cards ── */
.server-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.server-card:hover { border-color: rgba(200,168,75,.4); }
.server-card-header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.server-card-header h3 { font-size: 1.2rem; margin: 0; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-pvp  { background: rgba(155,28,28,.3); color: #f87171; border: 1px solid rgba(155,28,28,.5); }
.badge-pve  { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.badge-hard { background: rgba(200,168,75,.15); color: var(--gold); border: 1px solid rgba(200,168,75,.3); }
.badge-xbox { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.badge-ps   { background: rgba(59,130,246,.15); color: #60a5fa; border: 1px solid rgba(59,130,246,.3); }
.badge-pc   { background: rgba(168,85,247,.15); color: #c084fc; border: 1px solid rgba(168,85,247,.3); }

.server-card-body { padding: 20px; }
.server-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.server-meta-item label {
  display: block;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.server-meta-item span { font-weight: 600; color: var(--text); font-size: .95rem; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: rgba(200,168,75,.4); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200,168,75,.12);
}
.pricing-card-header {
  background: var(--bg-3);
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-card-header { background: rgba(200,168,75,.08); }
.pricing-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.pricing-price span { font-size: 1.2rem; color: var(--text-muted); }
.pricing-card-body { padding: 24px; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .03em;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(200,168,75,.06); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: .98rem;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ── Forms ── */
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 130px; }
.honeypot { display: none !important; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-msg.success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.form-msg.error   { background: rgba(155,28,28,.15); border: 1px solid rgba(155,28,28,.4); color: #f87171; }

/* ── Verify Page ── */
.verify-checklist { display: flex; flex-direction: column; gap: 12px; }
.verify-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.verify-checklist li .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: .9rem;
  margin-top: 2px;
}
.verify-checklist li .check-text strong { color: var(--white); display: block; margin-bottom: 2px; }
.verify-checklist li .check-text small { color: var(--text-muted); font-size: .9rem; }

/* ── Verify Bar (sitewide) ── */
.verify-bar {
  background: rgba(155,28,28,.15);
  border-top: 1px solid rgba(155,28,28,.4);
  border-bottom: 1px solid rgba(155,28,28,.4);
  padding: 12px 0;
  font-size: .9rem;
  color: #f87171;
  text-align: center;
}
.verify-bar a { color: #fbbf24; font-weight: 700; }
.verify-bar a:hover { color: var(--white); }

/* ── Blog/Updates ── */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.post-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.post-card:hover { border-color: rgba(200,168,75,.35); transform: translateY(-2px); }
.post-card-thumb {
  height: 120px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.post-card-body { padding: 20px; }
.post-date {
  font-size: .78rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.post-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.post-card-body p { font-size: .9rem; color: var(--text-muted); }

/* ── Platform Sections ── */
.platform-section { margin-bottom: 3rem; }
.platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── SEO Landing Pages ── */
.landing-content { max-width: 820px; }
.landing-content h2 { margin: 2rem 0 .8rem; }
.landing-content h3 { margin: 1.5rem 0 .6rem; color: var(--gold); font-size: 1.3rem; }
.landing-content p  { color: var(--text-muted); }
.landing-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.landing-content ul li { color: var(--text-muted); margin-bottom: .4rem; }
.landing-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 2rem 0; }
.avoid-block {
  background: rgba(155,28,28,.1);
  border: 1px solid rgba(155,28,28,.4);
  border-left: 4px solid var(--red-bright);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 2rem 0;
}
.avoid-block h3 { color: #f87171; font-size: 1.1rem; margin-bottom: .5rem; }
.avoid-block p  { color: #fca5a5; margin: 0; font-size: .95rem; }

/* ── Legal ── */
.legal-content { max-width: 760px; }
.legal-content h2 { margin: 2rem 0 .8rem; font-size: 1.6rem; }
.legal-content h3 { margin: 1.4rem 0 .5rem; font-size: 1.2rem; color: var(--gold); }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: .8rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }

/* ── Site Footer ── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 12px 0 20px;
  max-width: 280px;
}
.footer-brand .logo { margin-bottom: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a { color: var(--text-muted); transition: color var(--transition); }
.social-links a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--text-muted); font-size: .9rem; }
.footer-col ul a:hover { color: var(--white); }
.warn-link { color: #f59e0b !important; }
.warn-link:hover { color: var(--white) !important; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: .82rem;
  color: var(--text-dim);
  margin: 3px 0;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
.footer-verify-note strong { color: #f87171; }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,168,75,.05) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: .8rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: .82rem;
  color: var(--text-dim);
  letter-spacing: .05em;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-dim); }

/* ── Utility ── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-red    { color: #f87171; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .hamburger { display: flex; }

  .primary-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
    gap: 4px;
  }
  .primary-nav ul a {
    font-size: 1.4rem;
    padding: 10px 14px;
    display: block;
    width: 100%;
  }
  .nav-discord { width: 100%; justify-content: center; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .server-meta { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .callout-verify { padding: 24px; }
  .landing-ctas { flex-direction: column; }
  .landing-ctas .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
}
