:root {
  --bg: #0a0c0e;
  --bg-soft: #101316;
  --surface: #14181b;
  --surface-2: #1a1f22;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f1f2ef;
  --muted: #929a9f;
  --lime: #dfff35;
  --lime-text: #dfff35;
  --orange: #e7672f;
  --cyan: #68e4f2;
  --display: 'Arial Narrow', 'Roboto Condensed', Impact, sans-serif;
  --sans: Inter, 'Segoe UI', system-ui, sans-serif;
  color-scheme: dark;
}

[data-theme='light'] {
  --bg: #f1f2ed;
  --bg-soft: #e6e8e2;
  --surface: #fafbf7;
  --surface-2: #dde0d8;
  --line: rgba(16, 20, 22, 0.12);
  --line-strong: rgba(16, 20, 22, 0.22);
  --text: #121618;
  --muted: #687075;
  --lime-text: #536900;
  color-scheme: light;
}

a[href="configs.html?game=rust"] { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 15px; line-height: 1.6; overflow-x: hidden; transition: background .25s, color .25s; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -50px; z-index: 999; background: var(--lime); color: #111; padding: 10px 16px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { height: 76px; position: absolute; inset: 0 0 auto; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; }
.nav-shell { min-width: 0; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; font: 700 21px/1 var(--display); letter-spacing: .035em; }
.brand > span:last-child > span { color: var(--lime); }
.brand-mark { width: 31px; height: 27px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; transform: skew(-11deg); }
.brand-mark i { background: var(--lime); }
.brand-mark i:nth-child(2) { height: 72%; align-self: end; }
.brand-mark i:nth-child(3) { height: 42%; align-self: end; }
.desktop-nav { min-width: 0; display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.5vw, 22px); }
.desktop-nav a { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; letter-spacing: .02em; transition: .2s; }
.desktop-nav a:hover { color: var(--lime); }
.nav-dropdown { position: relative; display: flex; align-items: center; align-self: stretch; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-trigger::after { content: '⌄'; color: rgba(255,255,255,.42); font-size: 10px; transform: translateY(-1px); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 40;
  width: 196px;
  padding: 9px;
  display: grid;
  gap: 2px;
  background: rgba(12, 15, 17, .96);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: .18s;
  backdrop-filter: blur(16px);
}
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.desktop-nav .nav-dropdown-panel a { padding: 7px 9px; color: rgba(255,255,255,.7); font-size: 11px; border-radius: 4px; }
.desktop-nav .nav-dropdown-panel a:hover { background: rgba(223,255,53,.1); color: var(--lime); }
.desktop-nav .nav-dropdown-panel .nav-dropdown-all { margin-bottom: 4px; color: #fff; background: rgba(255,255,255,.06); font-weight: 850; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.steam-login-button { min-height: 34px; padding: 0 11px; border: 1px solid rgba(204,255,0,.55); border-radius: 2px; background: rgba(204,255,0,.08); color: var(--accent); font: 700 10px/1 var(--font-mono, monospace); letter-spacing: .04em; cursor: pointer; white-space: nowrap; }
.profile-link { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.profile-link:hover { color: var(--lime); }
.steam-login-button:hover, .steam-login-button.is-authenticated { background: var(--accent); color: #101214; }
.telegram-header-link { color: var(--lime); font: 800 11px/1 var(--sans); letter-spacing: 0; }
.telegram-header-link:hover { color: #111; background: var(--lime); }
.icon-button, .menu-button { width: 40px; height: 40px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer; border-radius: 50%; transition: .2s; }
.icon-button:hover { background: rgba(255,255,255,.1); }
.icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .sun { display: none; }
[data-theme='light'] .theme-toggle .moon { display: none; }
[data-theme='light'] .theme-toggle .sun { display: block; }
.menu-button, .mobile-nav { display: none; }

.hero { min-height: 790px; height: 100svh; max-height: 960px; position: relative; display: flex; align-items: center; isolation: isolate; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -3; background: url('assets/hero-worlds-hq-20260705.webp') center/cover no-repeat; transform: scale(1.015); animation: heroReveal 1.2s ease-out both; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,7,9,.95) 0%, rgba(5,7,9,.76) 35%, rgba(5,7,9,.12) 72%), linear-gradient(0deg, rgba(5,7,9,.92), transparent 34%); }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 67%); }
.hero-content { padding-top: 38px; }
.eyebrow, .kicker { text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); }
.eyebrow > span { width: 25px; height: 2px; background: var(--lime); }
.hero h1 { max-width: 720px; margin: 20px 0 22px; font: 600 clamp(72px, 8.2vw, 126px)/.91 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.78); font-style: normal; }
.hero-content > p { max-width: 580px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.7; }
.hero-search { margin-top: 34px; width: min(660px, 100%); height: 63px; position: relative; display: flex; align-items: center; background: rgba(16,19,21,.86); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(15px); box-shadow: 0 14px 50px rgba(0,0,0,.25); }
.hero-search > svg, .search-dialog-head svg { width: 20px; height: 20px; margin: 0 16px 0 20px; fill: none; stroke: #b6bdc1; stroke-width: 1.7; }
.hero-search input { min-width: 0; flex: 1; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; }
.hero-search input::placeholder { color: #7d868b; }
kbd { padding: 2px 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 4px; background: rgba(255,255,255,.06); color: #7f888d; font: 10px var(--sans); }
.hero-search > button { height: 100%; margin-left: 13px; padding: 0 25px; border: 0; background: var(--lime); color: #101310; font-weight: 800; cursor: pointer; }
.quick-links { display: flex; gap: 10px; align-items: center; margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.45); }
.quick-links button { border: 0; padding: 0; background: transparent; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.26); cursor: pointer; }
.search-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20; background: #15191c; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 22px 55px rgba(0,0,0,.4); display: none; }
.search-suggestions.show { display: block; }
.suggestion { width: 100%; border: 0; background: none; padding: 13px 17px; display: flex; align-items: center; justify-content: space-between; text-align: left; cursor: pointer; }
.suggestion:hover { background: rgba(255,255,255,.06); }
.suggestion span { color: #fff; }
.suggestion small { color: #7e888c; }
.suggestion-all { border-top: 1px solid rgba(255,255,255,.09); }
.suggestion-all span, .suggestion-all small { color: var(--lime); }
.hero-stats { position: absolute; right: max(24px, calc((100vw - 1240px)/2)); bottom: 42px; display: flex; gap: 50px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font: 600 22px var(--display); letter-spacing: .03em; }
.hero-stats span { color: rgba(255,255,255,.48); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue { position: absolute; bottom: 34px; left: 50%; width: 24px; height: 39px; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 3px; height: 7px; left: 10px; top: 8px; background: var(--lime); border-radius: 3px; animation: scrollCue 1.6s infinite; }

.section { padding: 112px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.kicker { display: block; color: var(--orange); margin-bottom: 9px; }
.section-heading h2, .popular-panel h2, .newsletter h2 { margin: 0; font: 600 clamp(38px, 4vw, 59px)/1 var(--display); text-transform: uppercase; letter-spacing: -.025em; }
.section-heading > p { max-width: 480px; margin: 0 0 5px; color: var(--muted); }
.filter-tabs { max-width: 100%; display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
.filter-tabs button { flex: 0 0 auto; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); padding: 10px 16px; cursor: pointer; font-size: 12px; font-weight: 700; white-space: nowrap; }
.filter-tabs button.active { color: var(--text); border-color: var(--lime); }
.editorial-grid { display: grid; grid-template-columns: 1.45fr .9fr; gap: 22px; }
.editorial-grid > *, .updates-layout > *, .updates-main, .popular-panel { min-width: 0; }
.editorial-grid.is-loading { min-height: 520px; }
.editorial-grid.is-loading > * { visibility: hidden; }
.editorial-grid.is-loading::before { content: ""; grid-column: 1 / -1; visibility: visible; border: 1px solid var(--line); background: linear-gradient(90deg, var(--surface) 25%, var(--bg-soft) 50%, var(--surface) 75%); background-size: 220% 100%; animation: article-loading 1.2s linear infinite; }
@keyframes article-loading { to { background-position: -220% 0; } }
.story-card { position: relative; background: var(--surface); border: 1px solid var(--line); overflow: hidden; transition: transform .25s, border-color .25s; }
.story-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.story-card > a { height: 100%; display: grid; grid-template-rows: 270px 1fr; }
.story-featured { grid-row: span 2; }
.story-featured > a { grid-template-rows: 390px 1fr; }
.compact-story > a { grid-template-columns: 180px 1fr; grid-template-rows: auto; }
.story-visual { min-height: 180px; position: relative; overflow: hidden; background: #14181b; }
.story-game, .label { position: absolute; top: 17px; left: 17px; z-index: 2; padding: 5px 9px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.game-cs2 { background: var(--lime); color: #121512; }
.game-rust { background: var(--orange); color: #fff; }
.visual-ak { background: radial-gradient(circle at 62% 46%, #494f35 0, #222821 37%, #111513 72%); }
.visual-ak::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 42px, rgba(255,255,255,.02) 43px 44px); }
.weapon-art { position: absolute; inset: 20% 1% 5%; display: grid; place-items: center; filter: drop-shadow(0 25px 22px rgba(0,0,0,.65)); transform: rotate(-4deg); }
.weapon-art svg { width: 97%; fill: #8d9574; }
.visual-base { background: linear-gradient(160deg, #25201c, #7a3d22); }
.visual-base::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 72% 26%, rgba(255,191,111,.38), transparent 40%), linear-gradient(0deg, #151310, transparent 65%); }
.base-art { position: absolute; right: 9%; bottom: 8%; width: 62%; height: 68%; border: 4px solid #27221d; transform: perspective(600px) rotateY(-10deg); box-shadow: 18px 20px 0 rgba(0,0,0,.2); }
.base-art i { position: absolute; background: #3a3229; border: 2px solid #1d1a17; }
.base-art i:nth-child(1) { inset: 0 48% 0 0; }
.base-art i:nth-child(2) { inset: 0 0 47% 52%; }
.base-art i:nth-child(3) { inset: 57% 0 0 52%; }
.base-art i:nth-child(4) { width: 28%; height: 34%; bottom: 0; left: 14%; background: #101314; }
.visual-map { background: #12282b; }
.map-lines { position: absolute; inset: 15%; background: linear-gradient(90deg, transparent 43%, #53878b 44% 48%, transparent 49%), linear-gradient(25deg, transparent 43%, #3b6a6e 44% 48%, transparent 49%); border: 7px solid #315c60; clip-path: polygon(0 20%, 34% 20%, 34% 0, 83% 0, 83% 32%, 100% 32%, 100% 83%, 63% 83%, 63% 100%, 10% 100%, 10% 62%, 0 62%); opacity: .8; }
.visual-components { background: radial-gradient(circle at 50% 50%, #67412f, #211b18 67%); display: grid; place-items: center; }
.gear-art { font: 100px/1 serif; color: #9a6a47; text-shadow: 14px 18px 20px rgba(0,0,0,.55); transform: rotate(-14deg); }
.managed-visual { display: grid; place-items: center; isolation: isolate; }
.managed-visual::before { content: ''; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle, #000, transparent 78%); }
.managed-cs2 { background: radial-gradient(circle at 60% 45%, #354d51, #111719 68%); }
.managed-rust { background: radial-gradient(circle at 60% 45%, #744029, #191310 68%); }
.article-monogram { position: relative; color: var(--lime); font: 700 clamp(62px, 8vw, 108px)/1 var(--display); letter-spacing: -.08em; text-shadow: 0 20px 24px rgba(0,0,0,.42); transform: rotate(-5deg); }
.managed-rust .article-monogram { color: var(--orange); }
.story-body { padding: 25px 27px 27px; }
.meta { display: flex; gap: 12px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.meta span + span::before, .meta time::before { content: '·'; margin-right: 12px; }
.story-body h3 { margin: 13px 0 10px; font: 600 24px/1.25 var(--display); text-transform: uppercase; letter-spacing: -.01em; }
.story-featured .story-body h3 { font-size: clamp(29px, 3vw, 42px); }
.story-body p { margin: 0 0 18px; color: var(--muted); }
.read-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.read-link b { color: var(--lime-text); font-size: 17px; }
.save-button { position: absolute; right: 17px; top: 17px; z-index: 3; width: 35px; height: 35px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(10,12,14,.5); display: grid; place-items: center; cursor: pointer; }
.save-button svg { width: 15px; fill: none; stroke: #fff; stroke-width: 1.6; }
.save-button.saved { background: var(--lime); border-color: var(--lime); }
.save-button.saved svg { fill: #111; stroke: #111; }
.section-action { display: flex; justify-content: center; margin-top: 35px; }
.text-button { font-size: 11px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; border-bottom: 1px solid var(--line-strong); padding: 8px 0; }
.text-button span { color: var(--lime-text); }
.story-card.is-hidden { display: none; }

.partner-strip { padding: 14px 0; background: #111517; border-bottom: 1px solid var(--line); }
.partner-strip[hidden] { display: none; }
.partner-strip-inner { min-height: 48px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; gap: 16px; align-items: center; }
.partner-strip span { padding: 4px 7px; border: 1px solid var(--line-strong); color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.partner-strip strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.partner-strip a { padding: 8px 12px; background: var(--lime); color: #111; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.partner-strip small { color: var(--muted); font-size: 10px; }
.home-ad { padding: 18px 0; background: var(--bg); }
.home-ad[hidden] { display: none; }
.home-ad-inner { min-height: 96px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 20px 24px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(202, 255, 28, .1), rgba(17, 21, 23, .98)); color: #fff; }
.home-ad-inner span { padding: 5px 8px; border: 1px solid rgba(202, 255, 28, .5); color: var(--lime-text); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.home-ad-inner strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 600 24px/1 var(--display); text-transform: uppercase; }
.home-ad-inner small { color: var(--muted); font-size: 10px; text-align: right; }
.home-ad-compact { padding-top: 0; }
.home-ad-compact .home-ad-inner { min-height: 76px; background: #111517; }
.home-ad-compact .home-ad-inner strong { font-size: 18px; }

.game-worlds { background: var(--bg-soft); }
.worlds-heading > p { max-width: 500px; }
.world-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.world-card { min-height: 600px; position: relative; overflow: hidden; border: 1px solid var(--line); padding: 30px; color: #fff; isolation: isolate; }
.world-card::before { content: ''; position: absolute; inset: 0; z-index: -3; transition: transform .5s ease; }
.world-card:hover::before { transform: scale(1.035); }
.cs-world::before { background: radial-gradient(circle at 73% 40%, rgba(96,223,238,.2), transparent 31%), linear-gradient(135deg, #14282b 0 38%, #0d1113 38% 100%); }
.rust-world::before { background: radial-gradient(circle at 69% 24%, rgba(239,142,62,.35), transparent 35%), linear-gradient(145deg, #5e2f1e, #171411 57%); }
.world-noise { position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E"); }
.world-top { display: flex; justify-content: space-between; align-items: center; }
.world-index { font: 500 17px var(--display); color: rgba(255,255,255,.42); }
.status-dot { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.54); }
.status-dot::before { content: ''; display: inline-block; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; margin-right: 7px; box-shadow: 0 0 9px var(--lime); }
.world-content { position: absolute; left: 42px; right: 42px; bottom: 39px; z-index: 2; }
.world-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: var(--cyan); }
.rust-world .world-tag { color: #f5a16d; }
.world-content h3 { margin: 15px 0 16px; font: 700 clamp(68px, 7vw, 103px)/.77 var(--display); letter-spacing: -.05em; }
.world-content h3 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.world-content p { max-width: 440px; color: rgba(255,255,255,.6); }
.world-content ul { display: flex; gap: 27px; padding: 0; margin: 25px 0 28px; list-style: none; }
.world-content li { display: flex; flex-direction: column; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.world-content li strong { color: #fff; font: 600 17px var(--display); letter-spacing: 0; }
.world-link { display: inline-flex; gap: 22px; align-items: center; padding: 13px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; transition: .2s; }
.world-link:hover { background: #fff; color: #101214; }
.crosshair { position: absolute; right: 9%; top: 17%; width: 235px; height: 235px; opacity: .24; border: 1px solid var(--cyan); border-radius: 50%; }
.crosshair::before, .crosshair::after, .crosshair i { content: ''; position: absolute; background: var(--cyan); }
.crosshair::before { width: 1px; height: 125%; top: -12%; left: 50%; }
.crosshair::after { height: 1px; width: 125%; left: -12%; top: 50%; }
.crosshair i:first-child { width: 36px; height: 36px; left: calc(50% - 18px); top: calc(50% - 18px); border: 1px solid var(--cyan); border-radius: 50%; background: transparent; }
.radiation-mark { position: absolute; right: 6%; top: 11%; color: var(--orange); opacity: .28; font-size: 245px; line-height: 1; transform: rotate(7deg); }

.database { background: var(--bg); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 275px; padding: 25px; background: var(--surface); border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; transition: .25s; overflow: hidden; }
.category-card::before { content: none; }
.category-card > * { position: relative; z-index: 1; }
.category-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.category-card:hover b i { transform: translateX(4px); }
.category-card.cat-wide { grid-column: span 2; }
.category-icon { width: 76px; height: 76px; margin-bottom: auto; display: grid; place-items: center; color: var(--lime-text); }
.category-icon svg { width: 58px; height: 58px; fill: currentColor; }
.category-icon img { display: block; width: 58px; height: 58px; object-fit: contain; }
.category-card.cat-wide .category-icon { width: 96px; }
.category-card.cat-wide .category-icon svg { width: 84px; height: 58px; }
.category-card.cat-wide .category-icon img { width: 96px; height: 58px; }
.managed-visual { background-size: cover; background-position: center; }
.icon-rifle { color: var(--cyan); width: 110px; }
.icon-rifle svg { width: 110px; }
.icon-diamond { color: #b47afa; }
.icon-map { color: #63d8e3; }
.icon-box, .icon-home { color: var(--orange); }
.icon-book { color: #f2cf68; }
[data-theme='light'] .icon-book { color: #765b00; }
.category-game { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.category-card h3 { margin: 5px 0 4px; font: 600 28px var(--display); text-transform: uppercase; }
.story-card h3, .category-card h3, .world-content h3, .section-heading h2 { overflow-wrap: anywhere; }
.category-card p { margin: 0 0 12px; color: var(--muted); font-size: 12px; }
.category-card b { display: flex; justify-content: space-between; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.category-card b i { color: var(--lime-text); font-style: normal; transition: .2s; }
.cat-guides { background: linear-gradient(125deg, var(--surface), color-mix(in srgb, var(--surface) 75%, var(--orange))); }

.updates { background: var(--bg-soft); }
.updates-layout { display: grid; grid-template-columns: 1.6fr .75fr; gap: 75px; }
.timeline article { display: grid; grid-template-columns: 70px 1fr 35px; align-items: center; gap: 24px; padding: 23px 0; border-top: 1px solid var(--line); }
.timeline article:last-child { border-bottom: 1px solid var(--line); }
.timeline-date { display: flex; flex-direction: column; align-items: center; color: var(--muted); text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.timeline-date strong { color: var(--text); font: 500 34px/1 var(--display); }
.timeline .label { position: static; display: inline-block; margin-bottom: 8px; }
.timeline h3 { margin: 0 0 5px; font: 600 20px/1.25 var(--display); text-transform: uppercase; }
.timeline p { margin: 0; color: var(--muted); font-size: 12px; }
.timeline article > a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s; }
.timeline article:hover > a { background: var(--lime); color: #111; border-color: var(--lime); }
.popular-panel { border: 1px solid var(--line); padding: 30px; background: var(--surface); }
.popular-panel h2 { font-size: 39px; margin: 3px 0 25px; }
.popular-panel ol { list-style: none; padding: 0; margin: 0; }
.popular-panel li { border-top: 1px solid var(--line); }
.popular-panel li:last-child { border-bottom: 1px solid var(--line); }
.popular-panel li a { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 17px 0; }
.popular-panel li > a > span { color: var(--orange); font: 500 17px var(--display); }
.popular-panel small { display: block; color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.popular-panel strong { display: block; font: 500 16px/1.3 var(--display); text-transform: uppercase; }

.newsletter { padding: 75px 0; background: var(--lime); color: #111512; }
.newsletter-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 90px; align-items: center; }
.newsletter .eyebrow { color: #3d4518; }
.newsletter .eyebrow > span { background: var(--orange); }
.newsletter h2 { margin: 12px 0; font-size: clamp(44px, 5vw, 72px); }
.newsletter p { max-width: 560px; margin: 0; color: #50582a; }
.newsletter form { display: grid; grid-template-columns: 1fr auto; }
.newsletter input { height: 58px; padding: 0 18px; border: 1px solid #2f3615; background: rgba(255,255,255,.3); color: #151812; outline: none; }
.newsletter input:focus { background: rgba(255,255,255,.55); }
.newsletter input::placeholder { color: #666f3c; }
.newsletter button { border: 0; background: #111512; color: #fff; padding: 0 25px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; cursor: pointer; }
.newsletter button span { color: var(--lime); margin-left: 12px; }
.newsletter small { grid-column: 1 / -1; margin-top: 8px; color: #69713f; font-size: 8px; }
.newsletter-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.newsletter-consent { grid-column: 1 / -1; display: flex; gap: 9px; align-items: flex-start; margin-top: 10px; color: #50582a; font-size: 10px; line-height: 1.45; cursor: pointer; }
.newsletter-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 0; accent-color: #111512; }
.newsletter-consent a { color: #20250f; text-decoration: underline; }
.newsletter button:disabled { opacity: .65; cursor: wait; }

.footer { padding: 72px 0 25px; background: #080a0b; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2.1fr repeat(4, 1fr); gap: 42px; }
.footer-brand p { color: #71797d; max-width: 300px; margin-top: 20px; font-size: 12px; }
.footer-grid h3 { margin: 3px 0 17px; color: #777f83; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid > div:not(:first-child) a { color: #b6babc; font-size: 12px; }
.footer-grid > div:not(:first-child) a:hover { color: var(--lime); }
.footer-social-link { display: flex; align-items: center; gap: 9px; }
.telegram-badge { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border: 1px solid rgba(223,255,53,.35); color: var(--lime); font-size: 9px; font-weight: 900; }
.footer-support-link { display: flex; flex-direction: column; gap: 1px; overflow-wrap: anywhere; }
.footer-support-link span:first-child { color: #777f83; font-size: 9px; text-transform: uppercase; }
.footer-bottom { margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 30px; color: #555d61; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom div { display: flex; gap: 20px; }

.search-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: start center; padding-top: 15vh; }
.search-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.74); backdrop-filter: blur(7px); cursor: default; }
.search-dialog { width: min(670px, calc(100% - 32px)); position: relative; background: #121619; color: #fff; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 35px 90px rgba(0,0,0,.55); animation: modalIn .22s ease-out; }
.search-dialog-head { height: 70px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.search-dialog-head input { flex: 1; height: 100%; border: 0; outline: 0; background: transparent; color: #fff; font-size: 18px; }
.search-dialog-head kbd { margin-right: 20px; }
.modal-results { padding: 10px; max-height: 360px; overflow: auto; }
.modal-result { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px; border: 0; background: transparent; color: #fff; text-align: left; cursor: pointer; }
.modal-result:hover, .modal-result.active { background: rgba(255,255,255,.06); }
.modal-result div { display: flex; flex-direction: column; }
.modal-result small { color: #7e888d; font-size: 10px; }
.modal-result > span { font-size: 11px; color: var(--lime); }
.modal-result-all { margin-top: 5px; border-top: 1px solid rgba(255,255,255,.08); }
.modal-result-all strong, .modal-result-all > span { color: var(--lime); }
.search-hint { display: flex; gap: 20px; padding: 11px 20px; border-top: 1px solid rgba(255,255,255,.08); color: #687176; font-size: 9px; }
.toast { position: fixed; z-index: 120; right: 24px; bottom: 24px; padding: 12px 17px; background: var(--lime); color: #111; font-size: 11px; font-weight: 800; transform: translateY(30px); opacity: 0; pointer-events: none; transition: .25s; }
.toast.show { transform: translateY(0); opacity: 1; }

@keyframes heroReveal { from { opacity: 0; transform: scale(1.06); } }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(-14px) scale(.98); } }

@media (max-width: 1160px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; gap: 5px; }
  .menu-button span { width: 19px; height: 1px; background: #fff; transition: .2s; }
  .menu-button.open span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button.open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { display: flex; position: absolute; top: 76px; left: 0; right: 0; max-height: calc(100vh - 76px); overflow-y: auto; padding: 20px 24px 24px; background: #0b0e10; flex-direction: column; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.1); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav-sub { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: -6px 0 2px; padding: 9px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); }
  .mobile-nav-sub a { color: rgba(255,255,255,.62); font-size: 11px; }
  .hero-stats { right: 24px; gap: 22px; }
  .world-grid, .updates-layout { grid-template-columns: 1fr; }
  .world-card { min-height: 560px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid { grid-template-columns: 2fr repeat(4, 1fr); gap: 24px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1240px); }
  .site-header { height: 66px; }
  .mobile-nav { top: 66px; }
  .hero { min-height: 760px; max-height: 850px; align-items: flex-start; }
  .hero-bg { background-position: 61% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,7,9,.94), rgba(5,7,9,.36)), linear-gradient(0deg, rgba(5,7,9,.95), transparent 45%); }
  .hero-content { padding-top: 145px; }
  .hero h1 { font-size: clamp(59px, 18vw, 88px); margin-top: 16px; }
  .hero-content > p { font-size: 14px; max-width: 90%; }
  .hero-search { height: 57px; margin-top: 25px; }
  .hero-search kbd, .hero-search > button { display: none; }
  .quick-links { flex-wrap: wrap; }
  .hero-stats { left: 16px; right: 16px; bottom: 35px; gap: 0; justify-content: space-between; }
  .hero-stats strong { font-size: 17px; }
  .scroll-cue { display: none; }
  .section { padding: 78px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading h2 { font-size: 42px; }
  .partner-strip-inner { grid-template-columns: 1fr auto; }
  .partner-strip span, .partner-strip small { grid-column: 1 / -1; }
  .home-ad-inner { grid-template-columns: 1fr; gap: 10px; min-height: 112px; padding: 18px; }
  .home-ad-inner strong { white-space: normal; font-size: 20px; }
  .home-ad-inner small { text-align: left; }
  .filter-tabs { width: 100%; }
  .editorial-grid { grid-template-columns: 1fr; }
  .story-featured { grid-row: auto; }
  .story-featured > a { grid-template-rows: 280px 1fr; }
  .story-card > a { grid-template-rows: 220px 1fr; }
  .compact-story > a { grid-template-columns: 130px 1fr; grid-template-rows: auto; }
  .story-body { padding: 20px; }
  .story-featured .story-body h3 { font-size: 28px; }
  .worlds-heading > p { margin-top: -15px; }
  .world-grid { gap: 14px; }
  .world-card { min-height: 520px; padding: 20px; }
  .world-content { left: 25px; right: 25px; bottom: 28px; }
  .world-content h3 { font-size: 66px; }
  .world-content ul { gap: 13px; }
  .crosshair { width: 160px; height: 160px; }
  .radiation-mark { font-size: 165px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card, .category-card.cat-wide { grid-column: auto; min-height: 235px; padding: 18px; }
  .category-icon { width: 55px; height: 55px; font-size: 48px; }
  .icon-rifle, .icon-rifle svg { width: 70px; }
  .category-card h3 { font-size: 22px; }
  .category-card p { display: none; }
  .updates-layout { gap: 50px; }
  .timeline article { grid-template-columns: 48px 1fr; gap: 14px; }
  .timeline article > a { display: none; }
  .newsletter { padding: 60px 0; }
  .newsletter form { grid-template-columns: 1fr; }
  .newsletter button { height: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .brand { font-size: 18px; }
  .brand-mark { width: 26px; height: 23px; }
  .header-actions { gap: 0; }
  .steam-login-button { max-width: 112px; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: 57px; }
  .hero-stats div:nth-child(2) { display: none; }
  .world-content p { font-size: 12px; }
  .world-content ul { display: grid; grid-template-columns: repeat(3, 1fr); }
  .world-link { width: 100%; justify-content: space-between; }
  .category-card { min-height: 215px; }
  .category-card h3 { font-size: 19px; }
  .category-card b { font-size: 8px; }
  .popular-panel { padding: 22px; }
  .newsletter h2 { font-size: 43px; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 20px, 1240px); }
  .brand { gap: 7px; font-size: 16px; }
  .brand-mark { width: 24px; height: 21px; }
  .header-actions { gap: 1px; }
  .icon-button, .menu-button { width: 34px; height: 34px; }
  .language-toggle { min-width: 34px; width: 34px; height: 34px; padding: 0; }
  .search-trigger { display: none; }
  .filter-tabs button { padding-inline: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.empty-articles {
  width: 100%;
  min-width: 0;
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 35px;
  border: 1px dashed var(--line);
  text-align: center;
  overflow-wrap: anywhere;
}
.empty-articles strong { font: 600 31px var(--display); text-transform: uppercase; }
.empty-articles span { color: var(--muted); font-size: 12px; }
.language-toggle {
  min-width: 42px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line, rgba(255,255,255,.16));
  background: transparent;
  color: var(--text, currentColor);
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.language-toggle:hover { border-color: var(--lime, #d8ff00); color: var(--lime-text, var(--lime, #d8ff00)); }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.legal-footer-links a { color: inherit; text-decoration: none; }
.legal-footer-links a:hover { color: var(--lime, #d8ff00); }
a[href="configs.html?game=cs2"] { display: none !important; }
