/* ===== MOOT GAMING — Core Styles ===== */
:root {
  --green: #63c70d;
  --green-bright: #7dff14;
  --green-dim: #4e9c0a;
  --bg: #0a0c0f;
  --bg-2: #0f1318;
  --bg-3: #151a21;
  --card: #12161c;
  --card-hover: #171d25;
  --line: #232a33;
  --text: #e8edf2;
  --muted: #8a94a3;
  --cyan: #18d6e0;
  --purple: #9b5cff;
  --radius: 14px;
  --glow: 0 0 24px rgba(99, 199, 13, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

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

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4, .hero-tag, .num, .nav-logo { font-family: 'Orbitron', sans-serif; }

a { color: inherit; text-decoration: none; }

.green { color: var(--green); }

/* ===== Themed scrollbars (match the dark/green theme) ===== */
* { scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 20px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

/* ===== Animated background ===== */
#bg-particles {
  position: fixed; inset: 0; z-index: -2;
  background: radial-gradient(circle at 20% 10%, rgba(99,199,13,0.10), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(155,92,255,0.10), transparent 45%),
              var(--bg);
}
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,199,13,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,199,13,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 80%);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(10, 12, 15, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled { border-bottom-color: var(--line); background: rgba(10,12,15,0.92); padding: 10px 5vw; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 600; font-size: 0.96rem; color: var(--muted);
  position: relative; padding: 4px 0; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--green); transition: width 0.25s ease; box-shadow: var(--glow);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  color: var(--text); font-size: 1.05rem; padding: 8px 14px; border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
}
.cart-btn:hover { border-color: var(--green); box-shadow: var(--glow); }
.cart-count {
  position: absolute; top: -8px; right: -8px; background: var(--green); color: #07210a;
  font-family: 'Orbitron'; font-size: 0.7rem; font-weight: 700;
  min-width: 19px; height: 19px; border-radius: 10px; display: grid; place-items: center; padding: 0 4px;
}
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 3px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Rajdhani'; font-weight: 700; font-size: 1rem; letter-spacing: 0.5px;
  padding: 13px 28px; border-radius: 10px; cursor: pointer; border: 1px solid transparent;
  transition: all 0.22s ease; text-transform: uppercase;
}
.btn-primary { background: var(--green); color: #07210a; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 0 32px rgba(125,255,20,0.5); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn.full { width: 100%; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 5vw 60px; position: relative;
}
.hero-tag { color: var(--green); letter-spacing: 4px; font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; }
.hero-title { font-size: clamp(3rem, 11vw, 8rem); font-weight: 900; line-height: 0.95; letter-spacing: 2px; }
.hero-title .green { display: block; text-shadow: 0 0 40px rgba(99,199,13,0.4); }
.hero-sub { max-width: 640px; color: var(--muted); font-size: 1.25rem; margin: 26px auto 0; }
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 50px; margin-top: 64px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; }
.stat .num { font-size: 2.6rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat .label { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }
.hero-scroll { position: absolute; bottom: 26px; color: var(--muted); font-size: 0.85rem; letter-spacing: 2px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform: translateY(0);opacity:.6;} 50%{transform: translateY(8px);opacity:1;} }

/* Glitch effect */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden;
}
.glitch::before { color: var(--cyan); clip-path: inset(0 0 55% 0); animation: glitchTop 3s infinite linear alternate; }
.glitch::after { color: var(--purple); clip-path: inset(55% 0 0 0); animation: glitchBot 2.6s infinite linear alternate; }
@keyframes glitchTop { 0%,92%{transform: translate(0);} 94%{transform: translate(-3px,-2px);} 96%{transform: translate(3px,1px);} 100%{transform: translate(0);} }
@keyframes glitchBot { 0%,92%{transform: translate(0);} 94%{transform: translate(3px,2px);} 96%{transform: translate(-3px,-1px);} 100%{transform: translate(0);} }

