@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;
@layer legacy {
/* ============================================================
   Finargot.ru — Design System v2 «Aurum HUD»
   Кинозал + Dota 2 + терминал: глубокий сине-чёрный фон,
   золото прожектора (бренд-ладья/Aegis), терминальный зелёный
   (кодер), редкий Dire-красный (REC).
   Inter (body) · Unbounded (display) · JetBrains Mono (data)
   Dark theme, Lucide icons, no emoji
   ============================================================ */

400;500;600;700;800;900&family=Unbounded:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --bg:        #07070c;
  --bg2:       #0c0d15;
  --bg3:       #12131e;
  --bg4:       #1a1b2a;
  --border:    rgba(170,180,215,.10);
  --border-acc: rgba(233,182,77,.32);
  --acc:       #e9b64d;
  --acc-dim:   rgba(233,182,77,.10);
  --acc-hover: #f7cd6f;
  --acc-deep:  #c8912b;
  --cy:        #34d97b;
  --cy-dim:    rgba(52,217,123,.10);
  --red:       #ff5147;
  --red-dim:   rgba(255,81,71,.10);
  --txt:       #f2f1ea;
  --txt2:      #a6a7b5;
  --txt3:      #6b6c7c;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow:    0 10px 34px rgba(0,0,0,.5);
  --shadow-acc: 0 8px 32px rgba(233,182,77,.14);
  --transition: .2s ease;
  --font-disp: 'Unbounded', 'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;
  --glass:     rgba(9,9,15,.66);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
::selection { background: rgba(233,182,77,.28); color: #fff; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; border-radius: 4px; }

/* ---- Ambient background (fixed, ultra-subtle) ---- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 480px at 18% -8%, rgba(233,182,77,.07), transparent 60%),
    radial-gradient(780px 520px at 84% -4%, rgba(52,217,123,.045), transparent 60%),
    radial-gradient(900px 700px at 50% 108%, rgba(255,81,71,.035), transparent 55%);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(235,240,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--acc-deep); }

/* ============================================================
   HEADER / NAV — glass
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.site-header::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(233,182,77,.35) 50%, transparent 100%);
  pointer-events: none;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: .02em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), text-shadow var(--transition);
}
.nav-logo:hover { color: var(--acc-hover); text-shadow: 0 0 22px rgba(233,182,77,.45); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--txt2);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--txt);
  background: rgba(233,182,77,.08);
}
.nav-links a.active { color: var(--acc); }
.nav-links .nav-cta {
  background: var(--acc);
  color: #1a1206 !important;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--acc-hover); }

/* Steam top-up button (inside nav-links) */
.nav-steam-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b9df0 0%, #2f7be0 100%) !important;
  border: 1px solid rgba(120,200,255,.65);
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .18s, box-shadow .2s, filter .2s;
  text-decoration: none;
  line-height: 1;
  margin-left: 4px;
  box-shadow: 0 0 0 0 rgba(102,192,244,.55), 0 2px 10px rgba(43,140,244,.4);
  animation: navSteamPulse 2.6s ease-in-out infinite;
}
.nav-steam-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(102,192,244,.18), 0 6px 20px rgba(43,140,244,.55);
  color: #ffffff !important;
}
@keyframes navSteamPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102,192,244,.5), 0 2px 10px rgba(43,140,244,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(102,192,244,0), 0 4px 16px rgba(43,140,244,.55); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-steam-btn { animation: none; }
}
@media (max-width: 768px) {
  .nav-steam-btn {
    width: 100%;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13.5px;
    margin-left: 0;
    margin-top: 4px;
    justify-content: flex-start;
    gap: 8px;
  }
  .nav-steam-btn svg { width: 15px; height: 15px; }
}
@media (max-width: 960px) and (min-width: 769px) {
  .nav-steam-text { display: none; }
  .nav-steam-btn { padding: 5px 8px; margin-left: 2px; }
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt2);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 80px;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(12,13,21,.85));
}
.site-footer::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,182,77,.3), transparent);
}
/* legacy single-row footer (static articles) */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 600;
  color: var(--acc);
}
.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--txt2);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--border-acc);
  color: var(--acc);
  background: var(--acc-dim);
  transform: translateY(-2px);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-copy {
  color: var(--txt3);
  font-size: 12.5px;
}
/* new multi-column footer */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p {
  color: var(--txt3);
  font-size: 13px;
  line-height: 1.7;
  margin: 12px 0 16px;
  max-width: 300px;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 14px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--txt2);
  font-size: 13.5px;
  padding: 4px 0;
  transition: color var(--transition), transform var(--transition);
}
.footer-col a:hover { color: var(--acc); transform: translateX(3px); }
.footer-col a svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .7; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-title {
  font-family: var(--font-disp);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.22;
  margin-bottom: 8px;
}
.page-subtitle {
  color: var(--txt2);
  font-size: 1rem;
  margin-bottom: 40px;
}
.section-heading {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: var(--acc);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--acc), transparent);
  box-shadow: 0 0 12px rgba(233,182,77,.5);
  flex-shrink: 0;
}
.section-heading svg { width: 15px; height: 15px; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 40px 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-acc);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(180deg, var(--acc-hover) 0%, var(--acc-deep) 100%);
  color: #1a1206;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 4px 18px rgba(233,182,77,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 8px 28px rgba(233,182,77,.34);
}
.btn-outline {
  background: transparent;
  color: var(--acc);
  border: 1px solid var(--border-acc);
}
.btn-outline:hover { background: var(--acc-dim); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(235,240,255,.05);
  color: var(--txt2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(235,240,255,.09); color: var(--txt); transform: translateY(-1px); }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
}
.badge svg { width: 12px; height: 12px; }
.badge-acc {
  background: var(--acc-dim);
  border: 1px solid var(--border-acc);
  color: var(--acc);
}
.badge-neutral {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--txt2);
}

