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

:root {
  --blue: #3494E6;
  --pink: #EC6EAD;
  --grad: linear-gradient(135deg, #3494E6, #EC6EAD);
  --grad-r: linear-gradient(135deg, #EC6EAD, #3494E6);
  --bg: #0A0A0F;
  --bg2: #111118;
  --bg3: #18181F;
  --text: #E8E8F0;
  --muted: #888899;
  --card: #15151D;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, .rajdhani { font-family: 'Rajdhani', sans-serif; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Space Grotesk', sans-serif; }

/* ===== BACKGROUND ORBS ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 700px; height: 700px; background: rgba(52, 148, 230, 0.1); top: -250px; right: -200px; }
.orb2 { width: 600px; height: 600px; background: rgba(236, 110, 173, 0.08); bottom: -150px; left: -200px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-badge {
  font-size: 0.65rem;
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links li a {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-discord-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-discord-btn:hover { border-color: var(--border-hover); color: var(--text); }

.nav-cta {
  padding: 0.45rem 1.2rem;
  background: var(--grad);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.82; }

/* ===== LAYOUT ===== */
.page-wrap {
  padding-top: 64px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 550px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--grad);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(52, 148, 230, 0.2);
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(52, 148, 230, 0.35); }

.btn-secondary {
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg2); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== STATUS TAGS ===== */
.s-online { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.s-beta   { background: rgba(236,110,173,0.1); color: #EC6EAD; border: 1px solid rgba(236,110,173,0.2); }
.s-soon   { background: rgba(136,136,153,0.08); color: var(--muted); border: 1px solid var(--border); }

.status-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

/* ===== DIVIDERS ===== */
.grad-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,148,230,0.3), rgba(236,110,173,0.3), transparent);
  margin: 0 auto;
  max-width: 1050px;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem 2.5rem;
  background: var(--bg);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer-brand .logo-text { font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 280px; line-height: 1.6; }

.footer-links-col { display: flex; gap: 4rem; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1050px;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 0.78rem; color: var(--muted); }

.footer-online {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ===== HOME: HERO ===== */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.ip-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}

.ip-box:hover { border-color: rgba(52, 148, 230, 0.35); }
.ip-box code {
  font-family: 'Rajdhani', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ip-copy-label { font-size: 0.78rem; color: var(--muted); transition: color 0.2s; }
.ip-hint { font-size: 0.78rem; color: var(--muted); }

/* ===== HOME: STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 6rem;
}

.stat-card { background: var(--card); padding: 2rem 1rem; text-align: center; }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; font-weight: 500; }

/* ===== HOME: MODES PREVIEW ===== */
.modes-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.mode-preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}

.mode-preview-card:hover { border-color: rgba(52, 148, 230, 0.25); transform: translateY(-3px); }

.mode-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--bg3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.mode-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

/* ===== HOME: JOIN BOX ===== */
.join-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.join-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(52,148,230,0.12), transparent 65%);
  pointer-events: none;
}

.join-box h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; }
.join-box p { color: var(--muted); margin-bottom: 2.5rem; }
.join-box .btn-group { justify-content: center; }

/* ===== GAMEMODES PAGE ===== */
.gm-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}

.gm-card:hover { border-color: rgba(52, 148, 230, 0.2); }
.gm-card.reverse { direction: rtl; }
.gm-card.reverse > * { direction: ltr; }

.gm-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.gm-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  text-align: center;
}

.gm-big-emoji { font-size: 6rem; filter: drop-shadow(0 0 40px rgba(52,148,230,0.3)); }
.gm-visual-label { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; opacity: 0.12; letter-spacing: 0.1em; text-transform: uppercase; }

.gm-content { padding: 2.5rem; }
.gm-content h2 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.4rem; }
.gm-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; font-style: italic; }
.gm-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.75rem; }

.gm-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.gm-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.gm-features { display: flex; flex-direction: column; gap: 0.5rem; }
.gm-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.gm-feat::before {
  content: '▸';
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.soon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}

.soon-card::after {
  content: 'COMING SOON';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(136,136,153,0.1);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

.soon-card .soon-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.soon-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.soon-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ===== RANKS PAGE ===== */
.ranks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.rank-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.rank-card:hover { transform: translateY(-4px); }

.rank-card.featured {
  border-color: rgba(236, 110, 173, 0.35);
  background: linear-gradient(160deg, rgba(236,110,173,0.05), var(--card) 50%);
}

.rank-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.rank-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.featured-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  background: rgba(236,110,173,0.15);
  color: #EC6EAD;
  border: 1px solid rgba(236,110,173,0.25);
}

.rank-name { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.rank-price { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.rank-price strong { font-size: 1.4rem; font-weight: 700; font-family: 'Rajdhani', sans-serif; color: var(--text); }

.rank-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.rank-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.rank-perks li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--muted); line-height: 1.4; }

.perk-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: rgba(52,148,230,0.15);
  border: 1px solid rgba(52,148,230,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #3494E6;
  margin-top: 0.1rem;
}

.featured .perk-check { background: rgba(236,110,173,0.15); border-color: rgba(236,110,173,0.25); color: #EC6EAD; }

.rank-btn { margin-top: 1.75rem; width: 100%; padding: 0.75rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; font-family: 'Space Grotesk', sans-serif; cursor: pointer; }
.rank-btn.free { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.rank-btn.pay { background: rgba(52,148,230,0.15); border: 1px solid rgba(52,148,230,0.3); color: #3494E6; transition: background 0.2s; }
.rank-btn.pay:hover { background: rgba(52,148,230,0.25); }
.rank-btn.featured-btn { background: var(--grad); border: none; color: #fff; transition: opacity 0.2s; }
.rank-btn.featured-btn:hover { opacity: 0.85; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  background: transparent;
  border: none;
  color: var(--text);
  width: 100%;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-q:hover { background: var(--bg3); }
.faq-arrow { color: var(--muted); transition: transform 0.25s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

/* ===== RULES PAGE ===== */
.rules-intro {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rules-intro-icon { font-size: 1.5rem; flex-shrink: 0; }
.rules-intro p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.rules-category { margin-bottom: 2.5rem; }

.rules-cat-title {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rule-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 1rem;
}

.rule-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 2rem;
}

.rule-content h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.rule-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.rule-severity {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  margin-top: 0.4rem;
}

.sev-warn { background: rgba(251,191,36,0.1); color: #FBBf24; border: 1px solid rgba(251,191,36,0.2); }
.sev-ban  { background: rgba(239,68,68,0.1);  color: #EF4444;  border: 1px solid rgba(239,68,68,0.2); }
.sev-perm { background: rgba(236,110,173,0.1); color: #EC6EAD; border: 1px solid rgba(236,110,173,0.2); }

/* ===== DISCORD PAGE ===== */
.discord-hero-wrap {
  text-align: center;
  padding: 3rem 2rem 4rem;
  max-width: 600px;
  margin: 0 auto;
}

.discord-hero-wrap .big-logo { font-size: 4rem; margin-bottom: 1.5rem; }

.dc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.dc-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
}

.dc-feature-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.dc-feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.dc-feature p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.discord-join-box {
  background: linear-gradient(135deg, rgba(52,148,230,0.1), rgba(236,110,173,0.1));
  border: 1px solid rgba(52,148,230,0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.discord-join-box h2 { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.discord-join-box p { color: var(--muted); margin-bottom: 2rem; }

.discord-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.dc-role {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.dc-role-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
