/*
  В оригинале html не имеет background-color.
  Это заставляет body background стать canvas-фоном (нижний слой),
  а кружки (.background bg-style-1 z-index:-1) рисуются ПОВЕРХ него.
  В нашем style.css html имеет background-color → перекрывает кружки.
  Сбрасываем его для страниц на static.css.
*/
html {
  background-color: transparent !important;
}

/* ===== LOGOTYPE + BEE ===== */
.logotype {
  position: relative;
  display: inline-block;
}

.bee-wrap {
  position: absolute;
  top: 2px;
  left: 108px;
  width: 34px;
  height: 34px;
  pointer-events: none;
  z-index: 15;
}

.bee {
  position: absolute;
  width: 22px;
  height: auto;
  animation:
    likeFloat 3.2s infinite ease-in-out,
    likePulse 1.8s infinite ease-in-out;
}

@keyframes likeFloat {
  0%   { transform: translateY(0) rotate(-4deg); }
  25%  { transform: translateY(-2px) rotate(3deg); }
  50%  { transform: translateY(-4px) rotate(-2deg); }
  75%  { transform: translateY(-1px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-4deg); }
}

@keyframes likePulse {
  0%, 100% { scale: 1; }
  50%       { scale: 1.08; }
}

/* ===== FOOTER MINI LOGO ===== */
.footer-mini-logo {
  display: none;
}

@media (max-width: 768px) {
  .footer-mini-logo {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.09;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
  }

  .footer-panel:hover .footer-mini-logo {
    opacity: 0.18;
    transform: translateY(-50%) scale(1.05);
  }

  .footer-mini-logo img {
    width: 45px;
    height: auto;
  }
}

/* ===== PAGE-SYS wrapper ===== */
.page-sys {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/* ===== CONTACT PAGE (f5contact) ===== */
.f5contact {
  --txt: #0f1115;
  --txt2: rgba(15, 17, 21, .72);
  font-family: var(--font);
  margin: 40px auto 0;
  max-width: 820px;
  padding: 20px 0;
  pointer-events: none;
}

.darktheme .f5contact {
  --txt: #fff;
  --txt2: rgba(255, 255, 255, .72);
}

.f5contact * { pointer-events: auto; }

.f5cHead {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.f5cTitle {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: rgba(76, 203, 112, .79);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  backdrop-filter: blur(6px);
}

.f5cGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px) {
  .f5cGrid { grid-template-columns: 1fr; }
}

.f5cCard {
  border-radius: 14px;
  padding: 18px;
  background: rgba(76, 203, 112, .06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.darktheme .f5cCard { background: rgba(255, 255, 255, .05); }

.f5cCardTitle {
  font-size: 15px;
  font-weight: 800;
  color: var(--txt);
}

.f5cText {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--txt2);
}

.f5cContactRow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.f5cQR {
  background: #fff;
  padding: 6px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.f5cQR img {
  width: 90px;
  height: 90px;
  display: block;
  border-radius: 8px;
}

.f5cRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f5cEmailRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(76, 203, 112, .10);
  gap: 8px;
}

.f5cEmailRow.abuse { background: rgba(255, 70, 70, .10); }

.f5cEmail {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--txt);
  cursor: pointer;
}

.f5cBtn {
  border: 0;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #4ccb70, #32b65a);
  color: #fff;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
}

.f5cEmailRow.abuse .f5cBtn { background: linear-gradient(135deg, #ff4d4d, #ff2a2a); }

.f5cInfo {
  margin-top: 16px;
  font-size: 13px;
  color: var(--txt2);
  background: rgba(76, 203, 112, .05);
  padding: 14px;
  border-radius: 10px;
  line-height: 1.7;
}

.f5cInfo strong { color: var(--txt); }

.f5toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1f24;
  color: #fff;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s !important;
  z-index: 9999;
  pointer-events: none;
}

.f5toast.show { opacity: 1; }

@media (max-width: 600px) {
  .f5cContactRow { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .f5cQR img { width: 140px; height: 140px; }
  .f5cRight { width: 100%; align-items: center; }
  .f5cEmailRow { width: 100%; justify-content: center; flex-direction: column; gap: 6px; padding: 12px; }
  .f5cEmail { font-size: 14px; }
  .f5cBtn { width: 100%; max-width: 220px; }
  .f5cText { text-align: center; }
}

/* ===== F5 STATIC CONTENT ===== */

/* отключаем все transitions внутри .f5 — как в оригинале */
.f5 * {
  transition: none !important;
}

.f5-hero {
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
  background: rgba(76, 203, 112, .06);
}

.f5-hero-title {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--tcolor);
}

.f5-hero-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
  max-width: 520px;
  color: var(--tcolor);
  margin: 0;
}

/* Зелёный CTA-блок */
.f5-cta {
  border-radius: 20px;
  padding: 20px;
  background: #2c9a5a;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
}

.f5-cta-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.f5-cta-desc {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 12px;
}

/* Кнопка — цвет наследуется от .f5-cta */
.f5-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .22);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.f5-btn:hover {
  background: rgba(0, 0, 0, .28);
}