/* ============================================================
   VIDEOS GRID
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.video-card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.video-thumb {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg3);
  overflow: hidden;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt3);
}
.video-thumb-placeholder svg { width: 40px; height: 40px; }
.video-info {
  padding: 14px 16px 16px;
}
.video-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-title a { color: var(--txt); transition: color var(--transition); }
.video-title a:hover { color: var(--acc); }
.video-desc {
  font-size: 12.5px;
  color: var(--txt2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.video-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--txt3);
}
.video-meta-row svg { width: 13px; height: 13px; }
.video-meta-row span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   VIDEO DETAIL PAGE
   ============================================================ */
.video-page { padding: 32px 0 60px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--txt3);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--txt2); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb svg { width: 14px; height: 14px; }
.video-page-title {
  font-family: var(--font-disp);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 20px;
}
.video-player-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.video-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-description-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.blog-card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.blog-card-media {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--bg3);
}
.blog-card-media img,
.blog-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 20px 24px 24px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-title a { color: var(--txt); transition: color var(--transition); }
.blog-card-title a:hover { color: var(--acc); }
.blog-card-excerpt {
  color: var(--txt2);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--txt3);
}
.blog-card-footer svg { width: 13px; height: 13px; }
.blog-card-footer span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   BLOG POST
   ============================================================ */
.blog-post-page { padding: 32px 0 60px; }
.blog-post-header { margin-bottom: 28px; }
.blog-post-title {
  font-family: var(--font-disp);
  font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--txt3);
  flex-wrap: wrap;
  font-family: var(--mono);
}
.blog-post-meta svg { width: 13px; height: 13px; }
.blog-post-meta span { display: flex; align-items: center; gap: 4px; }
.blog-post-media {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg3);
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.blog-post-media img,
.blog-post-media video {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}
.blog-post-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--txt2);
}
.blog-post-content p { margin-bottom: 1em; }
.blog-post-content h2, .blog-post-content h3 { color: var(--txt); font-weight: 700; margin: 1.5em 0 .5em; }
.blog-post-content a { color: var(--acc); text-decoration: underline; text-decoration-color: var(--border-acc); }
.blog-post-content a:hover { color: var(--acc-hover); }
.blog-post-content code {
  background: var(--bg3);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: .9em;
  font-family: var(--mono);
}
.telegram-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 13.5px;
  color: var(--txt2);
  font-weight: 500;
  transition: all var(--transition);
}
.telegram-link-btn:hover {
  border-color: var(--border-acc);
  color: var(--acc);
  background: var(--acc-dim);
}
.telegram-link-btn svg { width: 16px; height: 16px; }

