/* ===================== Tax Evasion SMP — Stylesheet ===================== */

:root {
  --black: #050604;
  --bg: #0a0c0a;
  --bg-alt: #0d100d;
  --gray-900: #14170f;
  --gray-800: #1b1f18;
  --gray-700: #2a2f26;
  --gray-600: #454b3f;
  --emerald: #10b981;
  --emerald-bright: #34e39a;
  --emerald-dim: #0c7a57;
  --gold: #e6c05c;
  --gold-bright: #ffdd85;
  --white: #f5f6f2;
  --muted: #9aa398;
  --muted-2: #6c766a;

  --font-display: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-emerald: 0 0 30px rgba(16, 185, 129, 0.35);
  --shadow-gold: 0 0 30px rgba(230, 192, 92, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--emerald);
  color: var(--black);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.text-gradient {
  background: linear-gradient(90deg, var(--emerald-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.section { position: relative; padding: 120px 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.01em; }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 0.98rem; }

/* ===================== Loading Screen ===================== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(circle at 50% 40%, #0e1710 0%, #060705 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }
.loader-logo { display: flex; flex-direction: column; align-items: center; gap: 18px; }

.loader-block {
  width: 128px;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 0 18px rgba(16, 185, 129, 0.45));
  animation: badgePulse 1.8s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 18px rgba(16, 185, 129, 0.45)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.7)); }
}

.loader-logo h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--white);
}
.loader-logo h1 span { color: var(--emerald-bright); }

.loader-bar {
  width: 220px;
  height: 4px;
  background: var(--gray-800);
  border-radius: 4px;
  margin-top: 28px;
  overflow: hidden;
}
.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 4px;
  animation: loaderFill 1.6s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ===================== Custom Cursor ===================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--emerald-bright);
  box-shadow: 0 0 8px var(--emerald-bright);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s;
}
.cursor-ring.cursor-hover {
  width: 52px; height: 52px;
  border-color: var(--gold);
}

/* ===================== Particles ===================== */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ===================== Navbar ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(8, 10, 8, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.nav-logo .accent { color: var(--emerald-bright); margin-left: 4px; }
.logo-icon {
  width: 30px; height: 30px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 0 14px rgba(16,185,129,0.5);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--emerald-bright), var(--gold));
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active-link { color: var(--white); }
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dim));
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(16,185,129,0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 26px rgba(16,185,129,0.55); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 1100;
}
.hamburger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.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 ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 15%, rgba(16,185,129,0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(230,192,92,0.10), transparent 60%),
    linear-gradient(180deg, #070907 0%, #0a0c0a 55%, #0a0c0a 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: floatGlow 10s ease-in-out infinite;
}
.glow-emerald { width: 480px; height: 480px; background: var(--emerald); top: -120px; left: -100px; }
.glow-gold { width: 380px; height: 380px; background: var(--gold); bottom: -80px; right: -60px; animation-delay: -4s; }
@keyframes floatGlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-skyline {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 45%;
  opacity: 0.8;
}

.floating-cubes { position: absolute; inset: 0; }
.cube {
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(16,185,129,0.5), rgba(230,192,92,0.25));
  box-shadow: 0 0 16px rgba(16,185,129,0.25);
  animation: cubeFloat linear infinite;
  opacity: 0.5;
}
@keyframes cubeFloat {
  0% { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-tagline {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.35);
  background: rgba(16,185,129,0.08);
  color: var(--emerald-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 26px;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(16,185,129,0); }
  50% { box-shadow: 0 0 18px rgba(16,185,129,0.35); }
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--white);
  text-shadow: 0 0 60px rgba(16,185,129,0.25);
}

.hero-subtitle {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.hero-apply-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  overflow: hidden;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dim));
  color: #04120b;
  box-shadow: 0 0 24px rgba(16,185,129,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 34px rgba(16,185,129,0.6); }

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(230,192,92,0.4);
  box-shadow: 0 0 0 rgba(230,192,92,0);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(230,192,92,0.3);
  background: rgba(230,192,92,0.08);
}

.btn-lg { padding: 18px 36px; font-size: 1.02rem; }

