@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #0a0e1a;
  --bg-secondary: #111827;
  --accent: #2e86de;
  --accent-hover: #1a6dbe;
  --discord: #5865F2;
  --discord-hover: #4752c4;
  --text: #ffffff;
  --text-muted: #8da2c0;
  --footer-bg: #0f1e3d;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text);
  min-height: 100vh; overflow-x: hidden;
  display: flex; flex-direction: column;
}
body > *:not(#particles-canvas):not(nav):not(.announce-bar):not(footer) { flex-shrink: 0; }
footer { margin-top: auto; }

/* ── PARTICLES ── */
#particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; }
body > *:not(#particles-canvas):not(nav):not(.announce-bar) { position: relative; z-index: 1; }

/* ── ANIMATIONS ── */
@keyframes float      { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-14px)} }
@keyframes float-slow { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(2deg)} }
@keyframes glow-pulse  { 0%,100%{box-shadow:0 0 0 0 rgba(46,134,222,0)} 50%{box-shadow:0 0 18px 4px rgba(46,134,222,0.5)} }
@keyframes glow-discord{ 0%,100%{box-shadow:0 0 0 0 rgba(88,101,242,0)} 50%{box-shadow:0 0 18px 4px rgba(88,101,242,0.45)} }
@keyframes shimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes blink       { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes countUp     { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
@keyframes pulse-dot   { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.5)} 50%{box-shadow:0 0 0 5px rgba(34,197,94,0)} }
@keyframes fadeSlideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
@keyframes toastIn     { from{opacity:0;transform:translate(-50%,12px)} to{opacity:1;transform:translate(-50%,0)} }
@keyframes cd-flip     { 0%{transform:rotateX(0)} 50%{transform:rotateX(-90deg)} 100%{transform:rotateX(0)} }

.float      { animation: float 3.5s ease-in-out infinite; }
.float-slow { animation: float-slow 5s ease-in-out infinite; }
.count-tick { animation: countUp 0.12s ease-out; }
.tw-cursor  { display:inline-block; margin-left:2px; animation:blink 1s step-end infinite; color:var(--accent); font-weight:300; }

/* ── SCROLL REVEAL ── */
.reveal       { opacity:0; transform:translateY(36px); transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible{ opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(-52px); transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(52px); transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-right.visible{ opacity:1; transform:none; }
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}
.reveal-delay-5{transition-delay:.5s}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg,#ffffff 0%,#7ab8f5 50%,#2e86de 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ── ANNOUNCE BAR ── */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #1a3a6a, #2e86de, #5865F2, #2e86de, #1a3a6a);
  background-size: 300% auto;
  animation: shimmer 6s linear infinite;
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announce-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.announce-link {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: color .2s;
}
.announce-link:hover { color: white; }

/* ── NAVBAR ── */
nav {
  position: fixed !important;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 52px;
  background: rgba(13,13,13,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
nav.scrolled { background: rgba(10,14,26,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.06); }

.nav-logo { display:flex; align-items:center; flex-shrink:0; text-decoration:none; }
.nav-logo img { height:34px!important; width:34px!important; max-height:34px!important; max-width:34px!important; object-fit:contain; display:block; }

.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a { text-decoration:none; color:var(--text-muted); font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--text); }

.nav-right { display:flex; align-items:center; gap:10px; }

.nav-support {
  font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-muted); text-decoration:none;
  border:1px solid rgba(255,255,255,0.15); border-radius:7px; padding:5px 12px;
  transition:color .2s,border-color .2s;
}
.nav-support:hover { color:white; border-color:rgba(255,255,255,0.4); }

.nav-discord { display:flex; align-items:center; justify-content:center; width:34px; height:34px; background:var(--discord); border-radius:8px; transition:background .2s,transform .2s; margin-left:6px; }
.nav-discord:hover { background:var(--discord-hover); transform:scale(1.1); }
.nav-discord svg { width:18px; height:18px; fill:white; }

.ip-copy-wrap { position:relative; }

.nav-play {
  display:flex; align-items:center; gap:8px;
  background:var(--accent); color:#fff;
  font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  padding:7px 14px; border-radius:8px; border:none; cursor:pointer;
  text-decoration:none;
  transition:background .2s, transform .2s, box-shadow .2s;
  animation: glow-pulse 2.8s ease-in-out infinite;
}
.nav-play:hover { background:var(--accent-hover); transform:scale(1.05); box-shadow:0 0 20px rgba(46,134,222,0.6); animation:none; }
.nav-play .player-count { background:rgba(0,0,0,0.25); border-radius:4px; padding:1px 6px; font-size:11px; }

.ip-tooltip {
  position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%);
  background:#1e3a5f; color:white; font-size:11px; font-weight:700; padding:5px 10px;
  border-radius:6px; white-space:nowrap; pointer-events:none;
  opacity:0; transition:opacity .2s;
  border:1px solid rgba(46,134,222,0.4);
}
.ip-tooltip.show { opacity:1; }