/* Comments */
.comments-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.comments-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.comments-title svg { width: 18px; height: 18px; color: var(--acc); }
.comment-item {
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.comment-author { font-size: 13.5px; font-weight: 600; }
.comment-username { color: var(--txt3); font-weight: 400; margin-left: 4px; }
.comment-date { font-size: 12px; color: var(--txt3); }
.comment-body { font-size: 13.5px; color: var(--txt2); line-height: 1.6; }
.comment-body a { color: var(--acc); }
.comment-item.spam { opacity: .5; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: all var(--transition);
}
.pagination svg { width: 14px; height: 14px; }
.pagination a:hover { border-color: var(--border-acc); color: var(--acc); transform: translateY(-1px); }
.pagination .current {
  background: linear-gradient(180deg, var(--acc-hover), var(--acc-deep));
  color: #1a1206;
  border-color: transparent;
  font-weight: 700;
}
.pagination .disabled { opacity: .35; pointer-events: none; }

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.page-banner {
  padding: 52px 24px 42px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(620px 260px at 22% 0%, rgba(233,182,77,.08), transparent 60%),
    linear-gradient(to bottom, var(--bg2), var(--bg));
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,182,77,.3), transparent);
}
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-banner h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.3rem, 3.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 8px;
}
.page-banner p { color: var(--txt2); font-size: 15px; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12.5px;
  color: var(--txt2);
}
.stat-pill svg { width: 13px; height: 13px; color: var(--acc); }
.stat-pill strong { color: var(--txt); }

/* ============================================================
   ARTICLE PAGES (battlepass, fantasy, patches)
   ============================================================ */
.article-hero {
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(680px 300px at 50% 0%, rgba(233,182,77,.07), transparent 60%),
    linear-gradient(to bottom, var(--bg2), var(--bg));
}
.article-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--acc-dim);
  border: 1px solid var(--border-acc);
  color: var(--acc);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-hero .lead {
  font-size: 1.05rem;
  color: var(--txt2);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.article-hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-body {
  padding: 56px 0;
}
.article-section {
  margin-bottom: 64px;
}
.article-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.article-section-heading svg {
  width: 20px;
  height: 20px;
  color: var(--acc);
  flex-shrink: 0;
}
.article-section p,
.article-section li {
  color: var(--txt2);
  font-size: 15px;
  line-height: 1.75;
}
.article-section ul {
  list-style: none;
  padding: 0;
}
.article-section li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.article-section li svg {
  width: 15px;
  height: 15px;
  color: var(--acc);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: var(--border-acc); transform: translateY(-2px); }
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--acc-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--acc); }
.feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--txt2); line-height: 1.6; }

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--acc-hover), var(--acc-deep));
  color: #1a1206;
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 13px; color: var(--txt2); line-height: 1.55; }

/* Games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.game-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  transition: border-color var(--transition), transform var(--transition);
}
.game-chip:hover { border-color: var(--border-acc); transform: translateX(3px); }
.game-chip svg { width: 16px; height: 16px; color: var(--acc); flex-shrink: 0; }

/* CTA Box */
.cta-box {
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(233,182,77,.12), transparent 70%),
    var(--acc-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  text-align: center;
  margin-top: 48px;
}
.cta-box h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.cta-box p { color: var(--txt2); font-size: 14.5px; margin-bottom: 22px; }

/* Highlight box */
.highlight-box {
  background: var(--bg2);
  border-left: 3px solid var(--acc);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--txt2);
}
.highlight-box strong { color: var(--txt); }

/* ============================================================
   INDEX / HOMEPAGE — legacy classes (kept for старые страницы)
   ============================================================ */
