:root{
  --bg:#0c0b10;
  --panel:#14121b;
  --card:#191728;
  --muted:#a9a6ba;
  --text:#f1eefb;
  --accent:#9d6cff;
  --accent-2:#39d98a;
  --danger:#ff5c5c;
  --gold:#e6c06b;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 20% -10%, #1d1831 0%, transparent 60%) , var(--bg);
  color:var(--text);
  font:400 16px/1.6 'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}
h1,h2,h3{font-family:'Uncial Antiqua',serif; letter-spacing:.3px; margin:0 0 .6rem}
h1{font-size:44px; line-height:1.15}
h2{font-size:32px}
h3{font-size:24px}
p{margin:0 0 1rem}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}
.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;width:1px;overflow:hidden;white-space:nowrap;border:0;padding:0;margin:-1px}
.container{max-width:1200px; margin:0 auto; padding:0 16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  height:42px; padding:0 18px; border-radius:12px; border:1px solid transparent;
  background:linear-gradient(180deg,var(--accent),#6b44ce); color:#fff; font-weight:700;
  box-shadow:var(--shadow); cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent; border-color:#3b3659; color:#ddd}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:16px;
  padding:10px 16px; background:rgba(20,18,27,.86); backdrop-filter: blur(10px);
  border-bottom:1px solid #2a2543;
}
.logo{display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none}
.logo img{width:40px; height:40px; border-radius:10px; background:#241d3d}
.logo .brand{font-family:'Uncial Antiqua',serif; font-size:22px; letter-spacing:.5px}

.main-nav{display:flex; align-items:center; gap:20px; flex:1}
.main-nav ul{display:flex; flex-wrap:wrap; gap:10px 14px; list-style:none; padding:0; margin:0}
.main-nav a{display:inline-block; padding:8px 10px; border-radius:10px; color:#eae6ff}
.main-nav a:hover{background:#221d35; text-decoration:none}
.search{margin-left:auto; display:flex; align-items:center; gap:8px}
.search input{
  height:40px; width:240px; padding:0 12px; border-radius:10px; background:#221d35; color:#fff; border:1px solid #372e59;
}
.burger{display:none; background:transparent; border:0; width:44px; height:44px; border-radius:10px}
.burger span{display:block; height:2px; background:#eae6ff; margin:8px; border-radius:2px}

/* Hero */
.hero{
  background: url('/img/hero-bg.webp') center/cover no-repeat, linear-gradient(180deg,#171428,#0c0b10);
  padding:64px 0 36px; border-bottom:1px solid #2a2543;
}
.hero .wrap{display:grid; grid-template-columns:1.1fr .9fr; gap:30px}
.hero .card{
  background:linear-gradient(180deg,#1c1830,#161326); border:1px solid #2a2543; border-radius:var(--radius);
  padding:28px; box-shadow:var(--shadow)
}
.hero .title{font-size:48px; margin-bottom:12px}
.hero .subtitle{color:var(--muted); margin-bottom:22px}
.hero .stats{display:flex; gap:18px; flex-wrap:wrap}
.hero .stat{background:#201b35; border:1px solid #31284d; border-radius:12px; padding:10px 14px; font-weight:700}
.hero .aside{display:grid; gap:14px}

/* Cards, grids */
.grid{display:grid; gap:18px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:linear-gradient(180deg,#1b1730,#151225); border:1px solid #2a2543; border-radius:var(--radius);
  padding:18px; box-shadow:var(--shadow)
}
.card .thumb{aspect-ratio:16/9; border-radius:12px; overflow:hidden; background:#221d35; margin-bottom:12px}
.meta{display:flex; gap:10px; flex-wrap:wrap; color:#c9c6da; font-size:13px}

/* Lists */
.list{display:grid; gap:12px}
.list .item{display:flex; gap:14px; align-items:flex-start}
.badge{display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:999px; font-size:12px; background:#241d3d; border:1px solid #31284d}

/* Sections */
.section{padding:36px 0; border-bottom:1px solid #2a2543}
.section .head{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px}

/* Tables (рейтинги) */
.table{width:100%; border-collapse:separate; border-spacing:0 10px}
.table th, .table td{padding:12px 14px; text-align:left}
.table tbody tr{background:#1a1729; border:1px solid #2a2543}
.table tbody tr td:first-child{border-top-left-radius:10px; border-bottom-left-radius:10px}
.table tbody tr td:last-child{border-top-right-radius:10px; border-bottom-right-radius:10px}

/* Footer */
.site-footer{
  padding:28px 16px; background:#14121b; border-top:1px solid #2a2543; color:#cbc7dd
}
.site-footer .cols{display:grid; gap:22px; grid-template-columns:1.2fr .8fr .8fr}

/* Modals */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(8,6,12,.7); display:none; align-items:center; justify-content:center; z-index:60
}
.modal{background:#1a1628; border:1px solid #2a2543; border-radius:16px; width:min(620px,92%); padding:22px}
.modal .modal-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.modal .close{background:transparent; border:0; color:#fff; font-size:20px}

/* Responsive */
@media (max-width:1024px){
  .grid.cols-4{grid-template-columns:repeat(2,1fr)}
  .hero .wrap{grid-template-columns:1fr}
}
@media (max-width:880px){
  .main-nav{position:fixed; inset:auto 0 0 0; top:64px; background:#14121b; padding:12px 16px; display:none; flex-direction:column; gap:14px; box-shadow:var(--shadow)}
  .main-nav.open{display:flex}
  .main-nav ul{flex-direction:column}
  .search{margin:0; width:100%}
  .search input{flex:1; width:100%}
  .burger{display:inline-block}
}
@media (max-width:640px){
  h1{font-size:36px}
  .grid.cols-3{grid-template-columns:1fr}
}
/* ===== Mobile fixes & overflow guards ===== */

/* Общая защита от переполнений */
html, body { overflow-x: hidden; }
.site-header, .site-footer, .container, .section, .card, .main-nav, .hero { min-width: 0; }
*, *::before, *::after { min-width: 0; }
a, .badge, .btn, .logo, .brand, .meta, .stat { overflow-wrap: anywhere; word-break: break-word; }

/* Кнопки и бейджи — не выталкивают контейнер */
.btn, .badge { max-width: 100%; }
.stats { flex-wrap: wrap; }

/* Изображения всегда ужимаются */
img, .thumb { max-width: 100%; height: auto; }

/* Таблицы на узких экранах — прокрутка по X без ломания сетки */
@media (max-width: 760px){
  .table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table thead, .table tbody, .table tr, .table th, .table td { white-space: nowrap; }
}

/* Футер — колонки в столбик, без выносов за край */
@media (max-width: 980px){
  .site-footer .cols { grid-template-columns: 1fr; }
  .site-footer .cols > * { width: 100%; }
}

/* Хедер — безопасная компоновка */
.site-header { flex-wrap: wrap; }
.logo { flex: 0 0 auto; }
.brand { white-space: nowrap; }
@media (max-width: 420px){
  .logo img{ width:32px; height:32px; }
  .logo .brand{ font-size:18px; }
}

/* Навигация и поиск */
@media (max-width: 880px){
  .search { width: 100%; }
  .search input{ width: 100%; min-width: 0; }
}

/* Герой и сетки — ужимаем типографику и колонки */
@media (max-width: 1024px){
  .hero .title{ font-size:42px; }
}
@media (max-width: 760px){
  h1{ font-size:30px; }
  h2{ font-size:26px; }
  .grid.cols-4{ grid-template-columns:1fr; }
  .grid.cols-3{ grid-template-columns:1fr; }
}

/* Фильтры каталога — без инлайнов, тянутся на 100% */
.form-control{
  width:100%; height:42px; border-radius:10px; background:#221d35; color:#fff;
  border:1px solid #372e59; padding:0 10px;
}
@media (max-width: 760px){
  .filter-grid{ grid-template-columns:1fr; }
  .filter-actions{ flex-wrap:wrap; }
  .filter-actions .btn{ width:100%; justify-content:center; }
}

/* Горизонтальные карточные списки с миниатюрами (events) */
.thumb-fixed { width:200px; }
@media (max-width: 760px){
  .thumb-fixed { width:120px; }
  .list .item { align-items: center; }
}

/* Мелкие правки типографики в футере, чтобы не “растягивало” строки */
.site-footer p, .site-footer a { overflow-wrap:anywhere; }

/* Последние защиты от случайных длинных токенов (URL, ID) */
code, .mono, .slug { overflow-wrap:anywhere; word-break:break-all; }
/* ===== Forum ===== */
.forum-title{ margin-bottom:10px }
.forum .forum-toolbar{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin:8px 0 16px
}
.forum .forum-filter{ display:flex; flex-wrap:wrap; gap:8px }
.chip{
  background:#211b33; border:1px solid #31284d; color:#eae6ff; border-radius:999px; height:34px; padding:0 12px; cursor:pointer
}
.chip.is-active{ background:linear-gradient(180deg,var(--accent),#6b44ce); border-color:transparent; color:#fff }
.forum .forum-sort{ display:flex; align-items:center; gap:8px }
.forum .forum-sort .link{ background:transparent; border:0; color:var(--accent); cursor:pointer }
.forum .forum-sort .muted{ color:#a9a6ba }
.forum .forum-sort .dot{ color:#5b5576 }

.topics{ display:grid; gap:16px }
.topic .topic-head{ display:flex; flex-direction:column; gap:8px; margin-bottom:10px }
.topic-title a{ color:#fff; text-decoration:none }
.topic-title a:hover{ text-decoration:underline }
.topic-meta{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; color:#c9c6da; font-size:13px }

.posts{ display:grid; gap:12px }
.post{ border-top:1px solid #2a2543; padding-top:12px }
.post:first-child{ border-top:0; padding-top:0 }
.post-head .user{ display:flex; align-items:center; gap:10px }
.avatar{ width:36px; height:36px; border-radius:50%; background:#241d3d }
.post-body{ margin-top:8px }
.post-body .bullets{ margin:8px 0 0 0; padding-left:18px }
.post-body p{ margin-bottom:.7rem }

.pager{ display:flex; gap:10px; justify-content:flex-end; align-items:center; margin-top:18px }

/* Mobile tweaks for forum */
@media (max-width: 760px){
  .forum .forum-toolbar{ flex-direction:column; align-items:flex-start }
  .topic .topic-head{ gap:6px }
  .topic-meta{ gap:8px }
  .avatar{ width:32px; height:32px }
}