/* Status card */
.status-card {
  margin: 48px auto 0;
  max-width: 420px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: rgba(20, 24, 18, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.status-row { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted-2);
  transition: background 0.3s, box-shadow 0.3s;
}
.status-dot.online { background: var(--emerald-bright); box-shadow: 0 0 10px var(--emerald-bright); animation: dotPulse 1.6s infinite; }
.status-dot.offline { background: #e5484d; box-shadow: 0 0 10px #e5484d; }
@keyframes dotPulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.status-label { font-size: 0.92rem; font-weight: 600; color: var(--white); }

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.status-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.status-item-value { font-weight: 700; font-size: 1.02rem; color: var(--gold-bright); }
.status-item-key { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.status-ip {
  text-align: center;
  margin-top: 16px;
  font-family: 'Consolas', monospace;
  letter-spacing: 0.04em;
  color: var(--emerald-bright);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.7;
}
.scroll-indicator span {
  width: 22px; height: 36px;
  border: 2px solid var(--muted);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--emerald-bright);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{ opacity:1; transform: translate(-50%,0);} 60%{opacity:0;} 100%{ opacity:0; transform: translate(-50%,10px);} }
.scroll-indicator p { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

/* ===================== Reveal Animations ===================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-content.reveal { transition-delay: 0.1s; }

/* ===================== Page Header (Owner / Donate) ===================== */
.page-header { padding-top: 160px; padding-bottom: 40px; }
.owner-hero { text-align: center; max-width: 700px; margin: 0 auto; }
.owner-avatar {
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(16,185,129,0.35);
}
.page-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.owner-tagline { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }

.owner-quote-section { padding-top: 0; padding-bottom: 40px; }
.owner-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-left: none;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(230,192,92,0.2);
}
.owner-quote p {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.owner-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

/* ===================== About ===================== */
.about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  color: var(--muted);
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--emerald-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===================== Cards ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.tilt-card, .rule-card {
  position: relative;
  padding: 34px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}

.feature-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(16,185,129,0.5));
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

.feature-card:hover, .rule-card:hover {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 14px 40px rgba(16,185,129,0.15), 0 0 0 1px rgba(16,185,129,0.15) inset;
}

.rules-grid { grid-template-columns: repeat(3, 1fr); }
.rule-card {
  text-align: center;
  border-color: rgba(230,192,92,0.18);
}
.rule-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(230,192,92,0.18), 0 0 0 1px rgba(230,192,92,0.2) inset;
}
.rule-num {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-bright);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 700;
}
.rule-card h3 { font-size: 1.15rem; font-weight: 700; }

/* ===================== Gallery ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.gallery-item .gallery-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-art { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(4,5,4,0.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-frame {
  width: min(80vw, 820px);
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox.open .lightbox-frame { transform: scale(1); }
.lightbox-frame > div { width: 100%; height: 100%; }

.lightbox-close, .lightbox-nav {
  position: absolute;
  color: var(--white);
  font-size: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s, border-color .25s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(16,185,129,0.18); border-color: var(--emerald); transform: scale(1.06); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ===================== Discord ===================== */
.discord-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 480px;
  margin: 64px auto 0;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.discord-card.loaded { opacity: 1; }
.discord-card:hover {
  border-color: rgba(88,101,242,0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(88,101,242,0.18);
}
.discord-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(16,185,129,0.35);
}
.discord-card-body { flex: 1; min-width: 0; }
.discord-card-name { font-weight: 800; font-size: 1.1rem; display: block; margin-bottom: 6px; }
.discord-card-stats { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.discord-card-stat { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--muted); }
.discord-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 8px var(--emerald-bright);
  animation: dotPulse 1.6s infinite;
}
.discord-card-cta {
  font-weight: 700;
  color: var(--emerald-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===================== FAQ ===================== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(16,185,129,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}
.faq-toggle {
  font-size: 1.3rem;
  color: var(--emerald-bright);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 22px; }

/* ===================== Join CTA ===================== */
.join-cta { text-align: center; }
.join-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 14px; }
.join-inner p { color: var(--muted); margin-bottom: 10px; }

/* ===================== Footer ===================== */
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 56px; position: relative; z-index: 1; background: #070806; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--muted-2); font-size: 0.85rem; margin-top: 8px; }
.footer-actions { display: flex; gap: 14px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, transform 0.25s, color 0.25s;
  color: var(--muted);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--emerald); color: var(--emerald-bright); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.82rem;
}

/* ===================== Scroll to top ===================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dim));
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(16,185,129,0.4);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(7, 9, 7, 0.98);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }

  .card-grid, .rules-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 34px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .status-grid { gap: 4px; }
}

@media (min-width: 1800px) {
  .container { max-width: 1500px; }
  .hero-content { max-width: 940px; }
}