.hero-section {
  padding: 72px 24px 56px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--border-acc);
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--bg3);
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-name {
  font-family: var(--font-disp);
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 10px;
}
.hero-name span { color: var(--acc); }
.hero-desc {
  color: var(--txt2);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.hero-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.projects-section { padding: 64px 0; }
.project-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-top: 24px; }
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.project-card::before {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,182,77,.12), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.project-card:hover {
  border-color: var(--border-acc);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.project-card:hover::before { opacity: 1; }
.project-card-icon {
  width: 44px; height: 44px;
  background: var(--acc-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.project-card-icon svg { width: 22px; height: 22px; color: var(--acc); }
.project-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.project-card p { font-size: 13.5px; color: var(--txt2); line-height: 1.6; margin-bottom: 16px; }
.project-card-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.project-stat { font-size: 12px; color: var(--txt3); display: flex; align-items: center; gap: 4px; font-family: var(--mono); }
.project-stat svg { width: 13px; height: 13px; }
.project-stat strong { color: var(--acc); font-weight: 600; }

.socials-section { padding: 48px 0 0; border-top: 1px solid var(--border); }
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 4px;
}
@media (max-width: 520px) {
  .socials-grid { grid-template-columns: 1fr; }
}
.social-link {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.social-link svg { width: 32px; height: 32px; flex-shrink: 0; }
.social-link:hover { border-color: var(--border-acc); transform: translateY(-3px); box-shadow: var(--shadow); }
.social-link .s-body { min-width: 0; }
.social-link .s-name { display: block; font-weight: 700; font-size: 14.5px; color: var(--txt); }
.social-link .s-sub { display: block; font-family: var(--mono); font-size: 11.5px; color: var(--txt2); margin-top: 3px; white-space: nowrap; }
.social-link .s-go {
  margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(235,240,255,.05); border: 1px solid var(--border);
  color: var(--txt3);
  transition: all var(--transition);
}
.social-link .s-go svg { width: 13px; height: 13px; }
.social-link:hover .s-go { color: var(--acc); border-color: var(--border-acc); background: var(--acc-dim); transform: translateX(2px); }

/* ============================================================
   HOMEPAGE v2 «Aurum HUD» (hx-*)
   ============================================================ */
.hx-hero {
  position: relative;
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hx-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 380px at 24% -10%, rgba(233,182,77,.10), transparent 60%),
    radial-gradient(600px 380px at 86% 8%, rgba(52,217,123,.05), transparent 60%);
}
.hx-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}
.hx-title {
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.hx-title .g {
  background: linear-gradient(92deg, var(--acc-hover) 0%, var(--acc) 48%, #ff8a5c 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hx-sub {
  color: var(--txt2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.hx-sub strong { color: var(--txt); font-weight: 600; }
.hx-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.hx-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.hx-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--txt2);
  background: rgba(235,240,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 11px;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
a.hx-chip:hover { border-color: var(--border-acc); color: var(--acc); transform: translateY(-1px); }
.hx-chip svg { width: 12px; height: 12px; color: var(--acc); }

/* Карточка-профиль в hero */
.hx-panel {
  position: relative;
  background: linear-gradient(165deg, rgba(18,19,30,.85), rgba(9,9,15,.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow);
  overflow: hidden;
}
.hx-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.hx-id {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hx-ava {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hx-ava::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--acc), transparent 32%, rgba(52,217,123,.65) 52%, transparent 72%, var(--acc));
  animation: hxSpin 9s linear infinite;
}
@keyframes hxSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hx-ava::before { animation: none; } }
.hx-ava img {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
}
.hx-id-name { font-family: var(--font-disp); font-size: 15px; font-weight: 600; }
.hx-id-sub { font-family: var(--mono); font-size: 11px; color: var(--txt3); letter-spacing: .6px; margin-top: 2px; }
.hx-rows { display: flex; flex-direction: column; gap: 13px; }
.hx-row { display: grid; grid-template-columns: 132px 1fr auto; gap: 12px; align-items: center; }
.hx-row-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--txt3);
  white-space: nowrap;
}
.hx-bar {
  height: 5px;
  border-radius: 4px;
  background: rgba(235,240,255,.06);
  overflow: hidden;
}
.hx-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--acc-deep), var(--acc-hover));
  box-shadow: 0 0 12px rgba(233,182,77,.5);
  transition: width 1.1s cubic-bezier(.25,.8,.3,1);
}
.hx-row.cy .hx-bar i { background: linear-gradient(90deg, #128a4e, var(--cy)); box-shadow: 0 0 12px rgba(52,217,123,.4); }
.hx-row.rd .hx-bar i { background: linear-gradient(90deg, #a3271f, var(--red)); box-shadow: 0 0 12px rgba(255,81,71,.35); }
.hx-row-val {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--txt);
  white-space: nowrap;
}
/* Заголовки секций v2 */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.sec-head::after {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--acc), transparent);
  box-shadow: 0 0 14px rgba(233,182,77,.5);
}
.sec-title {
  font-family: var(--font-disp);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

/* Карточки «чем занимаюсь» */
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.act-card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.act-card:hover { border-color: var(--border-acc); transform: translateY(-3px); box-shadow: var(--shadow); }
.act-icon {
  width: 42px; height: 42px;
  background: var(--acc-dim);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.act-icon svg { width: 20px; height: 20px; color: var(--acc); }
.act-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.act-card p { font-size: 13.5px; color: var(--txt2); line-height: 1.65; }

/* Утилиты на главной */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.tool-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.tool-card:hover { border-color: var(--border-acc); transform: translateY(-3px); box-shadow: var(--shadow); }
.tool-ic {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--acc-dim);
  border: 1px solid var(--border-acc);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tool-ic svg { width: 18px; height: 18px; color: var(--acc); }
.tool-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.tool-card h3 span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cy);
  margin-left: 6px;
  text-transform: uppercase;
}
.tool-card p { font-size: 12.5px; color: var(--txt2); line-height: 1.55; }

/* Дуэт контента: блог + видео */
.content-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.content-tile {
  position: relative;
  display: block;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.content-tile::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(233,182,77,.14), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
}
.content-tile:hover { border-color: var(--border-acc); transform: translateY(-4px); box-shadow: var(--shadow); }
.content-tile:hover::before { opacity: 1; }
.content-tile h3 { font-family: var(--font-disp); font-size: 1.05rem; font-weight: 600; margin: 14px 0 8px; }
.content-tile p { font-size: 13.5px; color: var(--txt2); line-height: 1.65; margin-bottom: 16px; }
.content-tile .go {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--acc);
  transition: gap .2s ease;
}
.content-tile:hover .go { gap: 11px; }
.content-tile .go svg { width: 15px; height: 15px; }
@media (max-width: 700px) { .content-duo { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  background:
    radial-gradient(560px 260px at 50% 0%, rgba(233,182,77,.13), transparent 70%),
    linear-gradient(180deg, var(--bg2), rgba(12,13,21,.7));
  overflow: hidden;
}
.cta-band h2 { font-family: var(--font-disp); font-size: clamp(1.1rem, 2.6vw, 1.5rem); font-weight: 700; margin-bottom: 10px; }
.cta-band p { color: var(--txt2); font-size: 14.5px; max-width: 560px; margin: 0 auto 22px; }
.cta-band .row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Reveal on scroll */
[data-rvl] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.25,.8,.3,1);
}
[data-rvl].rvl-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-rvl] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PATCH PAGE (dota-741 style)
   ============================================================ */