/* ── IP COPY ANIMATION ── */
@keyframes ip-success-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); background: var(--accent); }
  40%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); background: #22c55e; transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); background: var(--accent); transform: scale(1); }
}
@keyframes ripple-out {
  from { transform: translate(-50%,-50%) scale(0); opacity: 0.55; }
  to   { transform: translate(-50%,-50%) scale(3);  opacity: 0; }
}
.nav-play { position:relative; overflow:hidden; }
.ip-block  { position:relative; overflow:hidden; }
.footer-server { position:relative; overflow:hidden; }
.ip-ripple {
  position:absolute; border-radius:50%;
  width:100%; padding-top:100%;
  top:50%; left:50%;
  background:rgba(34,197,94,0.35);
  transform:translate(-50%,-50%) scale(0);
  animation:ripple-out 0.65s ease-out forwards;
  pointer-events:none;
}
.nav-play.ip-copied-anim    { animation: ip-success-pulse 0.55s ease-out; }

/* ── IP TOAST ── */
.ip-toast {
  position:fixed; bottom:32px; left:50%; transform:translateX(-50%) translateY(16px);
  background:#1e3a5f; border:1px solid rgba(46,134,222,0.5);
  color:white; font-size:13px; font-weight:700;
  padding:10px 20px; border-radius:10px;
  display:flex; align-items:center; gap:8px;
  z-index:9999; opacity:0; pointer-events:none;
  transition:opacity .3s, transform .3s;
}
.ip-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ── HERO ── */
.hero { margin-top: 86px; padding: 0 24px; position:relative; }

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 0 32px;
}

.hero-content { flex: 1; }

.hero-mascot {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(46,134,222,0.35));
  image-rendering: pixelated;
}

.hero-eyebrow { font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.hero-title {
  font-size:clamp(32px,5vw,56px); font-weight:900; line-height:1.1;
  background:linear-gradient(135deg,#ffffff 0%,#c0d8f5 60%,#7ab8f5 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:14px;
}
.hero-tagline { font-size:17px; font-weight:500; color:var(--text-muted); min-height:26px; margin-bottom:28px; }
.hero-buttons { display:flex; gap:12px; flex-wrap:wrap; }

/* ── COUNTDOWN ── */
.countdown-wrap {
  text-align:center; padding:32px 24px 0; max-width:700px; margin:0 auto;
}
.countdown-label {
  font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:16px;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.cd-live-dot {
  width:8px; height:8px; border-radius:50%; background:#f43f5e; flex-shrink:0;
  animation:pulse-dot 1.5s ease-in-out infinite;
}
.countdown { display:flex; align-items:center; justify-content:center; gap:0; }
.cd-unit {
  display:flex; flex-direction:column; align-items:center; min-width:80px;
  background:rgba(17,24,39,0.7); border:1px solid rgba(46,134,222,0.15);
  border-radius:12px; padding:16px 12px;
  backdrop-filter:blur(8px);
}
.cd-unit span {
  font-size:clamp(28px,5vw,44px); font-weight:900; line-height:1;
  background:linear-gradient(135deg,#fff,#7ab8f5);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  font-variant-numeric:tabular-nums;
  transition:transform .15s;
}
.cd-flip span { animation:cd-flip .3s ease; }
.cd-unit small { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-muted); margin-top:6px; }
.cd-sep { font-size:32px; font-weight:900; color:rgba(46,134,222,0.5); padding:0 6px; margin-bottom:20px; }
.launched-text { font-size:22px; font-weight:800; color:#22c55e; }

/* ── TIRED OF BORING ── */
.tired-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(17,24,39,0.6) 20%, rgba(17,24,39,0.6) 80%, transparent);
}
.tired-content { max-width:860px; margin:0 auto; text-align:center; }
.tired-eyebrow { font-size:12px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--accent); margin-bottom:12px; }
.tired-title { font-size:clamp(28px,5vw,46px); font-weight:900; margin-bottom:20px; line-height:1.1; }
.tired-lead { font-size:16px; color:var(--text-muted); line-height:1.8; margin-bottom:36px; max-width:660px; margin-left:auto; margin-right:auto; }
.tired-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:32px; text-align:left; }
.tired-block { background:var(--bg-secondary); border-radius:var(--radius-lg); padding:28px; border:1px solid rgba(46,134,222,0.1); }
.tired-block p { font-size:14px; color:var(--text-muted); line-height:1.8; margin-bottom:12px; }
.tired-block p:last-child { margin-bottom:0; }
.tired-block strong { color:white; }
.tired-highlight {
  background:linear-gradient(135deg,rgba(46,134,222,0.12),rgba(88,101,242,0.12));
  border:1px solid rgba(46,134,222,0.3);
  position:relative;
}
.tired-quote-mark { font-size:80px; line-height:.6; color:rgba(46,134,222,0.3); font-family:Georgia,serif; margin-bottom:12px; }
.tired-highlight p { font-size:15px!important; color:white!important; font-weight:600; font-style:italic; }
.tired-quote-sub { font-size:13px!important; color:var(--text-muted)!important; font-weight:400!important; font-style:normal!important; }
.tired-cta-text { font-size:15px; color:var(--text-muted); font-style:italic; }

