/* =============================================================================
   BONUSNO — CONTENT / TRUST PAGES (О проекте, Контакты, Политика, Отв. игра)
   Подключается ПОСЛЕ styles.css. Переиспользует :root-переменные, @font-face,
   фон .bg и шапку .topbar/.brand из styles.css. Главную НЕ затрагивает —
   здесь только классы .page* / .article* / .author* / .doc-footer.
============================================================================= */

/* ---- КАРКАС СТРАНИЦЫ: обычный скролл (в отличие от .poster на 100vh) ---- */
.page{
  position:relative; z-index:1;
  width:90%; max-width:940px; margin:0 auto;
  padding:6px clamp(14px,3vw,32px) 56px;
}

/* ---- ШАПКА: логотип по центру, кликабелен (ведёт на главную) ---- */
.page-top{ display:flex; justify-content:center; padding:16px 0 4px; }
.page-top .brand__logo{ width:300px; max-width:72vw; }
.page-top a{ display:block; }

/* ---- ХЛЕБНЫЕ КРОШКИ ---- */
.crumbs{ font-family:var(--font-body); font-size:13px; color:var(--txt-dim);
  margin:10px 2px 20px; }
.crumbs a{ color:#b9a8ff; text-decoration:none; }
.crumbs a:hover{ text-decoration:underline; }
.crumbs i{ font-style:normal; opacity:.5; margin:0 7px; }

/* ---- КОНТЕЙНЕР СТАТЬИ: стеклянная панель в стиле nx-panel ---- */
.article{
  background:linear-gradient(160deg, rgba(14,18,38,.66), rgba(8,6,22,.72));
  border-radius:18px;
  box-shadow:0 0 0 1.5px rgba(160,60,220,.30), 0 18px 52px rgba(0,0,0,.45);
  backdrop-filter:blur(10px) saturate(120%);
  -webkit-backdrop-filter:blur(10px) saturate(120%);
  padding:clamp(22px,4vw,48px);
}

/* ---- ТИПОГРАФИКА ---- */
.article h1{ font-family:'Unbounded',sans-serif; font-weight:900;
  font-size:clamp(26px,5vw,40px); line-height:1.12; text-transform:uppercase;
  color:#fff; margin:0; }
.article h1 .grad{
  background:linear-gradient(90deg,#2060ff,#5030ff,#9020ff,#cc00ff);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent; }
.article .nx-divider{ margin:16px 0 22px; }

.lead{ font-family:var(--font-body); font-weight:400;
  font-size:clamp(15px,2.4vw,17px); line-height:1.8; color:#d3d7ef; margin:0; }

.article h2{ font-family:'Unbounded',sans-serif; font-weight:700;
  font-size:clamp(18px,3vw,23px); color:#fff;
  margin:36px 0 14px; padding-top:20px;
  border-top:1px solid rgba(160,120,255,.16); }

.article h3{ font-family:'Unbounded',sans-serif; font-weight:600;
  font-size:clamp(15px,2.4vw,18px); color:#fff; margin:22px 0 6px; }
.article p{ font-family:var(--font-body); font-weight:400;
  font-size:15.5px; line-height:1.85; color:#c6cae1; margin:0 0 14px; }
.article p:last-child{ margin-bottom:0; }
.article a{ color:#b9a8ff; }
.article strong{ color:#fff; font-weight:600; }

/* списки-критерии с фиолетовой точкой-глифом */
.article ul{ list-style:none; margin:4px 0 18px; padding:0; }
.article ul li{ position:relative; padding:9px 0 9px 30px;
  font-family:var(--font-body); font-size:15px; line-height:1.7; color:#c6cae1;
  border-bottom:1px solid rgba(255,255,255,.05); }
.article ul li:last-child{ border-bottom:0; }
.article ul li::before{ content:""; position:absolute; left:5px; top:16px;
  width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg,#9020ff,#cc00ff);
  box-shadow:0 0 8px rgba(160,60,220,.6); }
.article ul li b{ color:#fff; font-weight:600; }

/* ---- БЛОК «КТО СТОИТ ЗА ПРОЕКТОМ» ---- */
.author{ margin-top:18px;
  display:flex; gap:18px; align-items:flex-start; flex-wrap:wrap;
  background:linear-gradient(105deg,#0a0520,#130a2e,#1a0835,#120520);
  border-radius:14px; box-shadow:0 0 0 1.5px rgba(160,60,220,.40);
  padding:18px 20px; }
.author__badge{ flex:0 0 56px; width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center; font-family:'Unbounded',sans-serif;
  font-weight:900; font-size:22px; color:#fff;
  background:radial-gradient(circle at 30% 25%, #3a1f6e, #140a2c);
  box-shadow:0 0 18px rgba(124,77,255,.4), inset 0 1px 0 rgba(255,255,255,.18); }
.author__body{ flex:1 1 240px; min-width:0; }
.author__body p{ margin:0 0 10px; }
.author__chans{ display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.author__chans a{ font-family:var(--font-body); font-size:12.5px; color:#fff;
  text-decoration:none; padding:6px 12px; border-radius:999px;
  background:linear-gradient(180deg, rgba(40,30,74,.72), rgba(14,10,30,.72));
  border:1px solid rgba(160,130,255,.30);
  transition:transform .18s, box-shadow .18s; }
.author__chans a:hover{ transform:translateY(-2px);
  box-shadow:0 0 16px rgba(124,77,255,.45); }

/* ---- КАРТОЧКИ КАНАЛОВ СВЯЗИ (страница «Контакты») ---- */
.chan-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:6px 0 8px; }
.chan-card{ display:flex; flex-direction:column; align-items:flex-start; gap:10px;
  text-decoration:none; padding:18px; border-radius:14px;
  background:linear-gradient(105deg,#0a0520,#130a2e,#1a0835,#120520);
  box-shadow:0 0 0 1.5px rgba(160,60,220,.34);
  transition:transform .18s, box-shadow .18s; }
.chan-card:hover{ transform:translateY(-3px); box-shadow:0 0 0 1.5px rgba(180,80,230,.6), 0 0 22px rgba(124,77,255,.4); }
.chan-card__ic{ width:42px; height:42px; border-radius:50%; display:grid; place-items:center; }
.chan-card__ic svg{ width:22px; height:22px; }
.chan-card__ic--tg{ background:#229ED9; }
.chan-card__ic--ig{ background:radial-gradient(circle at 30% 107%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285AEB 92%); }
.chan-card__ic--kick{ background:#53FC18; color:#000; font-family:'Unbounded',sans-serif; font-weight:900; font-size:20px; }
.chan-card__name{ font-family:'Unbounded',sans-serif; font-weight:700; font-size:15px; color:#fff; }
.chan-card__handle{ font-family:var(--font-body); font-size:12.5px; color:#b9a8ff; word-break:break-all; }
.chan-card__note{ font-family:var(--font-body); font-size:12px; color:var(--txt-dim); line-height:1.5; }

@media (max-width:680px){
  .chan-list{ grid-template-columns:1fr; }
}

/* ---- АКЦЕНТНЫЙ БЛОК / CALLOUT (предупреждение, помощь) ---- */
.callout{ margin:8px 0 18px; padding:16px 20px; border-radius:14px;
  background:linear-gradient(105deg,#0a0520,#130a2e,#1a0835,#120520);
  box-shadow:0 0 0 1.5px rgba(160,60,220,.40); }
.callout p{ margin:0; }
.callout--warn{ box-shadow:0 0 0 1.5px rgba(220,80,140,.45); }
.callout strong{ color:#fff; }

/* ============================================================================
   ОБЗОР КАЗИНО (страницы /casino/<slug>/)
============================================================================ */
/* Шапка обзора: логотип + оффер + CTA */
.casino-head{ display:flex; flex-wrap:wrap; align-items:center; gap:20px;
  background:linear-gradient(105deg,#0a0520,#130a2e,#1a0835,#120520);
  border-radius:16px; box-shadow:0 0 0 1.5px rgba(160,60,220,.40);
  padding:20px 22px; margin:8px 0 18px; }
.casino-head__logo{ flex:0 0 auto; width:124px; height:178px; border-radius:14px;
  display:grid; place-items:center; padding:8px; overflow:hidden;
  background:rgba(255,255,255,.03); box-shadow:inset 0 0 0 1px rgba(160,130,255,.18); }
.casino-head__logo img{ width:100%; height:100%; object-fit:contain; display:block; }
.casino-head__body{ flex:1 1 260px; min-width:0; }
.casino-head__offer{ font-family:'Unbounded',sans-serif; font-weight:700;
  font-size:clamp(18px,3vw,24px); color:#fff; margin:0 0 6px; line-height:1.2; }
.casino-head__offer b{ background:linear-gradient(180deg,#ffe28a,#f3bd3d 60%,#b8862b);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.casino-head__sub{ font-size:13px; color:var(--txt-dim); margin:0 0 14px; line-height:1.5; }

/* CTA «Забрать бонус» — тёмное стекло + золотая светящаяся рамка (стиль кнопок на картах сайта) */
.cta-btn{ display:inline-flex; align-items:center; gap:9px;
  padding:13px 28px; border-radius:12px; text-decoration:none;
  font-family:'Unbounded',sans-serif; font-weight:700; font-size:13.5px;
  letter-spacing:.4px; text-transform:uppercase; color:#ffe49a;
  background:linear-gradient(180deg, rgba(50,38,16,.5), rgba(20,16,8,.62));
  border:1px solid rgba(255,215,120,.6);
  backdrop-filter:blur(6px) saturate(140%); -webkit-backdrop-filter:blur(6px) saturate(140%);
  box-shadow:0 0 16px rgba(242,193,78,.30), 0 6px 16px rgba(0,0,0,.45),
             inset 0 1px 0 rgba(255,255,255,.16), inset 0 0 12px rgba(242,193,78,.12);
  text-shadow:0 0 8px rgba(242,193,78,.45), 0 1px 1px rgba(0,0,0,.55);
  transition:transform .18s, box-shadow .18s, filter .18s; }
.cta-btn:hover{ transform:translateY(-2px); filter:brightness(1.08);
  box-shadow:0 0 22px rgba(242,193,78,.55), 0 9px 22px rgba(0,0,0,.5),
             inset 0 1px 0 rgba(255,255,255,.22), inset 0 0 14px rgba(242,193,78,.2); }
.cta-btn::after{ content:"›"; font-weight:900; font-size:16px; line-height:1; color:#ffe49a; }
/* приоритет золотого текста над общим правилом .article a (иначе текст красится в фиолетовый) */
.article a.cta-btn{ color:#ffe49a; }

/* Таблица быстрых фактов */
.facts{ width:100%; border-collapse:collapse; margin:4px 0 8px; }
.facts th, .facts td{ text-align:left; padding:11px 12px; vertical-align:top;
  font-family:var(--font-body); font-size:14px; line-height:1.5;
  border-bottom:1px solid rgba(255,255,255,.07); }
.facts th{ width:40%; color:#b9a8ff; font-weight:600; }
.facts td{ color:#d3d7ef; }

/* Хаб /casino/ — сетка плиток казино */
.casino-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:14px; margin:8px 0; }
.casino-tile{ display:flex; flex-direction:column; align-items:center; gap:10px;
  padding:16px 14px; border-radius:14px; text-decoration:none;
  background:linear-gradient(160deg, rgba(14,18,38,.6), rgba(8,6,22,.66));
  box-shadow:0 0 0 1.5px rgba(160,60,220,.30);
  transition:transform .18s, box-shadow .18s; }
.casino-tile:hover{ transform:translateY(-3px);
  box-shadow:0 0 0 1.5px rgba(180,80,230,.6), 0 0 20px rgba(124,77,255,.35); }
.casino-tile img{ width:84px; height:126px; object-fit:contain; }
.casino-tile__name{ font-family:'Unbounded',sans-serif; font-weight:700; font-size:14px;
  color:#fff; text-align:center; line-height:1.2; }
.casino-tile__cta{ font-family:var(--font-body); font-size:12px; color:#ffe49a; }
.casino-tile__cta--review{ color:#b9a8ff; }
@media (max-width:680px){ .casino-grid{ grid-template-columns:repeat(2,1fr); } }

/* Категории: значение (промокод/фриспины) на плитке */
.casino-tile__promo{ font-family:var(--font-body); font-size:12px; color:#ffe49a;
  background:rgba(255,200,90,.10); border:1px solid rgba(255,200,90,.32);
  border-radius:8px; padding:2px 8px; text-align:center; }

/* Блок «Смотрите также» (перелинковка категорий) */
.see-also{ margin-top:6px; display:flex; flex-wrap:wrap; gap:10px; }
.see-also a, .see-also span{ font-family:var(--font-body); font-size:13px;
  padding:8px 14px; border-radius:999px; text-decoration:none;
  background:linear-gradient(180deg, rgba(40,30,74,.6), rgba(14,10,30,.6));
  border:1px solid rgba(160,130,255,.28); }
.see-also a{ color:#b9a8ff; transition:box-shadow .18s; }
.see-also a:hover{ box-shadow:0 0 14px rgba(124,77,255,.4); }
.see-also span{ color:var(--txt-dim); opacity:.7; }

/* Пометка «не подтверждено» */
.unverified{ display:inline-block; font-family:var(--font-body); font-size:11px;
  color:#ffcf8a; background:rgba(220,140,40,.12);
  border:1px solid rgba(220,140,40,.35); border-radius:6px;
  padding:1px 7px; margin-left:6px; vertical-align:middle; white-space:nowrap; }

@media (max-width:680px){
  .casino-head{ padding:16px; gap:16px; }
  .casino-head__logo{ width:96px; height:140px; }
  .facts th{ width:46%; }
}

/* ---- ДАТА ОБНОВЛЕНИЯ ---- */
.updated{ margin-top:24px; font-family:var(--font-body);
  font-size:12.5px; color:var(--txt-dim); }

/* ---- ФУТЕР КОНТЕНТНЫХ СТРАНИЦ (сквозной) ---- */
.doc-footer{ width:90%; max-width:940px; margin:36px auto 0;
  position:relative; z-index:1;
  padding:22px clamp(14px,3vw,32px) 36px;
  border-top:1px solid rgba(160,120,255,.16);
  display:flex; flex-direction:column; align-items:center; gap:16px; text-align:center; }
.doc-footer nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px 20px; }
.doc-footer nav a{ font-family:var(--font-body); font-size:13px; color:#b9a8ff;
  text-decoration:none; }
.doc-footer nav a:hover{ text-decoration:underline; }
.doc-foot-meta{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:center; }
.doc-foot-age{ width:40px; height:40px; display:grid; place-items:center; border-radius:50%;
  font-family:'Unbounded',sans-serif; font-weight:800; font-size:12px; color:#ffe49a;
  background:radial-gradient(circle at 30% 30%, #2a1f55, #120c2c);
  border:2px solid rgba(139,92,246,.5); box-shadow:0 0 16px rgba(124,77,255,.35); }
.doc-foot-resp{ font-family:var(--font-body); font-size:11px; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--txt-dim); font-weight:700; }
.doc-foot-note{ font-family:var(--font-body); font-size:11.5px; line-height:1.6;
  color:#6a6390; max-width:600px; }

/* ---- АДАПТИВ ---- */
@media (max-width:680px){
  .page{ width:100%; padding:4px 14px 44px; }
  .doc-footer{ width:100%; }
  .article{ padding:20px 16px; border-radius:14px; }
  .article h2{ margin:28px 0 12px; }
  .author{ padding:16px; gap:14px; }
}