/* ===== Sections ===== */
.section { padding: 90px 5vw; max-width: 1280px; margin: 0 auto; }
/* Full-bleed tint band behind alt sections — keeps content aligned with all other sections */
.section-alt { position: relative; }
.section-alt::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 100%; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(15,19,24,0.7), transparent);
}
.section-head { text-align: center; margin-bottom: 50px; }
.section-title { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 900; letter-spacing: 1px; }
.section-desc { color: var(--muted); font-size: 1.1rem; margin-top: 12px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Generic card grid (releases) ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.game-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all 0.28s ease; position: relative;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.game-thumb { height: 150px; position: relative; display: grid; place-items: center; overflow: hidden; }
.game-thumb .emoji { font-size: 3.6rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5)); transition: transform 0.3s; }
.game-card:hover .game-thumb .emoji { transform: scale(1.15) rotate(-4deg); }
.score-badge {
  position: absolute; top: 10px; right: 10px; background: rgba(7,33,10,0.85);
  color: var(--green); border: 1px solid var(--green); font-family: 'Orbitron'; font-weight: 700;
  font-size: 0.85rem; padding: 4px 10px; border-radius: 8px; backdrop-filter: blur(4px);
}
.game-body { padding: 16px 18px 20px; }
.game-platform { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.4px; }
.game-name { font-size: 1.18rem; font-weight: 700; margin: 4px 0 8px; }
.game-genre { display: inline-block; font-size: 0.78rem; color: var(--green); background: rgba(99,199,13,0.1); padding: 3px 10px; border-radius: 20px; }
.game-studio { color: var(--text); font-size: 0.85rem; margin-top: 10px; opacity: 0.85; }
.game-date { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

/* Upcoming "expected" badge (games with no firm date) */
.window-badge {
  margin-top: 14px; text-align: center; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px; color: var(--muted); letter-spacing: 1px; font-size: 0.95rem;
}
.window-badge strong { color: var(--green); font-family: 'Orbitron'; }

/* ===== Upcoming with countdown ===== */
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.upcoming-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: all 0.28s; position: relative; overflow: hidden;
}
.upcoming-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--green); opacity: 0.7;
}
.upcoming-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow); }
.upcoming-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.upcoming-emoji { font-size: 2.6rem; }
.upcoming-name { font-size: 1.3rem; font-weight: 700; }
.upcoming-studio { color: var(--muted); font-size: 0.85rem; }
.countdown { display: flex; gap: 10px; margin-top: 14px; }
.cd-box { background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; padding: 10px 0; flex: 1; text-align: center; }
.cd-box .cd-num { font-family: 'Orbitron'; font-size: 1.5rem; font-weight: 700; color: var(--green); display: block; }
.cd-box .cd-lbl { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== Servers ===== */
.server-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.server-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: all 0.28s;
}
.server-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.server-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.server-game { display: flex; align-items: center; gap: 12px; }
.server-game .emoji { font-size: 2.2rem; }
.server-game h3 { font-size: 1.2rem; font-family: 'Rajdhani'; font-weight: 700; }
.server-game span { color: var(--muted); font-size: 0.82rem; }
.status { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; }
.status .dot { width: 9px; height: 9px; border-radius: 50%; }
.status.online .dot { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s infinite; }
.status.online { color: var(--green); }
.status.maint .dot { background: #ffb020; }
.status.maint { color: #ffb020; }
.status.soon .dot { background: var(--muted); box-shadow: none; animation: none; }
.status.soon { color: var(--muted); }
.server-card.soon { opacity: 0.72; }
.server-card.soon:hover { opacity: 1; }
.server-soon { color: var(--muted); font-size: 0.92rem; padding: 22px 0 8px; line-height: 1.5; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.server-bar { height: 8px; background: rgba(99,199,13,0.10); border: 1px solid rgba(99,199,13,0.20); border-radius: 6px; overflow: hidden; margin: 6px 0 6px; }
.server-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--green-dim), var(--green-bright)); border-radius: 6px; transition: width 0.8s ease; }
.server-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.server-meta b { color: var(--text); }
.server-ip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--bg); border: 1px dashed var(--line); border-radius: 8px;
  padding: 8px 12px; font-family: monospace; font-size: 0.88rem; color: var(--green);
}
.copy-ip { background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; padding: 4px 9px; border-radius: 6px; cursor: pointer; transition: 0.2s; text-transform: uppercase; }
.copy-ip:hover { color: var(--green); border-color: var(--green); }
.join-help { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
.join-title { color: var(--green); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.join-help ol { margin: 10px 0 2px 18px; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.join-help li { margin-bottom: 2px; }
.join-help li b { color: var(--text); }

/* ===== Hire a server ===== */
.hire-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.hire-config, .hire-summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.field { display: block; margin-bottom: 22px; }
.field > span { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field.check { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.field.check span { margin: 0; color: var(--muted); }
.field select, .field input[type="range"] { width: 100%; }
.field select {
  background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: 10px; font-family: 'Rajdhani'; font-size: 1rem; cursor: pointer;
}
input[type="range"] { accent-color: var(--green); height: 6px; }
input[type="checkbox"] { accent-color: var(--green); width: 18px; height: 18px; }
.pill-group { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); padding: 9px 18px; border-radius: 24px; cursor: pointer; font-family: 'Rajdhani'; font-weight: 600; transition: 0.2s; }
.pill.active, .pill:hover { border-color: var(--green); color: var(--green); background: rgba(99,199,13,0.08); }
.hire-summary { display: flex; flex-direction: column; }
.hire-game-name { font-family: 'Orbitron'; font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
.hire-specs { list-style: none; margin-bottom: 18px; }
.hire-specs li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.hire-specs li b { color: var(--text); }
.hire-price { display: flex; align-items: baseline; justify-content: space-between; margin: 8px 0 20px; }
.hire-price-label { color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; }
.hire-price-val { font-family: 'Orbitron'; font-size: 2.4rem; font-weight: 900; color: var(--green); }
.hire-price-val small { font-size: 1rem; color: var(--muted); }
.hire-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 12px; }

/* ===== Events ===== */
.events-list { display: flex; flex-direction: column; gap: 18px; }
.event-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; transition: all 0.25s;
}
.event-card:hover { border-color: var(--green); transform: translateX(6px); box-shadow: var(--shadow); }
.event-date { text-align: center; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; min-width: 78px; }
.event-date .d { font-family: 'Orbitron'; font-size: 1.8rem; font-weight: 900; color: var(--green); display: block; line-height: 1; }
.event-date .m { color: var(--muted); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1.5px; display: block; }
.event-date .y { color: var(--muted); font-size: 0.68rem; opacity: 0.7; display: block; }
.event-info h3 { font-size: 1.3rem; font-weight: 700; }
.event-host { color: var(--muted); font-size: 0.85rem; margin: 4px 0; }
.event-host strong { color: var(--green); }
.event-info .event-tags { display: flex; gap: 8px; margin: 8px 0; flex-wrap: wrap; }
.event-tags span { font-size: 0.74rem; background: rgba(99,199,13,0.1); color: var(--green); padding: 3px 10px; border-radius: 20px; }
.event-info p { color: var(--muted); font-size: 0.92rem; }
.event-prize { text-align: right; }
.event-prize .pz { font-family: 'Orbitron'; font-size: 1.3rem; font-weight: 700; color: var(--green); }
.event-prize .pzl { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.event-card .btn { margin-top: 8px; padding: 9px 20px; font-size: 0.85rem; }

/* ===== Shop ===== */
.shop-filters, .media-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.chip, .tab {
  background: var(--bg-3); border: 1px solid var(--line); color: var(--muted);
  padding: 9px 20px; border-radius: 24px; cursor: pointer; font-family: 'Rajdhani'; font-weight: 600;
  font-size: 0.95rem; transition: 0.2s;
}
.chip.active, .chip:hover, .tab.active, .tab:hover { border-color: var(--green); color: var(--green); background: rgba(99,199,13,0.08); }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all 0.28s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.product-thumb { height: 190px; background: #fff; cursor: pointer; position: relative; overflow: hidden; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.product-tag { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--green); color: #07210a; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-tag.sale { background: #ff4d4d; color: #fff; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-cat { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.4px; }
.product-name { font-size: 1.08rem; font-weight: 700; margin: 5px 0 8px; flex: 1; }
.product-rating { color: #ffb020; font-size: 0.85rem; margin-bottom: 10px; }
.product-rating span { color: var(--muted); }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { display: flex; flex-direction: column; }
.product-price .now { font-family: 'Orbitron'; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.product-price .was { color: var(--muted); font-size: 0.82rem; text-decoration: line-through; }
.add-cart { background: var(--green); color: #07210a; border: none; width: 42px; height: 42px; border-radius: 10px; font-size: 1.3rem; cursor: pointer; transition: 0.2s; display: grid; place-items: center; }
.add-cart:hover { background: var(--green-bright); transform: scale(1.08); box-shadow: var(--glow); }

/* ===== Media ===== */
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.media-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all 0.28s; cursor: pointer; display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.media-img { height: 180px; position: relative; overflow: hidden; background: var(--bg-3); }
.media-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.media-card:hover .media-img img { transform: scale(1.06); }
.media-type { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.media-type.Review { background: var(--green); color: #07210a; }
.media-type.StudioNews { background: var(--purple); color: #fff; }
.media-type.ComicCon { background: var(--cyan); color: #062a2d; }
.media-type.Article { background: #ffb020; color: #2a1c00; }
.media-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.media-meta { color: var(--muted); font-size: 0.8rem; margin-bottom: 8px; display: flex; gap: 10px; }
.media-title { font-size: 1.18rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.media-excerpt { color: var(--muted); font-size: 0.92rem; flex: 1; }
.media-read { color: var(--green); font-weight: 700; font-size: 0.88rem; margin-top: 14px; text-transform: uppercase; letter-spacing: 1px; }
.media-card:hover .media-read { letter-spacing: 2px; }

/* ===== Newsletter ===== */
.newsletter { padding: 80px 5vw; text-align: center; }
.newsletter-inner {
  max-width: 760px; margin: 0 auto; background: linear-gradient(135deg, rgba(99,199,13,0.12), rgba(155,92,255,0.08));
  border: 1px solid var(--line); border-radius: 22px; padding: 56px 40px;
}
.newsletter h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900; }
.newsletter p { color: var(--muted); font-size: 1.1rem; margin: 12px 0 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative; }
.newsletter-form input { flex: 1; min-width: 220px; background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: 14px 18px; border-radius: 10px; font-family: 'Rajdhani'; font-size: 1rem; }
.newsletter-form input:focus { outline: none; border-color: var(--green); box-shadow: var(--glow); }
.nl-ok { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); color: var(--green); font-weight: 700; opacity: 0; transition: 0.3s; }
.nl-ok.show { opacity: 1; }

/* ===== Footer ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 5vw 30px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto 40px; }
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.socials { display: flex; gap: 16px; margin-top: 18px; }
.socials a { color: var(--muted); font-weight: 600; transition: 0.2s; }
.socials a:hover { color: var(--green); }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text); letter-spacing: 1px; }
.footer-col a { display: block; color: var(--muted); margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.88rem; }
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--green); }

/* ===== Cart drawer ===== */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 390px; max-width: 90vw; z-index: 200;
  background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.5,0,.2,1); display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 1.3rem; }
.cart-header button { background: none; border: none; color: var(--muted); font-size: 1.3rem; cursor: pointer; transition: 0.2s; }
.cart-header button:hover { color: var(--green); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 60px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item .ci-emoji { font-size: 2rem; }
.ci-img { width: 46px; height: 46px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; flex-shrink: 0; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-weight: 600; font-size: 0.95rem; }
.cart-item .ci-price { color: var(--green); font-size: 0.9rem; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button { background: var(--bg-3); border: 1px solid var(--line); color: var(--text); width: 26px; height: 26px; border-radius: 6px; cursor: pointer; }
.cart-qty button:hover { border-color: var(--green); color: var(--green); }
.cart-footer { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-size: 1.1rem; }
.cart-total strong { font-family: 'Orbitron'; font-size: 1.5rem; color: var(--green); }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150; opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(2px); }
.overlay.show { opacity: 1; pointer-events: auto; }

/* ===== Product modal ===== */
.modal { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: 0.3s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; max-width: 560px; width: 100%; padding: 0; overflow: hidden; transform: scale(0.94); transition: 0.3s; box-shadow: var(--shadow); }
.modal.open .modal-card { transform: none; }
.modal-hero { height: 230px; background: #fff; position: relative; }
.modal-hero img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.modal-close { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.5); border: 1px solid var(--line); color: var(--text); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.modal-close:hover { border-color: var(--green); color: var(--green); }
.modal-content { padding: 26px 30px 30px; }
.modal-content .product-cat { font-size: 0.78rem; }
.modal-content h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.modal-content .modal-desc { color: var(--muted); margin-bottom: 18px; }
.modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.modal-foot .now { font-family: 'Orbitron'; font-size: 1.8rem; font-weight: 900; color: var(--green); }

/* ===== Sub-page header ===== */
.page-hero {
  padding: 120px 5vw 50px; text-align: center; position: relative;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% -20%, rgba(99,199,13,0.12), transparent 60%);
}
.page-hero .crumb { color: var(--muted); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 14px; }
.page-hero .crumb a { color: var(--muted); }
.page-hero .crumb a:hover { color: var(--green); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; letter-spacing: 1px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 640px; margin: 14px auto 0; }
.page-section { padding: 56px 5vw 80px; max-width: 1280px; margin: 0 auto; }

/* ===== Home: Shop-by-Category tiles (Moot style — dark + neon green) ===== */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-tile {
  position: relative; overflow: hidden; border-radius: 14px; padding: 24px; min-height: 168px;
  background: linear-gradient(150deg, var(--card-hover), var(--card)); border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between; transition: all 0.25s ease;
}
/* faint tech grid + green corner glow */
.cat-tile::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 88% 12%, rgba(99,199,13,0.14), transparent 55%); pointer-events: none; }
/* top accent line */
.cat-tile::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), transparent 70%); opacity: 0.5; transition: opacity 0.25s; }
.cat-tile:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--glow); }
.cat-tile:hover::after { opacity: 1; }

/* big faint watermark icon, bottom-right */
.ct-watermark { position: absolute; right: -14px; bottom: -18px; width: 130px; height: 130px; color: var(--green); opacity: 0.07; transition: opacity 0.25s, transform 0.25s; pointer-events: none; }
.ct-watermark svg { width: 100%; height: 100%; }
.cat-tile:hover .ct-watermark { opacity: 0.16; transform: scale(1.06) rotate(-3deg); }

.ct-head { position: relative; z-index: 1; }
.ct-ico { display: block; width: 34px; height: 34px; color: var(--green); margin-bottom: 12px; }
.ct-ico svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px rgba(99,199,13,0.4)); }
.ct-tag { color: var(--green); font-size: 0.68rem; letter-spacing: 2.5px; font-weight: 700; }
.cat-tile h3 { font-family: 'Orbitron'; font-weight: 900; font-size: 1.35rem; line-height: 1.05; text-transform: uppercase; color: var(--text); margin-top: 4px; }
.ct-foot { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.ct-count { color: var(--muted); font-size: 0.8rem; }
.ct-cta { color: var(--green); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; white-space: nowrap; }
.cat-tile:hover .ct-cta { gap: 11px; }
@media (max-width: 900px) { .cat-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cat-tiles { grid-template-columns: 1fr; } }

/* Home sub-labels (Games: releases / coming soon) */
.sub-label { font-family: 'Orbitron'; font-weight: 700; font-size: 1rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin: 6px 0 18px; }
.sub-label + .upcoming-grid, .upcoming-grid + .sub-label { margin-top: 0; }
.card-grid + .sub-label { margin-top: 38px; }

/* Home server + hire CTA band */
.server-hire-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 24px; background: linear-gradient(135deg, rgba(99,199,13,0.1), rgba(155,92,255,0.06)); border: 1px solid var(--line); border-radius: 16px; padding: 26px 30px; }
.server-hire-cta h3 { font-family: 'Orbitron'; font-size: 1.2rem; margin-bottom: 6px; }
.server-hire-cta p { color: var(--muted); max-width: 580px; }
.server-hire-cta strong { color: var(--green); }

/* ===== Home "what we offer" feature grid (legacy, unused) ===== */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.offer-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; transition: all 0.25s; display: block;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.offer-card .ico { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.offer-card h3 { font-family: 'Rajdhani'; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.offer-card p { color: var(--muted); font-size: 0.9rem; }
.offer-card .go { color: var(--green); font-weight: 700; font-size: 0.85rem; margin-top: 12px; display: inline-block; text-transform: uppercase; letter-spacing: 1px; }

/* ===== "View all" link row ===== */
.section-head.row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; gap: 20px; flex-wrap: wrap; }
.section-head.row .section-desc { margin-top: 6px; }
.view-all {
  color: var(--green); font-weight: 700; white-space: nowrap; border: 1px solid var(--line);
  padding: 9px 18px; border-radius: 24px; transition: 0.2s; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px;
}
.view-all:hover { border-color: var(--green); background: rgba(99,199,13,0.08); }

/* Tighter spacing on home so it stays compact */
.home .section { padding: 60px 5vw; }
.home .section-head { margin-bottom: 32px; }

/* ===== Emoji-free game cover art ===== */
.game-cover {
  height: 150px; position: relative; display: grid; place-items: center; overflow: hidden;
}
.game-cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 55%);
}
.cover-mono {
  font-family: 'Orbitron'; font-weight: 900; font-size: 2.8rem; color: rgba(255,255,255,0.92);
  letter-spacing: 2px; text-shadow: 0 4px 18px rgba(0,0,0,0.5); z-index: 1; transition: transform 0.3s;
}
.game-card:hover .cover-mono { transform: scale(1.12); }
.card-link { display: inline-block; margin-top: 12px; color: var(--green); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; transition: letter-spacing 0.2s; }
.game-card:hover .card-link, .upcoming-card:hover .card-link { letter-spacing: 2px; }

/* upcoming monogram badge */
.upcoming-mono {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  font-family: 'Orbitron'; font-weight: 900; font-size: 1.25rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.upcoming-card .card-link { margin-top: 14px; }

/* ===== Event kind badges & legend ===== */
.kind-badge {
  display: inline-block; font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 9px; border-radius: 6px; margin-bottom: 8px;
}
.kind-badge.comp { background: var(--green); color: #07210a; }
.kind-badge.expo { background: var(--cyan); color: #062a2d; }
.events-legend {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px;
}
.legend-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; color: var(--muted); font-size: 0.95rem;
}
.legend-item .kind-badge { margin: 0 8px 0 0; vertical-align: middle; }

/* ===== Game detail page ===== */
.game-detail { max-width: 1100px; margin: 0 auto; padding: 110px 5vw 70px; }
.game-detail .crumb { color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; letter-spacing: 0.5px; }
.game-detail .crumb a { color: var(--muted); }
.game-detail .crumb a:hover { color: var(--green); }

.gd-hero { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; margin-bottom: 30px; }
.gd-cover {
  border-radius: var(--radius); min-height: 360px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border: 1px solid var(--line);
}
.gd-cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 15%, rgba(255,255,255,0.14), transparent 55%); }
.gd-cover-mono {
  position: absolute; top: 24px; left: 26px; font-family: 'Orbitron'; font-weight: 900;
  font-size: 3.4rem; color: rgba(255,255,255,0.9); letter-spacing: 3px; text-shadow: 0 6px 22px rgba(0,0,0,0.5);
}
.gd-cover-title {
  position: relative; z-index: 1; font-family: 'Orbitron'; font-weight: 700; font-size: 1.5rem;
  color: #fff; text-shadow: 0 3px 14px rgba(0,0,0,0.6); line-height: 1.2;
}
.gd-meta h1 { font-family: 'Orbitron'; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.05; margin: 8px 0 6px; }
.gd-statusline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gd-score { font-family: 'Orbitron'; font-weight: 700; color: var(--green); font-size: 1.05rem; }
.gd-status { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 11px; border-radius: 6px; }
.gd-status.released { background: rgba(99,199,13,0.14); color: var(--green); border: 1px solid var(--green-dim); }
.gd-status.upcoming { background: rgba(155,92,255,0.16); color: #c2a3ff; border: 1px solid var(--purple); }
.gd-studio { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }
.gd-studio span { opacity: 0.8; }
.gd-facts { display: flex; gap: 30px; margin-bottom: 18px; }
.gd-flabel { display: block; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.4px; }
.gd-fval { display: block; font-weight: 700; font-size: 1.05rem; margin-top: 3px; }
.gd-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.gd-chip-label { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.4px; margin-right: 4px; }
.chip-static { background: var(--bg-3); border: 1px solid var(--line); color: var(--text); font-size: 0.82rem; padding: 5px 12px; border-radius: 20px; }
.chip-static.green-chip { color: var(--green); border-color: var(--green-dim); background: rgba(99,199,13,0.08); }
.gd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.gd-actions.center { justify-content: center; }
.gd-actions .btn { padding: 11px 20px; font-size: 0.9rem; text-transform: none; letter-spacing: 0; }

.gd-section { padding: 34px 0; border-top: 1px solid var(--line); }
.gd-section h2 { font-family: 'Orbitron'; font-size: 1.5rem; font-weight: 700; margin-bottom: 18px; }
.gd-about { color: var(--muted); font-size: 1.12rem; max-width: 800px; line-height: 1.7; }
.gd-note { color: var(--muted); font-size: 0.85rem; margin-top: 14px; font-style: italic; }

.gd-shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.shot {
  height: 200px; border-radius: 12px; border: 1px solid var(--line); position: relative;
  display: grid; place-items: center; overflow: hidden;
}
.shot-mono { font-family: 'Orbitron'; font-weight: 900; font-size: 2.4rem; color: rgba(255,255,255,0.85); text-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.shot-tag { position: absolute; bottom: 10px; right: 12px; font-size: 0.74rem; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 6px; }

.req-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.req-col { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.req-col h4 { font-size: 1rem; color: var(--green); margin-bottom: 12px; letter-spacing: 0.5px; }
.req-col table { width: 100%; border-collapse: collapse; }
.req-col th { text-align: left; color: var(--muted); font-weight: 600; font-size: 0.85rem; padding: 7px 0; width: 90px; vertical-align: top; }
.req-col td { color: var(--text); font-size: 0.9rem; padding: 7px 0; }
.req-col tr { border-bottom: 1px solid var(--line); }
.req-col tr:last-child { border-bottom: none; }

.gd-cta { text-align: center; }
.gd-back { display: inline-block; margin-top: 22px; color: var(--muted); font-weight: 600; }
.gd-back:hover { color: var(--green); }
.gd-notfound { text-align: center; padding: 120px 20px; }
.gd-notfound h1 { font-family: 'Orbitron'; font-size: 2rem; margin-bottom: 10px; }
.gd-notfound p { color: var(--muted); margin-bottom: 24px; }

/* ===== Single-row header ===== */
.navbar { display: flex; flex-direction: row; align-items: center; gap: 20px; padding: 10px 5vw; }
.navbar.scrolled { padding: 7px 5vw; }
.nav-logo { flex-shrink: 0; }

/* Brand wordmark logo (replaces the PNG) */
.brand-mark { font-family: 'Orbitron'; font-weight: 900; font-size: 1.4rem; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 7px; line-height: 1; white-space: nowrap; }
.brand-mark .glitch { color: var(--text); }
.brand-green { color: var(--green); text-shadow: 0 0 14px rgba(99,199,13,0.4); }

/* Nav links take the middle space, centered between logo and the search/icons */
.nav-links { display: flex; align-items: center; justify-content: center; gap: 17px; flex: 1; }
.nav-links a { font-size: 0.92rem; }

/* Right cluster: search + icons + discord */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Borderless action icons */
.icon-btn { position: relative; background: none; border: none; color: var(--muted); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; display: grid; place-items: center; transition: all 0.2s; }
.icon-btn:hover { color: var(--green); background: rgba(99,199,13,0.08); }
.icon-btn svg { display: block; }
.icon-btn .ico-heart { display: flex; }
.icon-btn.has .ico-heart svg { fill: #ff5470; stroke: #ff5470; }
.badge { position: absolute; top: 1px; right: 1px; background: var(--green); color: #07210a; font-family: 'Orbitron'; font-size: 0.58rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px; pointer-events: none; }

/* Search — inline on wide screens, icon + popover when space is tight */
.nav-search { position: relative; display: flex; align-items: center; }
.search-toggle { display: none; }
.search-field { position: relative; display: flex; align-items: center; }
.nav-search-ico { position: absolute; left: 13px; color: var(--muted); display: flex; pointer-events: none; }
.search-field input { width: 210px; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 9px 14px 9px 38px; border-radius: 22px; font-family: 'Rajdhani'; font-size: 0.95rem; }
.search-field input:focus { outline: none; border-color: var(--green); box-shadow: var(--glow); }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 280px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); max-height: 64vh; overflow-y: auto; display: none; z-index: 121; }
.search-results.open { display: block; }
.sr-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--card-hover); }
.sr-type { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); border: 1px solid var(--green-dim); border-radius: 5px; padding: 2px 6px; flex-shrink: 0; }
.sr-text { display: flex; flex-direction: column; min-width: 0; }
.sr-label { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-sub { color: var(--muted); font-size: 0.8rem; }
.sr-empty { padding: 16px; color: var(--muted); text-align: center; }

/* Account menu */
.account-wrap { position: relative; }
.account-menu { position: absolute; top: calc(100% + 10px); right: 0; width: 220px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: 0.2s; z-index: 130; }
.account-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.am-head { padding: 10px 12px; color: var(--muted); font-size: 0.85rem; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.am-item { display: block; width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: 'Rajdhani'; font-weight: 600; font-size: 0.95rem; padding: 10px 12px; border-radius: 8px; cursor: pointer; }
.am-item:hover { background: var(--card-hover); color: var(--green); }

/* Discord pill (end of the bar) */
.nav-discord { display: inline-flex; align-items: center; gap: 8px; background: rgba(88,101,242,0.14); border: 1px solid #5865F2; color: #aab2ff !important; padding: 8px 14px; border-radius: 22px; font-weight: 600; font-size: 0.84rem; white-space: nowrap; flex-shrink: 0; }
.nav-discord:hover { background: rgba(88,101,242,0.24); }
.dc-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ba55d; box-shadow: 0 0 8px #3ba55d; animation: pulse 1.6s infinite; flex-shrink: 0; }

/* Mobile menu — a standalone panel at the body root (NOT inside the navbar), so it
   isn't trapped by the navbar's backdrop-filter stacking/containing block. */
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px); z-index: 180; opacity: 0; pointer-events: none; transition: 0.3s; }
.nav-backdrop.show { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: 300px; max-width: 84vw; z-index: 190;
  background: var(--bg-2); border-left: 1px solid var(--line); box-shadow: var(--shadow);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.5,0,.2,1);
  display: flex; flex-direction: column; padding: 76px 26px 28px; overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu .nav-close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 42px; height: 42px; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); border-radius: 10px; font-size: 1.2rem; cursor: pointer; }