/* ── STATS STRIP ── */
.stats-strip {
  display:flex; align-items:center; justify-content:center;
  background:rgba(17,24,39,0.7); border:1px solid rgba(46,134,222,0.15);
  border-radius:var(--radius); margin:0 24px 64px; padding:28px 0;
  backdrop-filter:blur(8px);
}
.stat-item { flex:1; text-align:center; padding:0 24px; }
.stat-number {
  font-size:38px; font-weight:900;
  background:linear-gradient(135deg,#7ab8f5,#2e86de);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin-bottom:6px;
}
.stat-inf { font-size:clamp(28px,4vw,38px); }
.stat-label { font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }
.stat-divider { width:1px; height:48px; background:rgba(46,134,222,0.2); flex-shrink:0; }

/* ── GAMEMODES ── */
.gamemodes-section { padding:0 0 80px; }
.gamemodes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }

.gm-card {
  background:var(--bg-secondary); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid rgba(46,134,222,0.1);
  transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
  display:flex; flex-direction:column;
}
.gm-card:hover {
  transform:translateY(-8px);
  border-color:rgba(46,134,222,0.35);
  box-shadow:0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(46,134,222,0.08);
}
.gm-featured { grid-column: span 2; }
.gm-soon { opacity:.75; }
.gm-soon:hover { opacity:1; }