.patch-hero {
  padding: 48px 24px 40px;
  background:
    radial-gradient(620px 280px at 50% 0%, rgba(233,182,77,.08), transparent 60%),
    linear-gradient(to bottom, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.patch-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.patch-hero h1 em { color: var(--acc); font-style: normal; }
.patch-hero .patch-sub {
  font-size: 1rem;
  color: var(--txt2);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   PATCH HERO (shared by 7.41x pages)
   ============================================================ */
.patch-hero-741a {
  background:
    radial-gradient(620px 280px at 50% 0%, rgba(233,182,77,.08), transparent 60%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px 32px;
  text-align: center;
}
.patch-hero-741a .p-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--acc-dim); border: 1px solid var(--border-acc);
  color: var(--acc); font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.patch-hero-741a .p-title {
  font-family: var(--font-disp);
  font-size: clamp(30px, 5.6vw, 54px); font-weight: 700;
  letter-spacing: -.01em; line-height: 1.08; margin-bottom: 12px;
}
.patch-hero-741a .p-title span { color: var(--acc); }
.patch-hero-741a .p-sub {
  font-size: 15px; color: var(--txt2); max-width: 520px;
  margin: 0 auto 18px; line-height: 1.55;
}
.patch-hero-741a .p-meta {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.patch-hero-741a .p-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 12.5px; color: var(--txt2); font-weight: 500;
}
.patch-hero-741a .p-pill.acc {
  border-color: var(--border-acc); color: var(--acc); background: var(--acc-dim);
}
.patch-hero-741a .p-pill a {
  color: inherit; display: flex; align-items: center; gap: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(7,7,12,.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    flex-direction: column;
    padding: 20px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 12px; font-size: 15px; }
  .nav-links .nav-cta { margin-left: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .videos-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .project-cards { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .article-hero h1 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .hero-name { font-size: clamp(1.5rem, 7vw, 2rem); }

  .cta-box { padding: 24px 20px 22px; }
  .article-hero { padding: 40px 20px 36px; }
  .page-banner { padding: 36px 20px 28px; }

  .hx-grid { grid-template-columns: 1fr; gap: 32px; }
  .hx-hero { padding: 44px 20px 40px; }
  .hx-row { grid-template-columns: 104px 1fr auto; gap: 9px; }

  /* Homepage about grid */
  .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Poker grid */
  .poker-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 480px) {
  .videos-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 8px; }
  .pagination a, .pagination span { padding: 7px 12px; font-size: 13px; }
  .cta-band { padding: 30px 18px; }
}

/* ============================================================
   DROPDOWN NAV
   ============================================================ */
@keyframes dropdownReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes mobileFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mobileFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--txt2);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nav-dropdown-trigger svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: var(--txt);
  background: rgba(233,182,77,.08);
}
.nav-dropdown-trigger.active { color: var(--acc); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 236px;
  background: rgba(17,18,28,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(200,210,240,.16);
  border-top: 2px solid rgba(233,182,77,.5);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.85), 0 4px 16px rgba(0,0,0,.6);
  padding: 6px;
  z-index: 9999;
}
/* Bridge the gap so hover isn't lost while moving cursor from trigger to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  animation: dropdownReveal .15s ease forwards;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  color: var(--txt2);
}
.nav-dropdown-item:hover {
  background: rgba(233,182,77,.08);
  color: var(--txt);
}
.nav-dropdown-item.active-patch {
  background: var(--acc-dim);
  color: var(--acc);
}
/* Main patch — accent colour, bold */
.nav-dropdown-item.nav-patch-major {
  font-size: 15px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: .01em;
}
.nav-dropdown-item.nav-patch-major:hover { color: var(--acc); background: var(--acc-dim); }

/* Hotfix sub-patch — muted, indented */
.nav-dropdown-item.nav-patch-hotfix {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt2);
  padding-left: 20px;
}
.nav-dropdown-item.nav-patch-hotfix:hover { color: var(--txt); }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 15px;
  }
  .nav-dropdown-trigger svg {
    width: 15px;
    height: 15px;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  /* Disable desktop bridge pseudo-element on mobile */
  .nav-dropdown-menu::before {
    content: none;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    animation: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(233,182,77,.3);
    border-radius: 0;
    background: rgba(233,182,77,.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 4px 0 6px 12px;
    margin-top: 2px;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: mobileFadeIn 0.2s ease both; /* no forwards fill — avoids transform carry-over */
  }
  .nav-dropdown-item {
    padding: 8px 10px;
    font-size: 14px;
  }
  /* Remove indent on mobile for sub-patch */
  .nav-patch-hotfix {
    padding-left: 10px;
  }
}

/* ============================================================
   STATS TABLE (fantasy scoring)
   ============================================================ */
.stats-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stats-table .stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.stats-table .stats-row:last-child { border-bottom: none; }
.stats-table .stats-row:nth-child(even) { background: var(--bg2); }
.stats-table .stats-row span:first-child { color: var(--txt); font-weight: 500; }
.stats-table .stats-row span:last-child { color: var(--acc); font-weight: 600; white-space: nowrap; }

/* ============================================================
   UTILS
   ============================================================ */
.text-acc { color: var(--acc); }
.text-muted { color: var(--txt2); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }

/* ══ About section (index.html) ══════════════════════════════ */
.about-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 8px;
}
.about-bio-lead {
  color: var(--txt);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 16px;
}
.about-bio-text {
  color: var(--txt2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.acc-text { color: var(--acc); }
.about-cards { display: flex; flex-direction: column; gap: 10px; }

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: default;
  transition: border-color .22s ease;
}
.about-stat-card:hover {
  border-color: var(--border-acc);
}

/* Events/media cards */
.media-event-card {
  transition: border-color .22s ease !important;
}
.media-event-card:hover {
  border-color: var(--border-acc) !important;
}
.about-stat-icon {
  width: 38px;
  height: 38px;
  background: var(--acc-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-stat-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.about-stat-label { font-size: 11px; color: var(--txt3); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.about-stat-value { font-size: 14.5px; font-weight: 700; color: var(--txt); }
.about-stat-sub { font-size: 12px; color: var(--txt3); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ══ Trust grid (battlepass-article.html) ════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.trust-card {
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-acc);
  box-shadow: 0 6px 20px rgba(233,182,77,.08);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--acc-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.trust-icon svg { width: 17px; height: 17px; stroke: var(--acc); }
.trust-card h4 { font-size: 14px; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.trust-card p { font-size: 13px; color: var(--txt2); line-height: 1.65; margin: 0; }

/* ── Playing cards (poker section) ── */
@keyframes dealIn {
  from { opacity:0; transform:rotate(var(--card-rot)) translate(-130px,-90px) scale(0.5); }
  to   { opacity:1; transform:rotate(var(--card-rot)) translate(0,0) scale(1); }
}
@keyframes flipCard {
  0%   { transform:rotateY(0deg); }
  100% { transform:rotateY(180deg); }
}
.play-card {
  width:90px; height:130px;
  perspective:700px;
  cursor:default;
  opacity:0;
}
.cards-ready .play-card {
  animation: dealIn .55s cubic-bezier(.34,1.4,.64,1) var(--deal-delay) both;
}
.play-card-inner {
  position:relative; width:100%; height:100%;
  transform-style:preserve-3d;
}
.cards-ready .play-card-inner {
  animation: flipCard .65s ease-in-out var(--flip-delay) forwards;
}
.play-card-back,
.play-card-front {
  position:absolute; inset:0;
  border-radius:12px;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.play-card-back {
  background:#151624;
  border:2px solid rgba(233,182,77,.4);
  box-shadow:0 8px 32px rgba(0,0,0,.4),0 0 0 1px rgba(233,182,77,.08);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.play-card-back::before {
  content:'';
  position:absolute; inset:8px;
  border:1.5px solid rgba(233,182,77,.2);
  border-radius:7px;
  background:repeating-linear-gradient(
    45deg,
    rgba(233,182,77,.07) 0px,rgba(233,182,77,.07) 2px,
    transparent 2px,transparent 9px
  );
}
.play-card-back::after {
  content:'♠';
  font-size:1.9rem;
  color:rgba(233,182,77,.18);
  position:relative; z-index:1;
}
.play-card-front {
  background:linear-gradient(135deg,#171827 0%,#10111c 100%);
  border:2px solid rgba(233,182,77,.5);
  box-shadow:0 8px 32px rgba(233,182,77,.2),0 0 0 1px rgba(233,182,77,.08);
  transform:rotateY(180deg);
  display:flex; flex-direction:column; justify-content:space-between; padding:10px;
}
.card-rank-top { font-size:1.3rem; font-weight:900; color:var(--acc); line-height:1; }
.card-suit-center { font-size:2rem; text-align:center; line-height:1; color:var(--acc); text-shadow:0 0 20px rgba(233,182,77,.6); }
.card-rank-bot  { font-size:1.3rem; font-weight:900; color:var(--acc); line-height:1; text-align:right; transform:rotate(180deg); }

/* ============================================================
   BLOG — галерея, лайтбокс, featured, related, share
   ============================================================ */

/* Бейдж количества фото на карточке/медиа */
.blog-card-media { position: relative; display: block; }
.blog-featured-media { position: relative; }
.media-badge {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 999px;
  background: rgba(7,7,12,.72); backdrop-filter: blur(4px);
  color: #fff; font-size: 12px; font-weight: 600; line-height: 1;
  border: 1px solid rgba(255,255,255,.14);
  font-family: var(--mono);
}
.media-badge svg { width: 13px; height: 13px; }

/* Featured (свежий пост) */
.blog-featured {
  display: grid; grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 24px; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-featured:hover { border-color: var(--border-acc); transform: translateY(-2px); box-shadow: var(--shadow); }
.blog-featured-media { max-height: 460px; overflow: hidden; background: var(--bg3); }
.blog-featured-media img, .blog-featured-media video { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.blog-featured-body { padding: 22px 26px 26px; }
.blog-featured-tag {
  display: inline-block; margin-bottom: 10px; padding: 3px 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--acc); background: var(--acc-dim); border: 1px solid var(--border-acc); border-radius: 999px;
}
.blog-featured-title { font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 800; line-height: 1.25; letter-spacing: -.4px; margin-bottom: 10px; color: var(--txt); }
.blog-featured:hover .blog-featured-title { color: var(--acc); }
.blog-featured-excerpt { color: var(--txt2); font-size: 14px; line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 720px) {
  .blog-featured { grid-template-columns: 1.15fr 1fr; }
  .blog-featured-media { max-height: none; height: 100%; }
}

/* Галерея альбома в посте */
.blog-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 28px; }
@media (min-width: 640px) { .blog-gallery { grid-template-columns: repeat(3, 1fr); } }
.blog-gallery .gallery-item {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-md); background: var(--bg3);
  border: 1px solid var(--border); cursor: zoom-in; aspect-ratio: 1 / 1;
}
.blog-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.blog-gallery .gallery-item:hover img { transform: scale(1.05); }
.blog-gallery .gallery-item.is-video { grid-column: 1 / -1; aspect-ratio: auto; cursor: default; }
.blog-gallery .gallery-item.is-video video { width: 100%; height: auto; max-height: 500px; display: block; background: #000; }
/* два фото — держим их крупнее */
.blog-gallery.gallery-count-2 { grid-template-columns: repeat(2, 1fr); }
.blog-gallery.gallery-count-4 { grid-template-columns: repeat(2, 1fr); }

/* Одиночное фото — тоже открывается в лайтбоксе */
.blog-post-media a[data-lightbox] { display: block; cursor: zoom-in; }

/* Лайтбокс */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center;
  background: rgba(4,4,8,.94); padding: 24px;
}
.lightbox.open { display: flex; animation: lbFade .18s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: 0 10px 60px rgba(0,0,0,.6); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.lightbox-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 28px; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 32px; line-height: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--acc); border-color: var(--acc); color: #1a1206; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--txt2); font-size: 13px; font-weight: 600; font-family: var(--mono); }

/* Действия под постом: поделиться + Telegram */
.blog-post-actions { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.share-label { font-size: 13px; color: var(--txt3); margin-right: 2px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px;
  font-size: 13px; font-weight: 500; color: var(--txt2);
  background: var(--bg3); border: 1px solid var(--border); border-radius: 999px;
  transition: all var(--transition); cursor: pointer;
}
.share-btn:hover { color: var(--acc); border-color: var(--border-acc); background: var(--acc-dim); }
.share-btn svg { width: 15px; height: 15px; }
.share-btn.copied { color: #4ade80; border-color: rgba(74,222,128,.35); }
.blog-post-actions .telegram-link-btn { margin-top: 0; }

/* Похожие посты */
.related-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.related-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card { background: linear-gradient(180deg, var(--bg2), rgba(12,13,21,.6)); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.related-card:hover { border-color: var(--border-acc); transform: translateY(-3px); box-shadow: var(--shadow); }
.related-media { aspect-ratio: 16 / 10; background: var(--bg3); overflow: hidden; }
.related-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-media-empty { display: flex; align-items: center; justify-content: center; color: var(--txt3); }
.related-media-empty svg { width: 30px; height: 30px; }
.related-body { padding: 12px 14px 14px; }
.related-card-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--txt); margin-bottom: 6px; }
.related-card:hover .related-card-title { color: var(--acc); }
.related-card-date { font-size: 11.5px; color: var(--txt3); font-family: var(--mono); }

}