.mobile-menu .nav-close:hover { border-color: var(--green); color: var(--green); }
.mobile-links { display: flex; flex-direction: column; }
.mobile-links a { font-size: 1.12rem; font-weight: 600; color: var(--muted); padding: 13px 4px; border-bottom: 1px solid var(--line); transition: 0.2s; }
.mobile-links a:hover, .mobile-links a.active { color: var(--green); padding-left: 10px; }
.mobile-discord { margin-top: 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: rgba(88,101,242,0.16); border: 1px solid #5865F2; color: #aab2ff; padding: 13px; border-radius: 12px; font-weight: 700; }
.mobile-discord:hover { background: rgba(88,101,242,0.26); color: #fff; }
@media (min-width: 1381px) { .mobile-menu, .nav-backdrop { display: none; } }
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

/* Collapse the search to an icon when the bar gets tight */
@media (max-width: 1600px) {
  .search-toggle { display: grid; }
  .nav-search-ico { display: none; }
  .search-field { position: absolute; top: calc(100% + 12px); right: 0; width: 320px; max-width: 86vw; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 8px; display: none; box-shadow: var(--shadow); z-index: 131; }
  .nav-search.open .search-field { display: flex; flex-wrap: wrap; }
  .search-field input { width: 100%; padding-left: 14px; }
  .search-results { position: static; flex-basis: 100%; margin-top: 8px; box-shadow: none; }
}

/* On smaller screens hide the inline nav and use the burger + mobile-menu panel */
@media (max-width: 1380px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .navbar.menu-open .burger { display: none; } /* avoid a 2nd X next to the close button */
  .nav-discord .ndc-count { display: none; }
}

/* ===== Favourite heart on cards ===== */
.fav-toggle { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; border-radius: 9px; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-size: 1rem; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(3px); transition: 0.2s; z-index: 3; }
.fav-toggle:hover { border-color: #ff5470; color: #ff5470; }
.fav-toggle.active { background: #ff5470; border-color: #ff5470; color: #fff; }
.product-thumb .fav-toggle { left: auto; right: 10px; }
.fav-toggle.corner { top: 14px; right: 16px; left: auto; }
.gd-fav.active { border-color: #ff5470; color: #ff5470; }

/* Favourites drawer extras */
.ci-mono { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; font-family: 'Orbitron'; font-weight: 900; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.cart-item a.ci-info { text-decoration: none; }
.cart-item a.ci-info:hover .ci-name { color: var(--green); }
.fav-remove { background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); width: 28px; height: 28px; border-radius: 7px; cursor: pointer; flex-shrink: 0; }
.fav-remove:hover { border-color: #ff5470; color: #ff5470; }

/* ===== Footer brand ===== */
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo .brand-mark { font-size: 1.35rem; }
.footer-discord { display: inline-flex; align-items: center; gap: 8px; background: rgba(88,101,242,0.14); border: 1px solid #5865F2; color: #aab2ff; padding: 8px 14px; border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin: 6px 0 16px; }
.footer-discord:hover { background: rgba(88,101,242,0.24); color: #fff; }
.footer-discord strong { color: #fff; }

/* ===== Discord band (home) ===== */
.discord-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: linear-gradient(135deg, rgba(88,101,242,0.16), rgba(99,199,13,0.06)); border: 1px solid #3a3f6b; border-radius: 20px; padding: 36px 40px; }
.dc-badge { display: inline-block; background: #5865F2; color: #fff; font-family: 'Orbitron'; font-weight: 700; font-size: 0.68rem; letter-spacing: 2px; padding: 5px 12px; border-radius: 6px; margin-bottom: 14px; }
.discord-band-text .section-title, .discord-band-text .section-desc { text-align: left; }
.discord-band-text .section-desc { margin-top: 8px; }
.discord-band-text strong { color: #fff; }
.dc-online-text { color: var(--green) !important; }
.discord-band-cta { display: flex; flex-direction: column; gap: 12px; min-width: 210px; }

/* ===== Discord hub (community) ===== */
.discord-hub { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.dc-left { background: linear-gradient(135deg, rgba(88,101,242,0.18), rgba(20,24,40,0.4)); border: 1px solid #3a3f6b; border-radius: 18px; padding: 36px; }
.dc-left h2 { font-family: 'Orbitron'; font-size: 1.7rem; margin-bottom: 12px; }
.dc-left p { color: var(--muted); margin-bottom: 22px; }
.dc-stats { display: flex; gap: 40px; margin-bottom: 26px; }
.dc-num { font-family: 'Orbitron'; font-size: 2.1rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; line-height: 1; }
.dc-num.online { color: var(--green); }
.dc-lbl { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }
.dc-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.dc-channel { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: 0.2s; }
.dc-channel:hover { border-color: #5865F2; transform: translateY(-3px); }
.dc-channel-name { display: block; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.dc-channel-desc { color: var(--muted); font-size: 0.85rem; }

/* ===== LFG board ===== */
.lfg-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; }
.lfg-form { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; position: sticky; top: 130px; }
.lfg-form h3 { font-family: 'Orbitron'; font-size: 1.15rem; margin-bottom: 18px; }
.lfg-form .field { margin-bottom: 16px; }
.lfg-form input, .lfg-form select, .lfg-form textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); border-radius: 10px; padding: 11px 14px; font-family: 'Rajdhani'; font-size: 1rem; }
.lfg-form textarea { resize: vertical; }
.lfg-form input:focus, .lfg-form select:focus, .lfg-form textarea:focus { outline: none; border-color: var(--green); }
.lfg-disclaimer { color: var(--muted); font-size: 0.78rem; margin-top: 12px; text-align: center; }
.lfg-board { display: flex; flex-direction: column; gap: 14px; }
.lfg-card { display: flex; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: 0.2s; }
.lfg-card:hover { border-color: var(--green); }
.lfg-avatar { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-family: 'Orbitron'; font-weight: 900; color: #fff; flex-shrink: 0; }
.lfg-main { flex: 1; min-width: 0; }
.lfg-top { display: flex; align-items: baseline; gap: 10px; }
.lfg-name { font-weight: 700; font-size: 1.05rem; }
.lfg-time { color: var(--muted); font-size: 0.78rem; }
.lfg-tags { display: flex; gap: 8px; margin: 6px 0; flex-wrap: wrap; }
.lfg-game { background: rgba(99,199,13,0.12); color: var(--green); font-size: 0.78rem; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.lfg-plat { background: var(--bg-3); color: var(--muted); font-size: 0.78rem; padding: 3px 10px; border-radius: 20px; }
.lfg-note { color: var(--muted); font-size: 0.92rem; }
.lfg-connect { padding: 9px 18px !important; font-size: 0.85rem; flex-shrink: 0; }
.lfg-live { border-color: rgba(99,199,13,0.45); box-shadow: 0 0 0 1px rgba(99,199,13,0.15) inset; }
.lfg-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; color: var(--green); background: rgba(99,199,13,0.12); border: 1px solid rgba(99,199,13,0.35); padding: 2px 8px; border-radius: 20px; text-transform: uppercase; }
.lfg-spots { background: rgba(99,199,13,0.12); color: var(--green); font-weight: 600; }

/* ===== Legal pages (terms / privacy) ===== */
.legal { max-width: 800px; margin: 0 auto; padding: 50px 5vw 80px; }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.legal p { color: #c6ced8; line-height: 1.8; margin-bottom: 16px; }
.legal h2 { font-family: 'Orbitron'; font-size: 1.25rem; font-weight: 700; margin: 34px 0 12px; color: var(--text); }
.legal ul { margin: 0 0 16px 22px; color: #c6ced8; line-height: 1.8; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); }
.legal-note { font-size: 0.9rem; color: var(--muted); font-style: italic; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 30px; }
.legal .gd-back { display: inline-block; margin-top: 20px; color: var(--muted); font-weight: 600; }
.legal .gd-back:hover { color: var(--green); }

/* ===== Product detail page ===== */
.product-page { max-width: 1140px; margin: 0 auto; padding: 104px 5vw 70px; }
.product-page .crumb { color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; }
.product-page .crumb a { color: var(--muted); }
.product-page .crumb a:hover { color: var(--green); }
.product-page .crumb span { color: var(--text); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: start; }
.product-detail > * { min-width: 0; } /* stop a large image from blowing out its grid column */
.pd-gallery { background: #fff; border: 1px solid var(--line); border-radius: 16px; height: 440px; display: grid; place-items: center; padding: 28px; overflow: hidden; }
.pd-gallery img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.pd-brand { color: var(--green); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.pd-info h1 { font-family: 'Orbitron'; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; line-height: 1.12; margin: 8px 0 12px; }
.pd-rating { color: #ffb020; font-size: 1.05rem; margin-bottom: 16px; }
.pd-rating .star-dim { color: var(--muted); }
.pd-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-bottom: 20px; color: var(--muted); font-size: 0.9rem; }
.pd-stock { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 700; }
.pd-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.pd-metaitem b { color: var(--text); }
.pd-price { font-family: 'Orbitron'; font-size: 2.2rem; font-weight: 900; color: var(--green); margin-bottom: 22px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-actions .btn { padding: 13px 26px; }

/* Description + specs sections underneath */
.pd-overview { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; margin-top: 46px; align-items: start; }
.pd-block { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; }
.pd-block h2 { font-family: 'Orbitron'; font-size: 1.2rem; margin-bottom: 16px; }
.pd-desc-block p { color: #c6ced8; line-height: 1.8; font-size: 1.05rem; white-space: pre-line; }
.pd-specs { width: 100%; border-collapse: collapse; }
.pd-specs th { text-align: left; color: var(--muted); font-weight: 600; padding: 11px 0; width: 130px; border-bottom: 1px solid var(--line); vertical-align: top; }
.pd-specs td { color: var(--text); padding: 11px 0; border-bottom: 1px solid var(--line); }
.pd-specs tr:last-child th, .pd-specs tr:last-child td { border-bottom: none; }
.pd-related { margin-top: 64px; }
.pd-related h2 { font-family: 'Orbitron'; font-size: 1.4rem; margin-bottom: 22px; }
.pd-related .shop-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .pd-related .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pd-related .shop-grid { grid-template-columns: 1fr; } }

/* Homepage featured gear: clean 4 across, 2 rows */
.home .shop-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .home .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .home .shop-grid { grid-template-columns: 1fr; } }
@media (max-width: 800px) {
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .pd-gallery { height: 300px; }
  .pd-overview { grid-template-columns: 1fr; }
}

/* ===== Faceted shop (sidebar + grid) ===== */
.shop-layout { display: grid; grid-template-columns: 256px 1fr; gap: 28px; align-items: start; max-width: 1320px; }
.shop-sidebar { position: sticky; top: 80px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px; max-height: calc(100vh - 100px); overflow-y: auto; }
.sidebar-close { display: none; width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 10px; border-radius: 8px; cursor: pointer; margin-bottom: 14px; font-weight: 600; }
.filter-block { padding: 16px 0; border-bottom: 1px solid var(--line); }
.filter-block:first-of-type { padding-top: 0; }
.fb-head { font-family: 'Orbitron'; font-weight: 700; font-size: 0.92rem; margin-bottom: 10px; }
.cat-tree { list-style: none; }
.cat-link { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: 'Rajdhani'; font-weight: 600; font-size: 0.98rem; padding: 7px 8px; border-radius: 8px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.cat-link:hover { background: var(--bg-3); }
.cat-link.active { color: var(--green); background: rgba(99,199,13,0.08); }
.cat-count { color: var(--muted); font-size: 0.76rem; font-weight: 600; }
.subcat { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 6px; }
.cat-item.open .subcat { max-height: 1000px; }
.sub-check { display: flex; align-items: center; gap: 7px; font-size: 0.87rem; color: var(--muted); padding: 5px 6px; cursor: pointer; }
.sub-check span { margin-left: auto; font-size: 0.72rem; opacity: 0.7; }
.sub-check:hover { color: var(--text); }
.check-list { display: flex; flex-direction: column; }
#brandList { max-height: 252px; overflow-y: auto; padding-right: 4px; }
.chk { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--muted); padding: 6px 6px; border-radius: 7px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.chk:hover { color: var(--text); background: var(--bg-3); }
.chk i { margin-left: auto; font-style: normal; font-size: 0.74rem; opacity: 0.55; }
/* Custom themed checkboxes */
.chk input, .sub-check input { appearance: none; -webkit-appearance: none; width: 17px; height: 17px; border: 1.5px solid var(--line); border-radius: 5px; background: var(--bg-3); cursor: pointer; position: relative; flex-shrink: 0; transition: 0.15s; }
.chk input:hover, .sub-check input:hover { border-color: var(--green-dim); }
.chk input:checked, .sub-check input:checked { background: var(--green); border-color: var(--green); }
.chk input:checked::after, .sub-check input:checked::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #07210a; font-size: 11px; font-weight: 900; }
.brand-search { width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 8px 11px; border-radius: 8px; margin-bottom: 8px; font-family: 'Rajdhani'; font-size: 0.92rem; }
.brand-search:focus { outline: none; border-color: var(--green); }
.price-range { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-range input { width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 8px 10px; border-radius: 8px; font-family: 'Rajdhani'; }
.price-range input:focus { outline: none; border-color: var(--green); }
.price-apply { padding: 9px; font-size: 0.85rem; }
#clearFilters { margin-top: 16px; padding: 10px; font-size: 0.85rem; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
#resultCount { color: var(--muted); font-weight: 600; }
.toolbar-right { display: flex; gap: 10px; align-items: center; }
#sortSelect { background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 9px 12px; border-radius: 8px; font-family: 'Rajdhani'; font-size: 0.92rem; cursor: pointer; }
.filter-toggle { display: none; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 9px 14px; border-radius: 8px; font-family: 'Rajdhani'; font-weight: 700; cursor: pointer; }
.shop-empty { color: var(--muted); padding: 50px 20px; text-align: center; }
.shop-main .shop-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ===== Article page ===== */
.article-page { padding-top: 64px; }
.article-hero {
  position: relative; min-height: 440px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; padding: 5vw;
}
.article-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,15,0.35) 0%, rgba(10,12,15,0.55) 50%, rgba(10,12,15,0.96) 100%); }
.article-hero-inner { position: relative; max-width: 860px; margin: 0 auto; width: 100%; }
.article-hero .crumb { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.article-hero .crumb a { color: var(--muted); }
.article-hero .crumb a:hover { color: var(--green); }
.article-hero .media-type { position: static; display: inline-block; margin-bottom: 14px; }
.article-hero h1 { font-family: 'Orbitron'; font-size: clamp(1.8rem, 4.5vw, 3.1rem); font-weight: 900; line-height: 1.1; max-width: 18ch; }
.article-meta { color: var(--text); opacity: 0.85; margin-top: 16px; font-size: 0.95rem; letter-spacing: 0.3px; }

.article-body { max-width: 760px; margin: 0 auto; padding: 50px 5vw 30px; }
.article-lead { font-size: 1.35rem; line-height: 1.6; color: var(--text); margin-bottom: 30px; font-weight: 500; }
.article-body h2 { font-family: 'Orbitron'; font-size: 1.4rem; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.article-body h2 + p { margin-top: 0; }
.article-body p { font-size: 1.12rem; line-height: 1.8; color: #c6ced8; margin-bottom: 20px; }
.article-body .gd-back { display: inline-block; margin-top: 30px; color: var(--muted); font-weight: 600; }
.article-body .gd-back:hover { color: var(--green); }

.article-related { max-width: 1100px; margin: 0 auto; padding: 30px 5vw 80px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all 0.25s; }
.related-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow); }
.related-thumb { height: 150px; position: relative; overflow: hidden; background: var(--bg-3); }
.related-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.related-title { padding: 14px 16px 18px; font-weight: 700; font-size: 1.02rem; line-height: 1.35; }

/* ===== Games page tabs ===== */
.games-panel.hidden { display: none; }

/* ===== Feed page ===== */
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.feed-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all 0.28s; }
.feed-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.feed-thumb { aspect-ratio: 16 / 9; position: relative; display: grid; place-items: center; overflow: hidden; }
.feed-thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12), transparent 55%); }
.feed-play { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,0.45); border: 2px solid rgba(255,255,255,0.85); color: #fff; display: grid; place-items: center; font-size: 1.2rem; padding-left: 4px; backdrop-filter: blur(3px); transition: 0.25s; }
.feed-card:hover .feed-play { background: var(--green); border-color: var(--green); color: #07210a; transform: scale(1.12); }
.feed-plat { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.feed-plat.youtube { background: #ff0000; color: #fff; }
.feed-plat.twitch { background: #9146ff; color: #fff; }
.feed-plat.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.feed-plat.tiktok { background: #010101; color: #fff; border: 1px solid #25f4ee; }
.feed-tag { position: absolute; top: 10px; right: 10px; z-index: 2; font-size: 0.7rem; color: #fff; background: rgba(0,0,0,0.5); padding: 3px 9px; border-radius: 6px; }
.feed-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.feed-creator { color: var(--green); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.feed-title { font-size: 1.08rem; font-weight: 700; line-height: 1.3; margin: 5px 0 12px; flex: 1; }
.feed-watch { color: var(--muted); font-weight: 700; font-size: 0.85rem; transition: 0.2s; }
.feed-card:hover .feed-watch { color: var(--green); }

.follow-strip { margin-top: 64px; }
.creator-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.creator-chip { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.cc-mono { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; font-family: 'Orbitron'; font-weight: 900; font-size: 0.95rem; color: #fff; flex-shrink: 0; }
.cc-name { font-weight: 700; }
.cc-links { display: flex; gap: 12px; margin-top: 3px; }
.cc-links a { color: var(--muted); font-size: 0.82rem; font-weight: 600; transition: 0.2s; }
.cc-links a:hover { color: var(--green); }

/* ===== Hire a Server: VPS plans ===== */
.vps-intro { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.vps-intro p { color: var(--muted); font-size: 1.08rem; }
.vps-intro strong { color: var(--green); }
.game-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.game-chips span { background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; padding: 5px 13px; border-radius: 20px; }

.billing-toggle { display: flex; gap: 4px; width: max-content; background: var(--bg-3); border: 1px solid var(--line); border-radius: 24px; padding: 4px; margin: 0 auto 36px; }
.bt-opt { background: none; border: none; color: var(--muted); font-family: 'Rajdhani'; font-weight: 700; font-size: 0.95rem; padding: 9px 26px; border-radius: 20px; cursor: pointer; transition: 0.2s; }
.bt-opt.active { background: var(--green); color: #07210a; }

.vps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 300px)); gap: 22px; justify-content: center; }
.vps-players { display: inline-block; background: rgba(99,199,13,0.12); color: var(--green); font-weight: 700; font-size: 0.82rem; padding: 4px 13px; border-radius: 20px; margin-bottom: 14px; }
.gs-note { text-align: center; color: var(--muted); margin: 26px auto 0; max-width: 640px; }
.gs-note a { color: var(--green); font-weight: 600; }

/* How it works (1-2-3 strip) */
.hiw-section { margin-bottom: 50px; }
.how-it-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.hiw-step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; transition: border-color 0.2s; }
.hiw-step:hover { border-color: var(--green); }
.hiw-step:not(:last-child)::after { content: '→'; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 1.4rem; z-index: 1; }
.hiw-num { font-family: 'Orbitron'; font-weight: 900; font-size: 2.1rem; color: var(--green); opacity: 0.55; display: block; line-height: 1; margin-bottom: 12px; }
.hiw-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.hiw-step p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
@media (max-width: 760px) {
  .how-it-works { grid-template-columns: 1fr; }
  .hiw-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
}
.vps-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; position: relative; transition: all 0.28s; }
.vps-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.vps-card.popular { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), var(--shadow); }
.vps-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #07210a; font-family: 'Orbitron'; font-weight: 700; font-size: 0.66rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.vps-name { font-family: 'Orbitron'; font-size: 1.3rem; font-weight: 900; margin-bottom: 2px; }
.vps-tag { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 8px; }
.vps-price { font-family: 'Orbitron'; font-size: 1.9rem; font-weight: 900; color: var(--green); line-height: 1; }
.vps-price small { font-family: 'Rajdhani'; font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.vps-sub { color: var(--muted); font-size: 0.82rem; margin: 8px 0 18px; }
.vps-specs { list-style: none; margin-bottom: 16px; }
.vps-specs li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.vps-specs li span { color: var(--muted); }
.vps-specs li b { color: var(--text); font-weight: 700; }
.vps-specs li b.yes { color: var(--green); }
.vps-best { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; flex: 1; }
.vps-card .btn { margin-top: auto; }

.vps-included { margin-top: 70px; }
.vps-included h2 { font-family: 'Orbitron'; font-size: 1.7rem; text-align: center; margin-bottom: 32px; }
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.incl-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.incl-ico { font-size: 2rem; display: block; margin-bottom: 12px; }
.incl-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.incl-item p { color: var(--muted); font-size: 0.92rem; }
.vps-cta { text-align: center; margin-top: 60px; padding: 40px; background: linear-gradient(135deg, rgba(99,199,13,0.1), rgba(155,92,255,0.06)); border: 1px solid var(--line); border-radius: 20px; }
.vps-cta h2 { font-family: 'Orbitron'; font-size: 1.5rem; margin-bottom: 8px; }
.vps-cta p { color: var(--muted); margin-bottom: 20px; }

/* Configurator + add-ons */
.config-section { margin-top: 70px; }
.field em { color: var(--green); font-style: normal; font-weight: 600; font-size: 0.85rem; float: right; }
.addons-ref { margin-top: 70px; }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 0.92rem; color: var(--muted); }
.addon b { color: var(--text); }
.addon-tick { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--green); color: #07210a; font-weight: 900; flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-toggle { display: inline-flex; }
  .sidebar-close { display: block; }
  .shop-sidebar {
    position: fixed; top: 0; left: 0; height: 100vh; width: 320px; max-width: 86vw; z-index: 195;
    border-radius: 0; max-height: none; transform: translateX(-100%); transition: transform 0.3s ease;
  }
  .shop-sidebar.open { transform: none; }
}
@media (max-width: 960px) {
  .hire-wrap { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .event-card { grid-template-columns: auto 1fr; }
  .event-prize { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; justify-content: space-between; }
  .gd-hero { grid-template-columns: 1fr; }
  .gd-cover { min-height: 240px; }
  .events-legend { grid-template-columns: 1fr; }
  .discord-hub { grid-template-columns: 1fr; }
  .dc-channels { grid-template-columns: 1fr 1fr; }
  .lfg-wrap { grid-template-columns: 1fr; }
  .lfg-form { position: static; }
  .vps-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  /* Keep the top bar compact so the burger always fits in portrait */
  .navbar { gap: 8px; }
  .brand-mark { font-size: 1.05rem; gap: 5px; }
  .nav-right { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; }
  .account-wrap { display: none; } /* sign-in is a placeholder; reachable in the menu */
  .nav-discord { display: none; }
  .discord-band { padding: 26px; }
  .dc-stats { gap: 26px; }
  .dc-channels { grid-template-columns: 1fr; }
  .lfg-card { flex-wrap: wrap; }
  .lfg-connect { width: 100%; }
  .hero-stats { gap: 30px; }
  .stat .num { font-size: 2rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gd-shots { grid-template-columns: 1fr; }
  .req-tables { grid-template-columns: 1fr; }
  .gd-facts { gap: 20px; }
  .vps-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Nav dropdowns (Servers / News)
   =================================================================== */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-toggle {
  background: none; border: none; cursor: pointer; font-family: 'Rajdhani'; font-weight: 600;
  font-size: 0.96rem; color: var(--muted); letter-spacing: 0.3px; padding: 4px 0;
  display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s; position: relative;
}
.nav-dd-toggle::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--green); transition: width 0.25s ease; box-shadow: var(--glow); }
.nav-dd:hover .nav-dd-toggle, .nav-dd.active .nav-dd-toggle { color: var(--text); }
.nav-dd.active .nav-dd-toggle { color: var(--green); }
.nav-dd:hover .nav-dd-toggle::after, .nav-dd.active .nav-dd-toggle::after { width: 100%; }
.dd-caret { font-size: 0.58rem; transition: transform 0.2s; opacity: 0.8; }
.nav-dd:hover .dd-caret, .nav-dd.open .dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 200px; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; z-index: 120;
}
.nav-dd-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: 0.92rem; color: var(--muted); white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-dd-menu a::after { display: none; }
.nav-dd-menu a:hover { background: var(--bg-3); color: var(--text); }
.nav-dd-menu a.active { color: var(--green); background: rgba(99,199,13,0.08); }
/* Mobile menu: dropdowns become accordions */
.mobile-links .nav-dd { display: block; border-bottom: 1px solid var(--line); }
.mobile-links .nav-dd-toggle { width: 100%; justify-content: space-between; font-size: 1.12rem; color: var(--muted); padding: 13px 4px; }
.mobile-links .nav-dd-toggle:hover { color: var(--green); }
.mobile-links .nav-dd-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: none; padding: 0 0 6px 14px; min-width: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-links .nav-dd.open .nav-dd-menu { max-height: 320px; }
.mobile-links .nav-dd-menu a { font-size: 1rem; padding: 10px 8px; }

/* ===================================================================
   Event card → clickable link + mobile label spacing
   =================================================================== */
a.event-info { display: block; cursor: pointer; }
a.event-info:hover h3 { color: var(--green); }
.event-date .kind-badge { display: inline-block; margin-bottom: 8px; }
@media (max-width: 560px) {
  .event-card { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .event-date { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; min-width: 0; padding: 11px 14px; text-align: left; }
  .event-date .kind-badge { margin-bottom: 0; order: 3; margin-left: auto; }
  .event-date .d { font-size: 1.5rem; }
  .event-date .m, .event-date .y { font-size: 0.8rem; }
  .event-info { margin-top: 2px; }
  .event-info .event-tags { margin: 12px 0; }
  .event-prize { flex-direction: column; align-items: flex-start; gap: 10px; }
  .event-prize .btn { margin-top: 0; }
}

/* ===================================================================
   Hire a Server: filtered all-servers browser
   =================================================================== */
.hire-layout { display: grid; grid-template-columns: 256px 1fr; gap: 28px; align-items: start; margin-top: 8px; }
.hire-sidebar { position: sticky; top: 80px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px; max-height: calc(100vh - 100px); overflow-y: auto; }
.hire-sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hire-sidebar-head h3 { font-size: 1rem; }
.hire-sidebar-head .sidebar-close { width: 34px; height: 34px; margin: 0; padding: 0; display: none; place-items: center; font-size: 1rem; }
.hire-sidebar .filter-block h4 { font-family: 'Orbitron'; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.filter-list { display: flex; flex-direction: column; }
.hire-bar { margin-bottom: 18px; }
.hire-count { color: var(--muted); font-weight: 600; }
.filter-toggle-btn { display: none; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); padding: 10px 16px; border-radius: 8px; font-family: 'Rajdhani'; font-weight: 700; cursor: pointer; margin-bottom: 16px; }
.hire-sidebar #gsClear { margin-top: 14px; }
.hire-main .vps-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); justify-content: start; }
@media (max-width: 1000px) {
  .hire-layout { grid-template-columns: 1fr; }
  .filter-toggle-btn { display: inline-flex; }
  .hire-sidebar-head .sidebar-close { display: grid; }
  .hire-sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 320px; max-width: 86vw; z-index: 195; border-radius: 0; max-height: none; transform: translateX(-100%); transition: transform 0.3s ease; }
  .hire-sidebar.open { transform: none; }
}
@media (max-width: 560px) { .hire-main .vps-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   Clips reel (Instagram-style lightbox)
   =================================================================== */
button.feed-card { cursor: pointer; text-align: left; font: inherit; color: inherit; width: 100%; }
.reel { position: fixed; inset: 0; z-index: 300; background: rgba(6,8,11,0.93); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; }
.reel.open { display: flex; }
.reel-stage { width: min(440px, 92vw); height: min(80vh, 800px); }
.reel-card { position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); box-shadow: var(--shadow); animation: reelIn 0.3s ease; }
@keyframes reelIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.reel-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 18%, rgba(255,255,255,0.1), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.88) 100%); }
.reel-mono { position: absolute; top: 36%; left: 0; right: 0; transform: translateY(-50%); text-align: center; font-family: 'Orbitron'; font-weight: 900; font-size: 4rem; color: rgba(255,255,255,0.16); letter-spacing: 4px; }
.reel-plat { top: 16px; left: 16px; }
.reel-play { position: absolute; top: 36%; left: 50%; transform: translate(-50%,-50%); z-index: 3; width: 78px; height: 78px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.9); color: #fff; display: grid; place-items: center; font-size: 1.7rem; padding-left: 5px; transition: 0.2s; }
.reel-play:hover { background: var(--green); border-color: var(--green); color: #07210a; transform: translate(-50%,-50%) scale(1.1); }
.reel-meta { position: relative; z-index: 3; padding: 22px; }
.reel-tag { display: inline-block; font-size: 0.7rem; background: rgba(0,0,0,0.5); color: #fff; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; }
.reel-creator { font-family: 'Orbitron'; font-weight: 700; color: #fff; font-size: 1.05rem; }
.reel-title { color: #e8edf2; font-size: 1.15rem; margin: 4px 0 16px; line-height: 1.3; }
.reel-watch { width: 100%; }
.reel-close { position: absolute; top: 18px; right: 18px; z-index: 5; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; }
.reel-close:hover { border-color: var(--green); color: var(--green); }
.reel-nav { position: absolute; left: 50%; transform: translateX(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); font-size: 1.05rem; cursor: pointer; display: grid; place-items: center; transition: 0.2s; }
.reel-nav:hover { border-color: var(--green); color: var(--green); }
.reel-nav.prev { top: 18px; }
.reel-nav.next { bottom: 18px; }
.reel-counter { position: absolute; bottom: 24px; right: 26px; z-index: 5; color: var(--muted); font-weight: 600; font-size: 0.85rem; }
@media (max-width: 600px) {
  .reel-stage { width: 100vw; height: 100vh; }
  .reel-card { border-radius: 0; border: none; }
  .reel-nav { left: auto; right: 16px; transform: none; }
  .reel-nav.prev { top: auto; bottom: 86px; }
  .reel-nav.next { bottom: 22px; }
  .reel-counter { left: 18px; right: auto; bottom: 28px; }
}

/* ===================================================================
   Event detail page
   =================================================================== */
.event-page { padding-top: 64px; }
.event-hero { position: relative; min-height: 360px; display: flex; align-items: flex-end; padding: 5vw; overflow: hidden; }
.event-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,15,0.35) 0%, rgba(10,12,15,0.92) 100%); }
.event-hero-mono { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); font-family: 'Orbitron'; font-weight: 900; font-size: clamp(5rem, 18vw, 13rem); color: rgba(255,255,255,0.06); line-height: 1; z-index: 0; }
.event-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; width: 100%; }
.event-hero .crumb { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.event-hero .crumb a:hover { color: var(--green); }
.event-hero .kind-badge { margin-bottom: 14px; }
.event-hero h1 { font-family: 'Orbitron'; font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; line-height: 1.1; }
.event-hero-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 14px 0 12px; color: var(--text); opacity: 0.9; font-weight: 600; }
.event-detail { max-width: 980px; margin: 0 auto; padding: 48px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.event-detail-main .article-lead { font-size: 1.2rem; color: var(--text); margin-bottom: 18px; }
.event-detail-main p { color: var(--muted); font-size: 1rem; margin-bottom: 16px; }
.event-fact-card { position: sticky; top: 90px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.efact { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.efact:last-of-type { border-bottom: none; }
.efact span { color: var(--muted); }
.efact b { text-align: right; }
.event-fact-card .btn { margin-top: 18px; }
.event-rel .related-thumb { position: relative; display: grid; place-items: center; min-height: 130px; }
.event-rel-date { position: absolute; bottom: 10px; left: 12px; z-index: 2; font-weight: 700; color: #fff; font-size: 0.82rem; }
.event-rel-mono { font-family: 'Orbitron'; font-weight: 900; font-size: 2.4rem; color: rgba(255,255,255,0.18); }
.event-rel .kind-badge { position: absolute; top: 10px; left: 10px; z-index: 2; }
@media (max-width: 800px) { .event-detail { grid-template-columns: 1fr; gap: 28px; } .event-fact-card { position: static; } }