.gm-img {
  position:relative; height:180px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.gm-featured .gm-img { height:220px; }
.gm-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.gm-img-icon {
  position:relative; z-index:2;
  width:64px; height:64px; background:rgba(0,0,0,0.35); border-radius:16px; backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s;
}
.gm-card:hover .gm-img-icon { transform:scale(1.15) rotate(-5deg); }
.gm-img-icon svg { width:30px; height:30px; }

.gm-body { padding:20px; flex:1; }
.gm-badge {
  display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; padding:3px 9px; border-radius:4px; margin-bottom:10px;
}
.badge-flagship { background:#d97706; color:white; }
.badge-launch   { background:#16a34a; color:white; }
.badge-soon     { background:#374151; color:#9ca3af; }

.gm-body h3 { font-size:18px; font-weight:800; margin-bottom:8px; }
.gm-body p { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }

.gm-tags { display:flex; gap:6px; flex-wrap:wrap; }
.gm-tags span {
  font-size:11px; font-weight:600; letter-spacing:.05em;
  background:rgba(46,134,222,0.12); border:1px solid rgba(46,134,222,0.2);
  color:var(--accent); border-radius:4px; padding:2px 8px;
}

/* ── STORY SECTION ── */
.story-section { padding:0 0 80px; }
.story-card {
  background:linear-gradient(135deg,rgba(17,30,53,0.9),rgba(17,24,39,0.9));
  border:1px solid rgba(46,134,222,0.2); border-radius:var(--radius-lg);
  padding:40px 48px;
  backdrop-filter:blur(8px);
}
.story-header { display:flex; align-items:center; gap:20px; margin-bottom:28px; }
.story-avatar { width:72px; height:72px; border-radius:14px; overflow:hidden; background:#1e3a5f; flex-shrink:0; }
.story-avatar img { width:100%; height:100%; object-fit:cover; }
.story-title { font-size:22px; font-weight:800; margin-bottom:4px; }
.story-by { font-size:13px; color:var(--text-muted); }
.story-by strong { color:var(--accent); }

.story-body p { font-size:14px; color:var(--text-muted); line-height:1.85; margin-bottom:14px; }
.story-body strong { color:white; }
.story-body em { color:#7ab8f5; }

.story-more { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.story-more.open { max-height: 1200px; }

.name-breakdown {
  display:block; background:rgba(46,134,222,0.08); border-left:3px solid var(--accent);
  padding:12px 16px; border-radius:0 8px 8px 0; margin:12px 0; font-size:14px; line-height:2;
}
.name-breakdown strong { color:var(--accent); }

.story-toggle {
  display:block; margin:20px auto 0; background:none;
  border:1px solid rgba(46,134,222,0.3); color:var(--accent);
  font-size:13px; font-weight:700; padding:8px 20px; border-radius:8px; cursor:pointer;
  transition:background .2s, color .2s;
}
.story-toggle:hover { background:rgba(46,134,222,0.1); }

/* ── SECTIONS ── */
.container { max-width:1100px; margin:0 auto; padding:0 24px; }
section { padding:64px 0; }
.section-title { font-size:26px; font-weight:800; text-align:center; margin-bottom:8px; }
.section-subtitle { font-size:14px; color:var(--text-muted); text-align:center; margin-bottom:40px; max-width:560px; margin-left:auto; margin-right:auto; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center;
  padding:12px 28px; border-radius:8px; font-size:13px; font-weight:800;
  letter-spacing:.07em; text-transform:uppercase; text-decoration:none;
  transition:background .2s,transform .18s,box-shadow .3s; cursor:pointer; border:none;
  position:relative; overflow:hidden;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,0.18) 50%,transparent 70%);
  background-size:200% auto; opacity:0; transition:opacity .3s;
}
.btn:hover::after { opacity:1; animation:shimmer .6s linear; }
.btn:hover { transform:translateY(-2px) scale(1.03); }
.btn:active { transform:translateY(0) scale(0.98); }
.btn-accent { background:var(--accent); color:#fff; animation:glow-pulse 2.5s ease-in-out infinite; }
.btn-accent:hover { background:var(--accent-hover); box-shadow:0 0 24px 6px rgba(46,134,222,0.6); animation:none; }
.btn-discord { background:var(--discord); color:white; animation:glow-discord 2.5s ease-in-out infinite; }
.btn-discord:hover { background:var(--discord-hover); box-shadow:0 0 24px 6px rgba(88,101,242,0.5); animation:none; }
.btn-outline {
  background:transparent; color:white;
  border:1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.5); }

/* ── NEWS ── */
.news-section { padding-top:24px; }
.blog-card {
  display:flex; gap:20px; background:var(--bg-secondary); border-radius:var(--radius);
  overflow:hidden; padding:16px; margin-bottom:16px;
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s,border-color .3s;
  border:1px solid transparent;
}
.blog-card:hover { transform:translateY(-4px) scale(1.01); box-shadow:0 12px 40px rgba(0,0,0,0.5); border-color:rgba(46,134,222,0.3); }
.blog-card-announce { border-color:rgba(46,134,222,0.25); background:linear-gradient(135deg,rgba(17,24,39,1),rgba(15,30,63,1)); }
.blog-card-img { width:160px; height:100px; border-radius:8px; object-fit:cover; flex-shrink:0; background:#2a2a2a; }
.blog-card-body { flex:1; }
.blog-tag { display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:2px 8px; border-radius:4px; margin-bottom:6px; }
.tag-update  { background:#2d6a2d; color:#7fff7f; }
.tag-guide   { background:#2d4a8a; color:#7fb8ff; }
.tag-news    { background:#6a2d2d; color:#ff9f9f; }
.tag-announce{ background:#1e3a8a; color:#93c5fd; }
.blog-date { font-size:11px; color:var(--text-muted); margin-bottom:6px; }
.blog-card h3 { font-size:17px; font-weight:700; margin-bottom:6px; }
.blog-card p  { font-size:13px; color:var(--text-muted); line-height:1.6; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.news-footer  { text-align:center; margin-top:32px; }

/* ── TEAM ── */
.team-section {
  background:#111e35; border:1px solid rgba(46,134,222,0.15);
  border-radius:var(--radius-lg); margin:0 24px; padding:48px;
}
.team-section .section-title,.team-section .section-subtitle { text-align:left; color:#fff; }
.team-section .section-subtitle { margin-bottom:28px; }
.team-content { display:flex; align-items:center; gap:32px; }
.team-info { flex:1; }
.team-name { font-size:20px; font-weight:800; margin-bottom:6px; }
.team-role { display:inline-block; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; padding:3px 10px; border-radius:4px; background:#2e86de; color:white; margin-bottom:16px; }
.team-bio { font-size:14px; line-height:1.7; color:#8da2c0; margin-bottom:24px; }
.team-avatars { display:flex; align-items:center; gap:8px; }
.team-avatars .arrow { background:none; border:1px solid rgba(46,134,222,0.3); border-radius:6px; width:28px; height:28px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:14px; color:#8da2c0; transition:background .2s,color .2s; }
.team-avatars .arrow:hover { background:rgba(46,134,222,0.15); color:#fff; }
.avatar-list { display:flex; gap:6px; }
.avatar-item { width:36px; height:36px; border-radius:8px; background:#1e3a5f; overflow:hidden; cursor:pointer; border:2px solid transparent; transition:border-color .2s,transform .2s; }
.avatar-item:hover { transform:scale(1.1); }
.avatar-item.active { border-color:#2e86de; }
.avatar-item img { width:100%; height:100%; object-fit:cover; }
.team-character { width:200px; flex-shrink:0; }
.team-character img { width:100%; height:auto; }

/* ── HOW TO JOIN ── */
.join-section { padding:80px 0; }
.join-steps { display:flex; align-items:flex-start; gap:0; margin-top:48px; }
.join-step { flex:1; background:var(--bg-secondary); border-radius:var(--radius-lg); padding:32px 28px; border:1px solid rgba(46,134,222,0.1); transition:border-color .3s,transform .3s; }
.join-step:hover { border-color:rgba(46,134,222,0.3); transform:translateY(-4px); }
.join-num { font-size:48px; font-weight:900; line-height:1; margin-bottom:14px; background:linear-gradient(135deg,rgba(46,134,222,0.4),rgba(46,134,222,0.1)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.join-step h3 { font-size:17px; font-weight:800; margin-bottom:10px; }
.join-step p { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:14px; }
.join-step strong { color:white; }
.join-arrow { font-size:28px; color:rgba(46,134,222,0.3); padding:0 16px; margin-top:60px; flex-shrink:0; }

.ip-block {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(46,134,222,0.1); border:1px solid rgba(46,134,222,0.3);
  color:var(--accent); font-size:13px; font-weight:700;
  padding:8px 14px; border-radius:8px; cursor:pointer; margin-top:8px;
  transition:background .2s,border-color .2s;
}
.ip-block:hover { background:rgba(46,134,222,0.2); border-color:rgba(46,134,222,0.5); }
.join-support-link { font-size:12px; font-weight:700; color:var(--accent); text-decoration:none; display:inline-block; }
.join-support-link:hover { text-decoration:underline; }

/* ── SOCIAL ── */
.social-section { display:flex; align-items:center; gap:64px; padding:80px 0; }
.social-image { width:300px; flex-shrink:0; }
.social-image img { width:100%; height:auto; border-radius:var(--radius-lg); }
.social-text h2 { font-size:28px; font-weight:800; margin-bottom:16px; }
.social-text p { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:24px; max-width:420px; }

/* ── FOOTER ── */
footer { background:var(--footer-bg); border-top:1px solid rgba(46,134,222,0.2); padding:24px 32px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.footer-left { display:flex; align-items:center; gap:16px; }
.footer-server { display:flex; align-items:center; gap:8px; background:rgba(46,134,222,0.15); border:1px solid rgba(46,134,222,0.3); border-radius:8px; padding:6px 12px; font-size:12px; font-weight:700; color:#fff; letter-spacing:.05em; transition:background .2s; }
.footer-server:hover { background:rgba(46,134,222,0.25); }
.footer-server .dot { width:7px; height:7px; border-radius:50%; background:#22c55e; animation:pulse-dot 2s ease-in-out infinite; }
.footer-count { font-size:11px; background:rgba(255,255,255,0.1); border-radius:4px; padding:1px 6px; }
.footer-logo { width:44px; height:44px; flex-shrink:0; }
.footer-logo img { width:100%; height:100%; object-fit:contain; }
.footer-info { font-size:11px; color:rgba(255,255,255,0.45); }
.footer-info strong { display:block; color:#fff; font-size:13px; margin-bottom:2px; }
.footer-right { display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.footer-socials { display:flex; align-items:center; gap:12px; }
.footer-socials a { color:rgba(255,255,255,0.4); transition:color .2s,transform .2s; display:flex; align-items:center; }
.footer-socials a:hover { color:#2e86de; transform:translateY(-2px); }
.footer-socials svg { width:18px; height:18px; fill:currentColor; }
.footer-credit { font-size:11px; color:rgba(255,255,255,0.25); letter-spacing:.04em; }
.footer-credit span { color:var(--accent); font-weight:700; }

/* ── GUIDES PAGE ── */
.guides-header { margin-top:86px; padding:48px 24px 32px; text-align:center; }
.guides-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; padding:0 24px 64px; max-width:900px; margin:0 auto; }
.guide-card { display:flex; flex-direction:column; align-items:center; text-decoration:none; color:var(--text); transition:transform .3s cubic-bezier(.22,1,.36,1); }
.guide-card:hover { transform:translateY(-8px); }
.guide-card:hover .guide-icon { box-shadow:0 16px 40px rgba(0,0,0,0.5); }
.guide-card:hover .guide-icon img { transform:scale(1.12) rotate(-3deg); }
.guide-icon { width:100%; aspect-ratio:1; border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; margin-bottom:12px; position:relative; overflow:hidden; transition:box-shadow .3s; }
.guide-icon::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.15) 0%,transparent 60%); pointer-events:none; }
.guide-icon img { width:70%; height:70%; object-fit:contain; position:relative; z-index:1; transition:transform .35s cubic-bezier(.22,1,.36,1); filter:drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.guide-name { font-size:14px; font-weight:600; text-align:center; }
.guide-card:nth-child(1) .guide-icon{background:#c87941} .guide-card:nth-child(2) .guide-icon{background:#6b4fa8}
.guide-card:nth-child(3) .guide-icon{background:#4a90c9} .guide-card:nth-child(4) .guide-icon{background:#c87941}
.guide-card:nth-child(5) .guide-icon{background:#c94a4a} .guide-card:nth-child(6) .guide-icon{background:#7b4ac9}
.guide-card:nth-child(7) .guide-icon{background:#4ac94a} .guide-card:nth-child(8) .guide-icon{background:#4a8ac9}
.guide-card:nth-child(9) .guide-icon{background:#6b6b6b}

/* ── BLOG PAGE ── */
.blog-header { margin-top:86px; padding:48px 24px 32px; text-align:center; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; max-width:1100px; margin:0 auto; padding:0 24px 64px; }
.blog-grid-card { background:var(--bg-secondary); border-radius:var(--radius); overflow:hidden; text-decoration:none; color:var(--text); transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s,border-color .3s; display:block; border:1px solid transparent; }
.blog-grid-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.5); border-color:rgba(46,134,222,0.3); }
.blog-grid-card img { width:100%; height:180px; object-fit:cover; }
.blog-grid-body { padding:16px; }
.blog-grid-body h3 { font-size:16px; font-weight:700; margin:8px 0 6px; }
.blog-grid-body p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ── PAGE HEADER ── */
.page-header { margin-top:86px; padding:56px 24px 32px; text-align:center; max-width:700px; margin-left:auto; margin-right:auto; }

/* ── GM MORE LINK ── */
.gm-more { font-size:12px; font-weight:700; color:var(--accent); letter-spacing:.06em; text-transform:uppercase; margin-top:12px; opacity:0; transition:opacity .2s; }
.gm-card:hover .gm-more { opacity:1; }
.gm-card { text-decoration:none; color:var(--text); }

/* ── VIDEO SECTION ── */
.video-section { }
.video-title { font-size:20px; font-weight:800; margin-bottom:20px; text-align:center; }
.video-placeholder {
  background:var(--bg-secondary); border:2px dashed rgba(46,134,222,0.25);
  border-radius:var(--radius-lg); padding:64px 24px; text-align:center;
  transition:border-color .3s;
}
.video-placeholder:hover { border-color:rgba(46,134,222,0.5); }
.video-play-icon {
  width:72px; height:72px; background:rgba(46,134,222,0.15); border:2px solid rgba(46,134,222,0.3);
  border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.video-label { font-size:17px; font-weight:700; margin-bottom:6px; }
.video-sub { font-size:13px; color:var(--text-muted); }
.video-embed iframe { width:100%; height:480px; border:none; border-radius:var(--radius-lg); }

/* ── CORE TEAM ── */
.core-team-section { padding:0 0 64px; }
.core-team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.core-card { background:var(--bg-secondary); border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(46,134,222,0.1); transition:transform .3s,border-color .3s; }
.core-card:hover { transform:translateY(-6px); border-color:rgba(46,134,222,0.3); }
.core-card-top { height:190px; display:flex; align-items:flex-end; justify-content:center; position:relative; overflow:hidden; }
.core-avatar { width:90px; height:90px; border-radius:50%; background:rgba(0,0,0,0.3); overflow:hidden; border:3px solid rgba(255,255,255,0.15); transform:translateY(45px); position:relative; z-index:3; }
.core-avatar img { width:100%; height:100%; object-fit:cover; image-rendering:pixelated; }
.core-card-body { padding:60px 24px 28px; text-align:center; }
.core-name { font-size:20px; font-weight:800; margin-bottom:8px; }
.core-role { display:inline-block; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; padding:3px 12px; border-radius:4px; color:white; margin-bottom:16px; }
.core-bio { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:16px; }
.core-badges { display:flex; gap:6px; justify-content:center; flex-wrap:wrap; }
.core-badge { font-size:11px; font-weight:600; background:rgba(46,134,222,0.1); border:1px solid rgba(46,134,222,0.2); color:var(--accent); border-radius:4px; padding:2px 8px; }

/* ── STAFF SECTION ── */
.staff-section { padding:0 0 80px; }
.staff-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.staff-sync-badge { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:600; color:var(--text-muted); background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.2); border-radius:20px; padding:4px 12px; }
.staff-sync-dot { width:7px; height:7px; border-radius:50%; background:#22c55e; animation:pulse-dot 2s ease-in-out infinite; }
.role-group { margin-bottom:32px; }
.role-group-header { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.role-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.role-group-name { font-size:15px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.staff-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px; }
.staff-card { background:var(--bg-secondary); border-radius:var(--radius); padding:16px; border:1px solid rgba(46,134,222,0.1); display:flex; align-items:center; gap:12px; }
.staff-card-avatar { width:40px; height:40px; border-radius:50%; background:#1e3a5f; overflow:hidden; flex-shrink:0; }
.staff-card-avatar img { width:100%; height:100%; object-fit:cover; }
.staff-card-name { font-size:13px; font-weight:700; }
.staff-card-role { font-size:11px; color:var(--text-muted); }
.staff-placeholder { grid-column:1/-1; display:flex; align-items:center; gap:10px; color:var(--text-muted); font-size:13px; font-style:italic; padding:16px; background:rgba(255,255,255,0.02); border-radius:var(--radius); border:1px dashed rgba(255,255,255,0.08); }
.staff-api-note { margin-top:32px; font-size:12px; color:rgba(255,255,255,0.35); display:flex; gap:8px; align-items:flex-start; line-height:1.6; background:rgba(255,255,255,0.02); border-radius:var(--radius); padding:14px 16px; }
.staff-api-note code { background:rgba(46,134,222,0.15); color:var(--accent); border-radius:4px; padding:1px 5px; font-size:11px; }

/* ── JOIN TEAM CARD ── */
.join-team-card {
  display:flex; align-items:center; gap:48px;
  background:linear-gradient(135deg,#111e35,#0f1e3d);
  border:1px solid rgba(46,134,222,0.2); border-radius:var(--radius-lg);
  padding:48px; margin-bottom:80px;
}
.join-team-content { flex:1; }
.join-team-content h2 { font-size:26px; font-weight:800; margin-bottom:12px; }
.join-team-content p { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.join-team-mascot { width:140px; flex-shrink:0; }
.join-team-mascot img { width:100%; height:auto; image-rendering:pixelated; }

/* ── HAMBURGER NAV ── */
.nav-hamburger {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-hamburger span { display:block; width:100%; height:2px; background:var(--text-muted); border-radius:2px; transition:transform .3s, opacity .3s; }
nav.nav-open .nav-hamburger span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity:0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── RECRUITMENT SECTION ── */
.recruit-section { padding:80px 0; }
.recruit-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap:16px;
  margin-top:40px;
}
.recruit-loading {
  grid-column:1/-1; display:flex; align-items:center; justify-content:center; gap:12px;
  color:var(--text-muted); font-size:14px; padding:48px 0;
}
.recruit-spinner {
  width:20px; height:20px; border:2px solid rgba(46,134,222,0.2);
  border-top-color:var(--accent); border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

.recruit-card {
  position:relative; background:var(--bg-secondary);
  border:1px solid rgba(255,255,255,0.07); border-radius:var(--radius-lg);
  overflow:hidden; transition:transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
}
.recruit-card:hover { transform:translateY(-4px); border-color:var(--pos-color); box-shadow:0 8px 32px rgba(0,0,0,0.4); }
.recruit-card-accent {
  position:absolute; left:0; top:0; bottom:0; width:3px;
  background:var(--pos-color); border-radius:3px 0 0 3px;
}
.recruit-card-body { padding:20px 20px 20px 24px; }
.recruit-card-top { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:12px; }
.recruit-card-name { font-size:16px; font-weight:800; color:var(--text); margin-bottom:4px; }
.recruit-card-desc { font-size:12px; color:var(--text-muted); line-height:1.5; }
.recruit-status-wrap { display:flex; flex-direction:column; align-items:flex-end; gap:4px; flex-shrink:0; }
.recruit-status {
  font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:3px 10px; border-radius:20px;
}
.status-open { background:rgba(34,197,94,0.15); color:#22c55e; border:1px solid rgba(34,197,94,0.25); }
.status-closed { background:rgba(255,255,255,0.05); color:rgba(255,255,255,0.3); border:1px solid rgba(255,255,255,0.08); }
.recruit-slots { font-size:11px; color:var(--text-muted); }
.recruit-questions { margin-bottom:16px; }
.recruit-q-preview { font-size:12px; color:rgba(255,255,255,0.45); line-height:1.5; padding:2px 0; }
.recruit-q-more { font-size:11px; color:var(--text-muted); margin-top:4px; font-style:italic; }
.recruit-apply-btn {
  display:inline-flex; align-items:center;
  background:color-mix(in srgb, var(--pos-color) 15%, transparent);
  border:1px solid color-mix(in srgb, var(--pos-color) 40%, transparent);
  color:var(--pos-color); font-size:13px; font-weight:700;
  padding:9px 18px; border-radius:8px; cursor:pointer;
  transition:background .2s, transform .15s;
  width:100%;justify-content:center;
}
.recruit-apply-btn:hover {
  background:color-mix(in srgb, var(--pos-color) 25%, transparent);
  transform:translateX(2px);
}
.recruit-closed-note { font-size:12px; color:rgba(255,255,255,0.25); font-style:italic; text-align:center; padding:4px 0; }
.recruit-meta { display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.recruit-age {
  display:inline-flex; align-items:center; gap:5px;
  font-size:11px; font-weight:700; color:rgba(255,255,255,0.45);
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:20px; padding:3px 10px;
}

/* ── APPLY PAGE HEADER ── */
.apply-hero {
  margin-top:86px; padding:60px 24px 0;
  text-align:center; max-width:700px; margin-left:auto; margin-right:auto;
}
.apply-hero .hero-eyebrow { margin-bottom:10px; }
.apply-hero h1 { font-size:clamp(28px,5vw,46px); font-weight:900; margin-bottom:16px; }
.apply-hero p { font-size:15px; color:var(--text-muted); line-height:1.7; }
.apply-filter-bar {
  display:flex; align-items:center; justify-content:center; gap:8px;
  flex-wrap:wrap; margin:32px auto 0; max-width:600px;
}
.apply-filter-btn {
  font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:6px 14px; border-radius:20px; border:1px solid rgba(255,255,255,0.12);
  color:var(--text-muted); background:none; cursor:pointer; transition:all .2s;
}
.apply-filter-btn.active, .apply-filter-btn:hover {
  color:white; border-color:var(--accent); background:rgba(46,134,222,0.12);
}

/* ── HELP MODAL ── */
.help-modal-overlay {
  position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,0.75); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center; padding:16px;
  opacity:0; pointer-events:none; transition:opacity .25s;
}
.help-modal-overlay.open { opacity:1; pointer-events:all; }

.help-modal {
  background:#0d1626; border:1px solid rgba(46,134,222,0.25);
  border-radius:var(--radius-lg); width:100%; max-width:540px;
  max-height:90vh; overflow-y:auto;
  transform:translateY(20px); transition:transform .25s;
  box-shadow:0 24px 80px rgba(0,0,0,0.6);
}
.help-modal-overlay.open .help-modal { transform:none; }

.apply-modal { max-width:560px; }

.help-modal-header {
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  padding:20px 24px 16px; border-bottom:1px solid rgba(255,255,255,0.07);
}
.help-modal-header h3 { font-size:18px; font-weight:800; }
.help-modal-close {
  background:none; border:none; cursor:pointer; color:var(--text-muted);
  padding:4px; border-radius:6px; transition:color .2s, background .2s; flex-shrink:0;
}
.help-modal-close:hover { color:white; background:rgba(255,255,255,0.1); }
.help-modal-body { padding:20px 24px 24px; }

.help-steps { display:flex; flex-direction:column; gap:16px; margin-bottom:24px; }
.help-step { display:flex; gap:16px; align-items:flex-start; }
.help-step-num {
  width:32px; height:32px; border-radius:8px; flex-shrink:0;
  background:rgba(46,134,222,0.15); border:1px solid rgba(46,134,222,0.3);
  color:var(--accent); font-size:13px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.help-step h4 { font-size:14px; font-weight:700; margin-bottom:4px; }
.help-step p { font-size:13px; color:var(--text-muted); line-height:1.6; }
.help-step strong { color:white; }
.help-video { border-radius:var(--radius); overflow:hidden; }

/* ── GAMEMODE MODAL ── */
.gm-modal { max-width:600px; }
.gm-modal-banner {
  height:130px; border-radius:var(--radius); margin-bottom:20px;
  display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative;
}
.gm-modal-banner img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.gm-modal-banner-icon {
  position:relative; z-index:2;
  width:56px; height:56px; background:rgba(0,0,0,0.4); border-radius:14px; backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
}
.gm-modal-banner-icon svg { width:28px; height:28px; }
.gm-modal-desc { font-size:14px; color:var(--text-muted); line-height:1.8; margin-bottom:20px; }
.gm-modal-features { display:flex; flex-direction:column; gap:12px; margin-bottom:20px; }
.gm-modal-feature { display:flex; gap:12px; align-items:flex-start; }
.gm-modal-feat-dot {
  width:8px; height:8px; border-radius:50%; flex-shrink:0; margin-top:5px;
  background:var(--accent);
}
.gm-modal-feature h4 { font-size:13px; font-weight:700; margin-bottom:2px; }
.gm-modal-feature p { font-size:12px; color:var(--text-muted); line-height:1.55; }
.gm-card { cursor:pointer; }

/* ── CORE SKIN RENDER ── */
.core-skin-render {
  position:absolute; right:20px; bottom:0;
  height:180px; width:auto;
  image-rendering:pixelated;
  filter:drop-shadow(2px 4px 16px rgba(0,0,0,0.6));
  z-index:2; pointer-events:none;
}

/* Apply modal */
.apply-questions { }
.apply-intro { font-size:13px; color:var(--text-muted); margin-bottom:16px; line-height:1.6; }
.apply-intro strong { color:white; }
.apply-q-list { display:flex; flex-direction:column; gap:8px; margin-bottom:8px; }
.apply-q { display:flex; gap:8px; font-size:13px; color:rgba(255,255,255,0.7); line-height:1.5; }
.apply-q-num { color:var(--accent); font-weight:700; flex-shrink:0; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .gamemodes-grid { grid-template-columns:repeat(2,1fr); }
  .gm-featured { grid-column:span 2; }
}
@media (max-width:768px) {
  .announce-bar { font-size:11px; flex-wrap:wrap; justify-content:center; padding:6px 12px; gap:6px; }
  nav { top:auto; top:34px; padding:0 16px; height:48px; }
  .nav-links {
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; background:rgba(10,14,26,0.98); backdrop-filter:blur(16px);
    border-top:1px solid rgba(255,255,255,0.07);
    padding:12px 16px; gap:0; z-index:999;
  }
  .nav-links.open { display:flex; }
  .nav-links li a { display:block; padding:11px 4px; border-bottom:1px solid rgba(255,255,255,0.04); font-size:14px; }
  .nav-links li:last-child a { border-bottom:none; }
  .nav-support { display:none; }
  .nav-hamburger { display:flex; }
  .hero { margin-top:82px; padding:0 16px; }
  .hero-inner { flex-direction:column-reverse; padding:36px 0 16px; gap:20px; text-align:center; }
  .hero-buttons { justify-content:center; flex-wrap:wrap; }
  .hero-mascot { width:130px; }
  .page-header { margin-top:86px; }
  .core-team-grid { grid-template-columns:1fr; }
  .join-team-card { flex-direction:column; text-align:center; padding:32px 24px; gap:24px; }
  .join-team-mascot { width:100px; }
  .tired-grid { grid-template-columns:1fr; }
  .stats-strip { flex-wrap:wrap; gap:20px; margin:0 16px 48px; padding:24px 16px; }
  .stat-divider { display:none; }
  .stat-item { flex:1 1 40%; }
  .gamemodes-grid { grid-template-columns:1fr; }
  .gm-featured { grid-column:span 1; }
  .join-steps { flex-direction:column; }
  .join-arrow { display:none; }
  .story-card { padding:28px 20px; }
  .team-section { margin:0 16px; padding:32px 24px; }
  .team-content { flex-direction:column-reverse; }
  .team-character { width:140px; }
  .social-section { flex-direction:column; gap:32px; padding:48px 24px; }
  .social-image { width:200px; }
  .guides-grid { grid-template-columns:repeat(2,1fr); padding:0 16px 48px; }
  .guides-header,.blog-header { margin-top:86px; }
  footer { flex-direction:column; text-align:center; padding:20px 16px; gap:20px; }
  .footer-left { flex-direction:column; align-items:center; }
  .footer-right { align-items:center; }
  .blog-card { flex-direction:column; }
  .blog-card-img { width:100%; height:160px; }
  .countdown { gap:4px; }
  .cd-unit { min-width:56px; padding:12px 6px; }
  .cd-sep { font-size:20px; padding:0 2px; }
  .recruit-grid { grid-template-columns:1fr; gap:12px; }
  .help-modal { max-width:100%; border-radius:var(--radius); }
}
@media (max-width:480px) {
  .hero-buttons { flex-direction:column; align-items:stretch; }
  .hero-buttons .btn { text-align:center; justify-content:center; }
  .gamemodes-grid { grid-template-columns:1fr; }
  .tired-grid { grid-template-columns:1fr; }
  .recruit-card-top { flex-direction:column; gap:8px; }
  .recruit-status-wrap { flex-direction:row; align-items:center; }
  .countdown-wrap { margin:0 8px; }
  .help-modal-overlay { padding:8px; align-items:flex-end; }
  .help-modal { border-radius:var(--radius-lg) var(--radius-lg) 0 0; max-height:85vh; }
}