.f5-cta-hint {
  font-size: 12px;
  opacity: .7;
  margin-top: 8px;
}

/* Карточки */
.f5-cards {
  display: grid;
  gap: 16px;
}

.f5-card {
  border-radius: 16px;
  padding: 16px;
}

.f5-card:hover {
  background: rgba(76, 203, 112, .08) !important;
}

.f5-card-title {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--tcolor);
}

.f5-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tcolor);
}

/* Список с точками */
.f5-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.f5-list-item {
  display: flex;
  gap: 10px;
  color: var(--tcolor);
}

.f5-dot {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4ccb70;
}

/* Футер-блок */
.f5-foot {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 80, 80, .08);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--tcolor);
}

/* Кнопка в состоянии "скопировано" (внутри .f5 — без transition, мгновенно) */
.f5-btn-copied {
  background: rgba(0, 0, 0, .38) !important;
}

/* Toast уведомление — вне .f5, поэтому transition работает */
.f5-notify {
  position: fixed;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #4ccb70;
  color: #fff;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(76, 203, 112, .45);
  opacity: 0;
  transition:
    bottom  0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
}

.f5-notify::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.f5-notify.show {
  bottom: 24px;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   px4 — XAPK
═══════════════════════════════════════════════════════ */
.px4 { font-size:14px; line-height:1.6; }
.px4 * { transition:none !important; }
.px4-head { margin-bottom:18px; }
.px4-title { font-size:21px; font-weight:900; margin-bottom:6px; }
.px4-sub { opacity:.85; max-width:520px; }
.px4-wrap { border-radius:16px; padding:16px; background:rgba(76,203,112,.05); }
.px4-step { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid rgba(76,203,112,.15); }
.px4-step:last-child { border-bottom:0; }
.px4-dot { width:10px; height:10px; border-radius:50%; background:#4ccb70; margin-top:6px; flex-shrink:0; }
.px4-text b { display:block; font-weight:800; margin-bottom:2px; }
.px4-info { margin-top:14px; padding:12px; border-radius:12px; border:1px solid rgba(76,203,112,.25); font-size:13px; }
.px4-faq { margin-top:18px; }
.px4-faq-item { border-bottom:1px solid rgba(76,203,112,.15); }
.px4-faq-btn { width:100%; text-align:left; padding:12px 0; font-weight:800; cursor:pointer; display:flex; justify-content:space-between; align-items:center; background:none; border:none; color:var(--tcolor); font-size:14px; font-family:var(--font); }
.px4-faq-content { display:none; padding-bottom:10px; opacity:.85; }
.px4-faq-item.active .px4-faq-content { display:block; }
.px4-btn { display:inline-block; margin-top:18px; padding:10px 16px; border-radius:10px; background:#4ccb70; color:#fff; font-weight:700; text-decoration:none; }
.px4-btn:hover { background:#3ab85f; color:#fff; }

/* ═══════════════════════════════════════════════════════
   apx2 — APKS
═══════════════════════════════════════════════════════ */
.apx2 { font-size:14px; line-height:1.6; }
.apx2 * { transition:none !important; }
.apx2-head { margin-bottom:16px; }
.apx2-title { font-size:21px; font-weight:900; margin-bottom:6px; }
.apx2-sub { opacity:.85; max-width:520px; }
.apx2-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.apx2-tag { padding:7px 12px; border-radius:999px; font-size:12px; font-weight:800; background:rgba(76,203,112,.12); }
.apx2-main { border-radius:14px; padding:14px; background:rgba(76,203,112,.05); }
.apx2-row { padding:12px 0; border-bottom:1px solid rgba(76,203,112,.15); }
.apx2-row:last-child { border-bottom:0; }
.apx2-row b { display:block; font-weight:900; margin-bottom:2px; }
.apx2-note { margin-top:14px; padding:12px; border-radius:12px; border:1px solid rgba(76,203,112,.25); font-size:13px; }
.apx2-faq { margin-top:16px; }
.apx2-item { border-bottom:1px solid rgba(76,203,112,.15); }
.apx2-q { padding:10px 0; cursor:pointer; font-weight:800; display:flex; justify-content:space-between; color:var(--tcolor); }
.apx2-a { display:none; padding:6px 0 10px; opacity:.85; }
.apx2-item.active .apx2-a { display:block; }
.apx2-foot { margin-top:14px; font-size:13px; opacity:.85; }

/* ═══════════════════════════════════════════════════════
   opt — Оптимизация Android
═══════════════════════════════════════════════════════ */
.opt { font-size:14px; line-height:1.6; color:var(--tcolor); }
.opt-head { margin-bottom:14px; }
.opt-title { font-size:21px; font-weight:900; margin-bottom:6px; }
.opt-sub { opacity:.85; max-width:520px; }
.opt-status { border-radius:16px; padding:12px; background:rgba(76,203,112,.08); margin-bottom:14px; }
.opt-percent { font-weight:900; font-size:16px; }
.opt-bar { height:6px; width:100%; background:rgba(0,0,0,.08); border-radius:6px; overflow:hidden; margin-top:6px; }
.opt-fill { height:100%; width:70%; background:#4ccb70; transition:width .25s ease !important; }
.opt-list { border-radius:16px; padding:14px; background:rgba(76,203,112,.08); }
.opt-item { display:flex; justify-content:space-between; gap:12px; padding:12px 0; border-bottom:1px dashed rgba(76,203,112,.25); }
.opt-item:last-child { border-bottom:0; }
.opt-text b { display:block; font-weight:900; margin-bottom:2px; }
.opt-text { opacity:.9; }
.opt-switch { width:46px; height:26px; border-radius:999px; background:rgba(76,203,112,.18); position:relative; cursor:pointer; flex:0 0 auto; transition:background .18s ease !important; }
.opt-switch::before { content:""; position:absolute; top:3px; left:3px; width:20px; height:20px; border-radius:50%; background:#fff; transition:left .18s ease !important; }
.opt-switch.on { background:#4ccb70; }
.opt-switch.on::before { left:23px; }
.opt-extra { margin-top:14px; padding:12px; border-radius:14px; background:rgba(76,203,112,.12); font-size:13px; }
.opt-faq { margin-top:16px; }
.opt-q { font-weight:900; padding:10px 0; border-bottom:1px dashed rgba(76,203,112,.25); cursor:pointer; display:flex; justify-content:space-between; color:var(--tcolor); }
.opt-a { display:none; padding:6px 0 10px; opacity:.85; }
.opt-q.open + .opt-a { display:block; }

/* ═══════════════════════════════════════════════════════
   ui — Скриншот
═══════════════════════════════════════════════════════ */
.ui * { transition:none !important; }
.ui { max-width:900px; margin:0 auto; }
.ui-head { margin-bottom:24px; }
.ui-title { font-size:28px; font-weight:900; margin-bottom:6px; }
.ui-sub { font-size:14px; opacity:.8; }
.ui-actions { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.ui-chip { padding:8px 12px; border-radius:999px; background:rgba(76,203,112,.12); font-size:13px; }
.ui-card { border-radius:20px; padding:18px; background:rgba(76,203,112,.08); margin-bottom:14px; }
.ui-card-title { font-size:16px; font-weight:900; margin-bottom:6px; }
.ui-text { font-size:14px; line-height:1.7; }
.ui-steps { display:flex; flex-direction:column; gap:10px; }
.ui-step { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(76,203,112,.15); font-size:14px; }
.ui-highlight { border-radius:18px; padding:16px; background:rgba(76,203,112,.15); font-size:14px; margin-top:14px; }
.ui-warning { border-radius:18px; padding:16px; background:rgba(255,80,80,.10); font-size:14px; margin:18px 0; }
.ui-bottom { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px; }
@media(max-width:800px){ .ui-bottom { grid-template-columns:1fr; } }
.ui-mini { border-radius:16px; padding:14px; background:rgba(76,203,112,.06); }
.ui-foot { margin-top:18px; border-radius:18px; padding:16px; background:rgba(76,203,112,.10); font-size:14px; }
.ui-faq { margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.ui-faq-item { border-radius:16px; background:rgba(76,203,112,.06); overflow:hidden; }
.ui-faq-q { padding:14px; cursor:pointer; font-weight:800; display:flex; justify-content:space-between; color:var(--tcolor); }
.ui-faq-a { max-height:0; overflow:hidden; padding:0 14px; font-size:14px; line-height:1.6; opacity:.85; transition:max-height .2s ease, padding .2s ease !important; }
.ui-faq-item.open .ui-faq-a { max-height:200px; padding:0 14px 14px; }

/* ═══════════════════════════════════════════════════════
   inst — Установка приложений (табы)
═══════════════════════════════════════════════════════ */
.inst * { transition:none !important; }
.inst { max-width:900px; margin:0 auto; font-size:14px; }
.inst-head { margin-bottom:20px; }
.inst-title { font-size:20px; font-weight:900; }
.inst-sub { opacity:.8; }
.inst-tabs { display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.inst-tab { padding:10px 14px; border-radius:999px; background:rgba(76,203,112,.12); cursor:pointer; font-weight:700; }
.inst-tab.active { background:#4ccb70; color:#fff; }
.inst-box { border-radius:20px; padding:18px; background:rgba(76,203,112,.08); }
.inst-box-title { font-size:16px; font-weight:900; margin-bottom:6px; }
.inst-list { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.inst-item { padding:10px 12px; border-radius:12px; background:rgba(76,203,112,.10); }
.inst-warning { margin-top:16px; padding:14px; border-radius:16px; background:rgba(255,80,80,.12); }
.inst-footer { margin-top:16px; padding:14px; border-radius:16px; background:rgba(76,203,112,.10); }

/* ═══════════════════════════════════════════════════════
   uiX — Установка с кэшем (левая панель + правая)
═══════════════════════════════════════════════════════ */
.uiX { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:20px; font-size:14px; }
@media(max-width:900px){ .uiX { grid-template-columns:1fr; } }
.uiX-left { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.mode { padding:18px; border-radius:18px; background:rgba(76,203,112,.08); cursor:pointer; }
.mode.active { background:#4ccb70; color:#fff; }
.mode-title { font-weight:800; }
.mode-sub { opacity:.7; font-size:13px; }
.uiX-right { border-radius:20px; padding:20px; background:rgba(76,203,112,.08); display:flex; flex-direction:column; gap:14px; min-height:200px; }
.rx-title { font-size:18px; font-weight:800; }
.rx-steps { display:flex; flex-direction:column; gap:8px; }
.rx-step { padding:10px; border-radius:12px; background:rgba(76,203,112,.12); }
.rx-note { padding:12px; border-radius:12px; background:rgba(0,170,255,.12); font-size:13px; }
.rx-warn { padding:12px; border-radius:12px; background:rgba(255,80,80,.12); font-size:13px; }

/* ═══════════════════════════════════════════════════════
   alt2 — Не скачивается
═══════════════════════════════════════════════════════ */
.alt2 * { transition:none !important; }
.alt2-wrap { display:grid; grid-template-columns:1fr 300px; gap:20px; }
@media(max-width:900px){ .alt2-wrap { grid-template-columns:1fr; } }
.alt2-main { display:flex; flex-direction:column; gap:18px; }
.alt2-side { border-radius:20px; padding:16px; background:rgba(76,203,112,.10); height:max-content; }
.alt2-title { font-size:24px; font-weight:900; }
.alt2-sub { font-size:14px; opacity:.9; line-height:1.6; }
.alt2-box { border-radius:16px; padding:14px; background:rgba(76,203,112,.10); }
.alt2-step { display:flex; justify-content:space-between; align-items:center; padding:10px 0; font-size:14px; border-bottom:1px solid rgba(76,203,112,.12); }
.alt2-step:last-child { border-bottom:0; }
.alt2-badge { font-size:11px; padding:4px 8px; border-radius:999px; background:rgba(76,203,112,.18); white-space:nowrap; font-weight:700; }
.alt2-main-action { border-radius:16px; padding:14px; background:rgba(76,203,112,.10); font-size:14px; font-weight:600; }
.alt2-warning { border-radius:16px; padding:14px; background:rgba(255,80,80,.08); font-size:14px; }
.alt2-dns-wrap { display:flex; flex-direction:column; gap:10px; margin:10px 0; }
.alt2-dns-card { border-radius:14px; padding:12px; background:rgba(76,203,112,.14); }
.alt2-dns-title { font-weight:900; margin-bottom:6px; font-size:13px; }
.alt2-dns-ip { display:flex; justify-content:space-between; gap:8px; font-size:13px; }
.alt2-dns-ip span { background:rgba(0,0,0,.10); padding:6px 8px; border-radius:8px; font-weight:700; }
.alt2-btn, .alt2-btn:hover, .alt2-btn:visited { display:inline-block; padding:10px 14px; border-radius:12px; background:#4ccb70; color:#fff !important; text-decoration:none !important; font-weight:700; }

/* ═══════════════════════════════════════════════════════
   f6 — Отказ от ответственности
═══════════════════════════════════════════════════════ */
.f6 * { transition:none !important; }
.f6-grid { display:grid; gap:16px; }
.f6-card { border-radius:16px; padding:16px; background:rgba(76,203,112,.04); }
.f6-title { display:flex; align-items:center; gap:8px; font-weight:800; margin-bottom:6px; }
.f6-title::before { content:""; width:8px; height:8px; border-radius:50%; background:#4ccb70; flex-shrink:0; }
.f6-text { font-size:14px; line-height:1.6; opacity:.9; }
.f6-top { border-radius:18px; padding:16px; background:rgba(76,203,112,.08); margin-bottom:18px; }
.f6-final { margin-top:18px; border-radius:16px; padding:14px; background:rgba(76,203,112,.06); }

/* ═══════════════════════════════════════════════════════
   NEWS ARTICLE
═══════════════════════════════════════════════════════ */
.news-article {
  overflow: hidden;
}

.news-cover {
  line-height: 0;
}

.news-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.125rem 1.125rem 0 0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tcolor);
  opacity: .5;
}

.news-author::before {
  content: "·";
  margin-right: 6px;
}

.page-content-wrapper {
  margin-top: 1.25rem;
  line-height: 1.7;
  font-size: 15px;
}

.page-content-wrapper h2,
.page-content-wrapper h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-weight: 800;
}

.page-content-wrapper p {
  margin-bottom: .85rem;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
  padding-left: 1.25rem;
  margin-bottom: .85rem;
}

.page-content-wrapper li {
  margin-bottom: .3rem;
}

.page-content-wrapper img {
  max-width: 100%;
  border-radius: 10px;
  margin: .5rem 0;
}

.page-content-wrapper a {
  color: var(--f5-accent);
  text-decoration: none;
}

.page-content-wrapper a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   pv — Политика конфиденциальности
═══════════════════════════════════════════════════════ */
.pv * { transition:none !important; }
.pv-head { margin-bottom:20px; }
.pv-head-title { font-size:21px; font-weight:900; margin-bottom:8px; }
.pv-menu { display:flex; gap:8px; overflow-x:auto; padding-bottom:6px; scroll-snap-type:x mandatory; margin-bottom:18px; scrollbar-width:none; }
.pv-menu::-webkit-scrollbar { display:none; }
.pv-menu a { text-decoration:none; flex-shrink:0; scroll-snap-align:start; }
.pv-pill { padding:8px 12px; border-radius:999px; background:rgba(76,203,112,.10); font-size:12.5px; font-weight:600; color:var(--tcolor); }
.pv-card { border-radius:18px; padding:16px; background:rgba(76,203,112,.04); margin-bottom:14px; }
.pv-title { font-weight:800; margin-bottom:6px; }
.pv-text { font-size:14px; line-height:1.7; opacity:.9; }
.pv-contact { margin-top:20px; border-radius:16px; padding:16px; background:rgba(76,203,112,.08); }
.pv-contact a { color:#4ccb70; font-weight:700; text-decoration:none; }

/* ═══════════════════════════════════════════════════════
   cp3 — Условия использования
═══════════════════════════════════════════════════════ */
.cp3 * { transition:none !important; }
.cp3-wrap { max-width:820px; margin:0 auto; }
.cp3-title { font-size:24px; font-weight:900; margin-bottom:10px; }
.cp3-desc { font-size:14px; line-height:1.7; opacity:.9; margin-bottom:24px; }
.cp3-line { display:flex; flex-direction:column; gap:16px; }
.cp3-item { display:flex; gap:12px; align-items:flex-start; padding:14px; border-radius:16px; background:rgba(76,203,112,.05); }
.cp3-icon { width:28px; height:28px; border-radius:10px; background:rgba(76,203,112,.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:900; font-size:13px; }
.cp3-text { font-size:14px; line-height:1.7; }
.cp3-warning { margin:22px 0; padding:16px; border-radius:16px; background:rgba(255,80,80,.08); font-size:14px; line-height:1.7; }
.cp3-bottom { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media(max-width:800px){ .cp3-bottom { grid-template-columns:1fr; } }
.cp3-box { padding:14px; border-radius:16px; background:rgba(76,203,112,.05); font-size:14px; line-height:1.7; }
.cp3-foot { margin-top:20px; padding:16px; border-radius:16px; background:rgba(76,203,112,.08); font-size:14px; }

/* ===== PROSE (обычный текст статьи) ===== */
.b-cont h1.title {
  margin-bottom: 1.5rem;
}

.b-cont p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.b-cont ul,
.b-cont ol {
  margin: 0 0 1rem 1.5rem;
  line-height: 1.7;
}

.b-cont li {
  margin-bottom: .375rem;
}

.b-cont h2,
.b-cont h3 {
  font-weight: 700;
  margin: 1.5rem 0 .75rem;
}

.b-cont a {
  color: var(--lcolor);
}

.b-cont a:hover {
  color: var(--lhcolor);
}

/* ═══════════════════════════════════════════════════════
   HELP-GAMES listing
═══════════════════════════════════════════════════════ */
.help-games-head {
  margin-bottom: 0;
}

.help-games-head .title {
  margin-bottom: .4rem;
}

.help-games-sub {
  font-size: 14px;
  opacity: .6;
  margin: 0;
}

.help-games-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.news-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--block-bg);
  border-radius: 1.125rem;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--tcolor);
  transition: transform .15s, box-shadow .15s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news-card-date {
  font-size: 12px;
  font-weight: 600;
  opacity: .5;
}

.news-card-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.news-card-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: .75;
}

.news-card-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lcolor);
}

.news-card-img {
  flex-shrink: 0;
  line-height: 0;
}

.news-card-img img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: .75rem;
  display: block;
}

@media (max-width: 560px) {
  .news-card {
    flex-direction: column;
  }

  .news-card-img img {
    width: 100%;
    height: 180px;
  }
}
