﻿
/* ============================================================
   CSS VARIABLES — PINCO BRAND PALETTE
   ============================================================ */
:root {
  --bg-primary:    #000000;
  --bg-secondary:  #0a0a0a;
  --bg-card:       #111111;
  --bg-card-hover: #181818;
  --red:           #FE1D00;
  --red-hover:     #FE1D00;
  --red-glow:      rgba(232,25,44,0.35);
  --green:         #04CFAA;
  --green-dim:     rgba(4,207,170,0.12);
  --gold:          #f0a500;
  --text-primary:  #f0f2f8;
  --text-secondary:#9aa3b8;
  --text-muted:    #5a6380;
  --border:        rgba(255,255,255,0.07);
  --border-red:    rgba(232,25,44,0.4);
  --font-display:  'Rajdhani', sans-serif;
  --font-body:     'Noto Sans', sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-hover); }
img { max-width: 100%; display: block; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px var(--red-glow);
  flex-shrink: 0;
}
.logo span { color: var(--red); }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  letter-spacing: 0.03em;
  box-shadow: 0 0 18px var(--red-glow);
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-hover) !important; box-shadow: 0 0 26px var(--red-glow); color: #fff !important; transform: translateY(-1px); }
/* Кнопка вне nav — всегда видна, не скрывается на мобильных */
.header-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 64px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(4,207,170,0.1);
  border: 1px solid rgba(4,207,170,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: #04CFAA;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.bonus-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-align: center;
  min-width: 140px;
}
.bonus-pill .val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 20px var(--red-glow);
}
.bonus-pill .lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 24px var(--red-glow);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 32px var(--red-glow); color: #fff; }
.btn-secondary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); background: rgba(232,25,44,0.06); }

/* Placeholder for hero image */
.hero-img {
  margin: 48px auto 0;
  max-width: 820px;
  height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  overflow: hidden;
  position: relative;
}
.img-icon { font-size: 2.5rem; }
.img-label { font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
.img-filename { font-size: 0.7rem; font-family: monospace; color: var(--text-muted); opacity: 0.6; }

/* ============================================================
   LAYOUT
   ============================================================ */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar { position: sticky; top: 84px; }

/* ============================================================
   AI ANSWER BOX
   ============================================================ */
.ai-box {
  background: rgba(4,207,170,0.06);
  border: 1px solid rgba(4,207,170,0.3);
  border-left: 3px solid #04CFAA;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.ai-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #04CFAA;
  font-weight: 600;
}
.ai-box p { color: var(--text-secondary); font-size: 0.925rem; line-height: 1.7; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { margin-bottom: 52px; }
h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
h2 .accent { color: var(--red); }
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 28px 0 12px;
  color: var(--text-primary);
}
p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* Section divider */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 52px 0;
}

/* ============================================================
   BRAND TABLE CARD
   ============================================================ */
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}
.brand-card table { width: 100%; border-collapse: collapse; }
.brand-card tr { border-bottom: 1px solid var(--border); }
.brand-card tr:last-child { border-bottom: none; }
.brand-card td {
  padding: 12px 20px;
  font-size: 0.88rem;
  vertical-align: top;
}
.brand-card td:first-child {
  color: var(--text-muted);
  width: 40%;
  font-weight: 500;
}
.brand-card td:last-child { color: var(--text-primary); font-weight: 500; }
.brand-card tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================
   IMG PLACEHOLDER
   ============================================================ */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.1);
  background: var(--bg-card);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.img-placeholder .ph-icon { font-size: 1.8rem; flex-shrink: 0; }
.img-placeholder .ph-info { display: flex; flex-direction: column; gap: 3px; }
.img-placeholder .ph-alt { color: var(--text-secondary); }
.img-placeholder .ph-file { font-family: monospace; font-size: 0.72rem; opacity: 0.55; }

/* ============================================================
   BONUS TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); }
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.data-table thead tr {
  background: rgba(4,207,170,0.08);
  border-bottom: 1px solid rgba(4,207,170,0.25);
}
table.data-table th {
  padding: 11px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04CFAA;
  font-weight: 600;
}
table.data-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
table.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
table.data-table td:first-child { color: var(--text-primary); font-weight: 500; }
table.data-table .highlight { color: var(--red); font-weight: 600; }
table.data-table .green { color: #04CFAA; font-weight: 600; }

/* ============================================================
   BONUS CARDS GRID
   ============================================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.bonus-card:hover { border-color: var(--border-red); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.bonus-card .bc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.bonus-card .bc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.bonus-card .bc-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}
.bonus-card .bc-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   SLOTS / CATEGORY GRID
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.cat-card:hover { border-color: var(--border-red); background: var(--bg-card-hover); }
.cat-card .cc-icon { font-size: 1.6rem; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(232,25,44,0.1); border-radius: 10px; }
.cat-card .cc-name { font-family: var(--font-display); font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.cat-card .cc-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   PAYMENT GRID
   ============================================================ */
.pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.pay-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.pay-badge.primary { border-color: #04CFAA; color: #04CFAA; }
.pay-badge:hover { border-color: var(--border-red); color: var(--text-primary); }

/* ============================================================
   MOBILE SECTION
   ============================================================ */
.mobile-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(232,25,44,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.step-title { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 5px; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: #04CFAA; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: #04CFAA; border-color: #04CFAA; color: #000; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { max-height: 500px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card.promo {
  background: #111111;
  border-color: var(--border-red);
}
.sb-bonus-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 24px var(--red-glow);
}
.sb-bonus-label { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0 16px; }
.sb-cta { width: 100%; display: block; text-align: center; }
.sb-meta { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.sb-nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.sb-nav { display: flex; flex-direction: column; gap: 4px; }
.sb-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.sb-nav a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.sb-nav a .nav-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.sb-quick { display: flex; flex-direction: column; gap: 10px; }
.sq-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.sq-row .sq-label { color: var(--text-muted); }
.sq-row .sq-val { color: #04CFAA; font-weight: 600; }

/* ============================================================
   SECURITY BADGES
   ============================================================ */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.sec-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.sec-badge .sb-icon { font-size: 1.5rem; margin-bottom: 8px; }
.sec-badge .sb-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.sec-badge .sb-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.age-badge {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.support-links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.support-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
}
.support-link:hover { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    z-index: 99;
  }
  .hero { padding: 48px 20px 40px; }
  .bonus-pill { min-width: 120px; padding: 14px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero-bonus { gap: 12px; }
  .mobile-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — PAGE HERO (вместо большого hero)
   ============================================================ */
.page-hero {
  padding: 40px 24px 32px;
  border-bottom: 1px solid var(--border);
  background: #000;
}
.page-hero .container {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 0;
}
.page-hero .breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover { color: #04CFAA; }
.page-hero .breadcrumb span { color: var(--text-muted); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero .page-desc {
  font-size: 0.975rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.65;
}
.page-hero .hero-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* How-to steps */
.howto-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.howto-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  position: relative;
}
.howto-step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(232,25,44,0.15);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}
.howto-step .hs-content { flex: 1; }
.howto-step .hs-title { font-weight: 600; color: var(--text-primary); margin-bottom: 3px; font-size: 0.92rem; }
.howto-step .hs-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Compare table */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.compare-card.featured {
  border-color: #04CFAA;
  background: rgba(4,207,170,0.05);
}
.compare-card .cc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.compare-card .cc-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.compare-card.featured .cc-main { color: #04CFAA; }
.compare-card .cc-sub { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* Sport card */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  transition: all var(--transition);
}
.sport-card:hover { border-color: var(--border-red); transform: translateY(-2px); }
.sport-card .sp-icon { font-size: 1.8rem; margin-bottom: 8px; }
.sport-card .sp-name { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.sport-card .sp-fmt { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* Provider list */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition);
}
.provider-tag:hover { border-color: #04CFAA; color: #04CFAA; }
.provider-tag.top { border-color: var(--border-red); color: var(--red); }

/* Info box */
.info-box {
  background: rgba(4,207,170,0.07);
  border: 1px solid rgba(4,207,170,0.25);
  border-left: 3px solid #04CFAA;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.info-box strong { color: #04CFAA; }

/* Warning box */
.warn-box {
  background: rgba(232,25,44,0.07);
  border: 1px solid var(--border-red);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.warn-box strong { color: var(--red); }

@media (max-width: 768px) {
  .page-hero { padding: 28px 20px 24px; }
  .howto-steps .howto-step { flex-direction: column; gap: 10px; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .sport-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .compare-grid { grid-template-columns: 1fr; }
  .sport-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CRASH GAMES GRID
   ============================================================ */
.crash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.crash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
}
.crash-card:hover { border-color: var(--border-red); transform: translateY(-2px); }
.crash-card .cr-icon { font-size: 1.8rem; margin-bottom: 8px; }
.crash-card .cr-name { font-family: var(--font-display); font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.crash-card .cr-rtp  { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }

/* ============================================================
   PROVIDERS GRID
   ============================================================ */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.provider-badge:hover { border-color: var(--border-red); color: var(--text-primary); }

/* ============================================================
   DOC LIST (KYC documents)
   ============================================================ */
.doc-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.di-icon { font-size: 1.5rem; flex-shrink: 0; }
.di-title { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 3px; }
.di-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   NOTE BOX
   ============================================================ */
.note-box {
  background: rgba(4,207,170,0.06);
  border: 1px solid rgba(4,207,170,0.2);
  border-left: 3px solid #04CFAA;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 20px 0;
  line-height: 1.65;
}
.note-box a { color: #04CFAA; }
.note-box a:hover { color: var(--text-primary); }

/* ============================================================
   HOWTO STEPS (register, install steps)
   ============================================================ */
.howto-steps { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.howto-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color var(--transition);
}
.howto-step:hover { border-color: var(--border-red); }
.howto-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.howto-body { flex: 1; }
.howto-title { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 3px; }
.howto-body p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero { padding: 40px 0 32px; border-bottom: 1px solid var(--border); background: #000; margin-bottom: 0; }
.page-hero .breadcrumb { padding: 0 0 16px; font-size: 0.78rem; color: var(--text-muted); }
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: #04CFAA; }
.page-hero .breadcrumb .sep { margin: 0 6px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero .page-desc {
  font-size: 0.975rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.65;
  margin: 0;
}