/* =============================================
   PISTOLO V2 — pistolo3.gr
   Mobile-first | #080C1A dark | #FFEB00 yellow | #00C6FF cyan
   Hero: centered H1 + char image | Article + sticky sidebar
   Brand style: game-like, bold, vivid
   ============================================= */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:        #080C1A;
  --bg2:       #0D1122;
  --bg3:       #141828;
  --bg4:       #1C2238;
  --card:      #0F1525;

  --yellow:    #FFEB00;
  --yellow-lt: #FFF44F;
  --yellow-dk: #D4C000;
  --yglow:     rgba(255,235,0,0.11);

  --cyan:      #00C6FF;
  --cyan-lt:   #40D8FF;
  --cyan-dk:   #0096CC;
  --cglow:     rgba(0,198,255,0.10);

  --orange:    #FF6B00;
  --orange-lt: #FF9133;
  --green:     #A2D626;
  --red:       #FF4444;

  --text:      #FFFFFF;
  --text-md:   rgba(255,255,255,0.75);
  --text-dim:  rgba(255,255,255,0.40);
  --border:    rgba(255,255,255,0.07);
  --border-y:  rgba(255,235,0,0.22);
  --border-c:  rgba(0,198,255,0.22);

  --header-h:  64px;
  --sidebar-w: 290px;
  --max-w:     1200px;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
  --sh-card:   0 4px 24px rgba(0,0,0,0.65);
  --sh-yellow: 0 0 28px rgba(255,235,0,0.18);
  --sh-cyan:   0 0 28px rgba(0,198,255,0.18);
  --sh-btn:    0 4px 20px rgba(255,235,0,0.38);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; padding: 0; margin: 0; }
img,svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--font-b); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 2px; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(8,12,26,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  /* Subtle yellow-cyan gradient top line */
  border-top: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 -2px 0 0 var(--bg), inset 0 2px 0 0 rgba(255,235,0,0.3);
}

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 14px; }

/* Logo — bigger, min-width ensures full render */
.logo-link { flex-shrink: 0; display: flex; align-items: center; transition: opacity var(--tr); min-width: 0; }
.logo-link:hover { opacity: 0.88; }
.logo-link img { height: 48px; width: auto; max-width: 200px; object-fit: contain; }

.logo-link-mobile { display: none; align-items: center; flex-shrink: 0; }
.logo-link-mobile img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }

.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a { font-size: 13px; font-weight: 600; color: var(--text-md); padding: 6px 12px; border-radius: var(--r-xs); transition: all var(--tr); white-space: nowrap; }
.header-nav a:hover { color: var(--yellow); background: var(--yglow); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; flex-shrink: 0; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: rgba(8,12,26,0.99); border-bottom: 1px solid var(--border); padding: 12px 16px 20px; z-index: 99; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity var(--tr),transform var(--tr); }
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.mobile-nav-links a { display: block; font-size: 15px; font-weight: 600; color: var(--text-md); padding: 11px 12px; border-radius: var(--r-xs); transition: all var(--tr); }
.mobile-nav-links a:hover { color: var(--yellow); background: var(--yglow); }
.mobile-nav-btns { display: flex; gap: 8px; }
.mobile-nav-btns .btn { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-b); font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: var(--r-sm); border: none; transition: all var(--tr); white-space: nowrap; text-decoration: none !important; cursor: pointer; }
.btn:active { transform: scale(0.97); }

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dk));
  color: #000 !important; font-weight: 800; box-shadow: var(--sh-btn);
  animation: pulse-y 2.6s ease-in-out infinite;
}
.btn-yellow:hover,.btn-yellow:visited,.btn-yellow:active { color: #000 !important; background: linear-gradient(135deg, var(--yellow-lt), var(--yellow)); animation: none; box-shadow: 0 6px 28px rgba(255,235,0,0.55); transform: translateY(-1px); }
@keyframes pulse-y { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }

.btn-cyan { background: linear-gradient(135deg, var(--cyan), var(--cyan-dk)); color: #000 !important; font-weight: 800; }
.btn-cyan:hover { background: linear-gradient(135deg, var(--cyan-lt), var(--cyan)); transform: translateY(-1px); box-shadow: var(--sh-cyan); }

.btn-ghost { background: transparent; color: var(--text) !important; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow) !important; background: var(--yglow); }

.btn-outline-y { background: transparent; color: var(--yellow) !important; border: 1.5px solid var(--yellow); }
.btn-outline-y:hover { background: var(--yglow); }

.btn-sm  { font-size: 12px; padding: 8px 16px; }
.btn-lg  { font-size: 15px; padding: 13px 30px; border-radius: var(--r-md); }
.btn-xl  { font-size: 16px; padding: 15px 36px; border-radius: var(--r-md); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HERO — centered text + char image right
   Full-width dark section with glow effects
   ============================================= */
.hero-section {
  background: var(--bg2);
  border-bottom: 2px solid rgba(255,235,0,0.15);
  overflow: hidden; position: relative;
}

/* Animated background radial glows */
.hero-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 30% 60%, rgba(0,198,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 75% 30%, rgba(255,235,0,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 50% 90%, rgba(255,107,0,0.05) 0%, transparent 50%);
}

/* Grid dot texture */
.hero-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 0;
  min-height: 460px;
}

.hero-left {
  padding: 52px 48px 52px 0;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cglow); border: 1px solid var(--border-c);
  border-radius: var(--r-pill); padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--cyan);
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: blink 2s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 80px);
  letter-spacing: 2px; line-height: 0.95;
  color: var(--text); margin-bottom: 16px;
}
.hero-h1 .acc  { color: var(--yellow); display: block; }
.hero-h1 .acc2 { color: var(--cyan);   display: block; }

.hero-sub { font-size: 15px; color: var(--text-md); line-height: 1.7; margin-bottom: 26px; max-width: 480px; }

/* Bonus pills row */
.hero-bonus-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.bonus-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border-y);
  border-radius: var(--r-md); padding: 10px 16px;
  box-shadow: var(--sh-card);
}
.bonus-pill-val { font-family: var(--font-d); font-size: 28px; color: var(--yellow); letter-spacing: 1px; line-height: 1; }
.bonus-pill-lbl { font-size: 10px; color: var(--text-dim); line-height: 1.4; }
.bonus-pill-lbl strong { display: block; color: var(--text); font-size: 12px; margin-bottom: 1px; }
.bonus-pill-sep { font-size: 20px; color: rgba(255,235,0,0.3); font-weight: 300; flex-shrink: 0; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-trust { font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 5px; }
.hero-trust::before { content: '🔒'; }

/* Hero right — character image */
.hero-right {
  width: 460px; height: 460px; flex-shrink: 0;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  /* gradient fade bottom */
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* =============================================
   SPLIT LAYOUT — content + sticky sidebar
   ============================================= */
.page-body {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 28px;
  padding: 40px 0 60px;
  align-items: start;
}

/* =============================================
   STICKY SIDEBAR
   ============================================= */
.sticky-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex; flex-direction: column; gap: 14px;
}

/* CTA card */
.sidebar-cta {
  background: linear-gradient(145deg, var(--bg3), var(--card));
  border: 1px solid var(--border-y);
  border-radius: var(--r-xl); padding: 22px;
  box-shadow: var(--sh-card), var(--sh-yellow);
}
.sidebar-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; margin: 0 auto 14px; display: block; }
.sidebar-bonus-box {
  background: var(--yglow); border: 1px solid var(--border-y);
  border-radius: var(--r-md); padding: 14px; text-align: center; margin-bottom: 14px;
}
.sidebar-bonus-val { font-family: var(--font-d); font-size: 34px; color: var(--yellow); letter-spacing: 1px; line-height: 1; }
.sidebar-bonus-txt { font-size: 11px; color: var(--text-md); margin-top: 3px; }
.sidebar-cta .btn { width: 100%; margin-bottom: 8px; }
.sidebar-checks { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.sidebar-check { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-md); }
.sidebar-check::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 13px; }

/* Stats card */
.sidebar-stats {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px;
  box-shadow: var(--sh-card);
}
.sidebar-stats-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 12px; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.stat-row:last-child { border-bottom: none; }
.stat-row-lbl { color: var(--text-md); }
.stat-row-val { font-weight: 700; color: var(--yellow); }

/* Rating card */
.sidebar-rating {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px; text-align: center;
  box-shadow: var(--sh-card);
}
.rating-score { font-family: var(--font-d); font-size: 46px; color: var(--yellow); letter-spacing: 1px; line-height: 1; }
.rating-max { font-size: 18px; color: var(--text-dim); }
.rating-stars { display: flex; justify-content: center; gap: 3px; margin: 8px 0 4px; font-size: 17px; }
.star-full { color: var(--yellow); }
.star-half { color: var(--yellow); opacity: 0.45; }
.rating-lbl { font-size: 11px; color: var(--text-dim); }

/* =============================================
   MAIN COLUMN — sections
   ============================================= */
.main-col { min-width: 0; }

.sec-title { font-family: var(--font-d); font-size: clamp(22px,3vw,34px); letter-spacing: 2px; color: var(--text); margin-bottom: 6px; line-height: 1.05; }
.sec-title .acc  { color: var(--yellow); }
.sec-title .acc2 { color: var(--cyan); }
.sec-sub    { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; }
.sec-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.sec-link   { font-size: 13px; color: var(--yellow); font-weight: 600; white-space: nowrap; transition: opacity var(--tr); }
.sec-link:hover { opacity: 0.75; }

/* =============================================
   GAME TABS — 1:1 square
   ============================================= */
.tabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; padding: 9px 14px; font-family: var(--font-b); font-size: 13px; font-weight: 600; color: var(--text-dim); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--tr); border-radius: var(--r-xs) var(--r-xs) 0 0; flex-shrink: 0; }
.tab-btn:hover  { color: var(--text); background: var(--yglow); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); background: var(--cglow); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }

/* RELEASE FIX: display:block */
.game-card { border-radius: var(--r-md); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform var(--tr),box-shadow var(--tr),border-color var(--tr); display: block; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--sh-yellow); border-color: var(--border-y); }
.game-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg3); }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.07); }
.game-badge { position: absolute; top: 7px; left: 7px; font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 2; }
.badge-hot  { background: var(--orange); color: #fff; }
.badge-new  { background: var(--green);  color: #0a1a00; }
.badge-live { background: #8B5CF6;       color: #fff; }
.badge-top  { background: var(--yellow); color: #000; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.9) 0%,transparent 55%); display: flex; align-items: flex-end; justify-content: center; padding: 10px; opacity: 0; transition: opacity var(--tr); }
.game-card:hover .game-overlay { opacity: 1; }
.play-btn { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--yellow); color: #000 !important; font-family: var(--font-b); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px; border-radius: var(--r-xs); transition: background var(--tr); text-decoration: none !important; }
.play-btn:hover { background: var(--yellow-lt); }
/* RELEASE FIX: flex column gap */
.game-info { padding: 9px 10px 11px; display: flex; flex-direction: column; gap: 3px; }
.game-name { font-weight: 700; font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; transition: color var(--tr); }
.game-card:hover .game-name { color: var(--yellow); }
.game-provider { font-size: 11px; color: var(--text-dim); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }

/* =============================================
   PROVIDERS — chip row
   ============================================= */
.providers-row { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-chip { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--text-dim); display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all var(--tr); white-space: nowrap; }
.provider-chip img { height: 16px; width: auto; object-fit: contain; filter: grayscale(0.3); transition: filter var(--tr); }
.provider-chip:hover { border-color: var(--border-y); color: var(--yellow); box-shadow: var(--sh-yellow); }
.provider-chip:hover img { filter: grayscale(0) brightness(1.1); }

/* =============================================
   PAYMENTS
   ============================================= */
.payments-section { padding: 26px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 28px 0; }
.payments-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 8px 16px; height: 46px; min-width: 78px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.pay-item:hover { border-color: var(--border-y); box-shadow: var(--sh-yellow); }
.pay-item img { max-height: 24px; max-width: 68px; width: auto; height: auto; object-fit: contain; filter: brightness(0.85); transition: filter var(--tr); }
.pay-item:hover img { filter: brightness(1.2); }

/* =============================================
   REVIEW TABLE
   ============================================= */
.review-table-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); margin: 1.5rem 0; box-shadow: var(--sh-card); }
.review-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.review-table tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
.review-table tr:last-child { border-bottom: none; }
.review-table tr:hover { background: rgba(255,235,0,0.03); }
.review-table td { padding: 11px 14px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(15,21,37,0.8); width: 42%; }
.review-table td:last-child  { color: var(--text-md); background: rgba(10,14,28,0.8); }

/* =============================================
   SECTION BANNER
   ============================================= */
.section-banner { display: block; width: 100%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-card); margin: 16px 0 24px; transition: opacity var(--tr); }
.section-banner:hover { opacity: 0.88; }
.section-banner img { width: 100%; height: auto; display: block; max-height: 200px; object-fit: cover; }

/* =============================================
   PROSE
   ============================================= */
.prose h2 { font-family:var(--font-d); font-size:clamp(18px,2.5vw,24px); letter-spacing:1.5px; color:var(--text); margin:2.5rem 0 .75rem; padding-bottom:8px; border-bottom:1px solid var(--border); scroll-margin-top:calc(var(--header-h) + 16px); }
.prose h2:first-child { margin-top:0; }
.prose h3 { font-size:15px; font-weight:700; color:var(--cyan); margin:1.75rem 0 .5rem; }
.prose p  { font-size:15px; color:var(--text-md); line-height:1.8; margin-bottom:1rem; }
.prose strong { color:var(--text); font-weight:700; }
.prose a  { color:var(--yellow); text-decoration:underline; }
.prose table { width:100%; border-collapse:collapse; margin:1.5rem 0; font-size:14px; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--sh-card); }
.prose thead { background:rgba(255,235,0,.08); border-bottom:2px solid var(--yellow); }
.prose th { font-weight:700; font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--yellow); padding:11px 14px; text-align:left; }
.prose tbody tr { border-bottom:1px solid var(--border); transition:background var(--tr); }
.prose tbody tr:last-child { border-bottom:none; }
.prose tbody tr:hover { background:rgba(255,235,0,.04); }
.prose td { padding:10px 14px; color:var(--text-md); font-size:14px; }
.prose td:first-child { font-weight:600; color:var(--text); }
.prose ol,.prose ul,.list-content { padding-left:1.5em !important; margin:.75rem 0 1rem !important; }
.prose ol,.list-content.list-ol { list-style:decimal !important; }
.prose ul,.list-content.list-ul { list-style:disc !important; }
.prose li,.list-content li { padding-left:.3em; margin-bottom:6px; font-size:15px; color:var(--text-md); line-height:1.75; }
.prose ol li::marker,.list-content.list-ol li::marker { color:var(--yellow); font-weight:700; }
.prose ul li::marker,.list-content.list-ul li::marker { color:var(--cyan); }
.bonus-cards { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:1.25rem 0; list-style:none !important; padding-left:0 !important; }
.bonus-card { background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); padding:18px; transition:border-color var(--tr),box-shadow var(--tr); }
.bonus-card:hover { border-color:var(--border-y); box-shadow:var(--sh-yellow); }
.bonus-card-title { font-family:var(--font-d); font-size:18px; letter-spacing:1px; color:var(--text); margin-bottom:6px; }
.bonus-card-text  { font-size:13px; color:var(--text-md); line-height:1.6; margin:0; }
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:1.5rem 0; }
.pros-card,.cons-card { background:var(--card); border-radius:var(--r-md); overflow:hidden; }
.pros-head { background:rgba(162,214,38,.08); color:var(--green); border-bottom:2px solid var(--green); padding:10px 14px; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.cons-head { background:rgba(255,68,68,.08); color:var(--red); border-bottom:2px solid var(--red); padding:10px 14px; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.pros-body,.cons-body { padding:8px 14px; }
.pros-body li,.cons-body li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--text-md); padding:5px 0; border-bottom:1px solid rgba(255,255,255,.04); line-height:1.5; }
.pros-body li:last-child,.cons-body li:last-child { border-bottom:none; }
.pros-body li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; }
.cons-body li::before { content:'✗'; color:var(--red); font-weight:700; flex-shrink:0; }
nav ul,.header-nav,.mobile-nav-links,.footer-links { list-style:none !important; padding-left:0 !important; margin:0 !important; }

/* TOC */
.toc-wrap { margin:1.75rem 0; border:1px solid var(--border); border-radius:var(--r-md); background:var(--card); overflow:hidden; }
.toc-toggle { display:flex; align-items:center; gap:10px; width:100%; background:none; border:none; padding:12px 16px; color:var(--text); font-family:var(--font-b); font-size:14px; font-weight:600; text-align:left; transition:background var(--tr); }
.toc-toggle:hover { background:rgba(255,255,255,.02); }
.toc-toggle svg { color:var(--yellow); flex-shrink:0; width:16px; height:16px; }
.toc-label { flex:1; }
.toc-chevron { width:16px; height:16px; color:var(--yellow); transition:transform var(--tr); flex-shrink:0; }
.toc-wrap.open .toc-chevron { transform:rotate(180deg); }
.toc-body { max-height:0; overflow:hidden; transition:max-height .3s ease; border-top:0 solid var(--border); }
.toc-wrap.open .toc-body { max-height:600px; border-top-width:1px; }
.toc-list { padding:10px 16px 14px; display:flex; flex-direction:column; gap:3px; }
.toc-list a { display:block; font-size:13px; color:var(--text-md); padding:5px 8px; border-radius:var(--r-xs); border-left:2px solid transparent; transition:all var(--tr); }
.toc-list a:hover,.toc-list a.active { color:var(--yellow); border-left-color:var(--yellow); background:var(--yglow); padding-left:13px; }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:8px; }
.faq-item { background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:border-color var(--tr); }
.faq-item:hover,.faq-item.open { border-color:var(--border-y); }
.faq-question,h3.faq-question { width:100%; background:none; border:none; padding:14px 16px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:var(--font-b); font-size:14px; font-weight:600; color:var(--text); text-align:left; gap:12px; transition:color var(--tr),background var(--tr); letter-spacing:normal; }
.faq-question:hover,h3.faq-question:hover { color:var(--yellow); background:rgba(255,235,0,.03); }
.faq-icon { flex-shrink:0; width:24px; height:24px; border-radius:50%; background:rgba(255,235,0,.1); border:1px solid rgba(255,235,0,.25); display:flex; align-items:center; justify-content:center; color:var(--yellow); font-size:15px; transition:all var(--tr); }
.faq-item.open .faq-icon { background:rgba(255,235,0,.2); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease,padding .2s ease; font-size:14px; color:var(--text-md); line-height:1.75; border-top:0 solid var(--border); padding:0 16px; }
.faq-answer p { font-size:14px; color:var(--text-md); line-height:1.75; margin:0; }
.faq-item.open .faq-answer { max-height:400px; border-top-width:1px; padding:12px 16px 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background:var(--bg); border-top:1px solid var(--border); padding:44px 0 22px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; padding-bottom:24px; border-bottom:1px solid var(--border); margin-bottom:18px; }
.footer-logo { height:42px; width:auto; max-width:170px; object-fit:contain; margin-bottom:12px; }
.footer-about { font-size:13px; color:var(--text-dim); line-height:1.7; margin-bottom:14px; max-width:260px; }
.footer-social { display:flex; gap:8px; }
.social-btn { width:32px; height:32px; border-radius:50%; background:var(--card); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--text-dim); cursor:pointer; transition:all var(--tr); user-select:none; }
.social-btn:hover { background:var(--yglow); border-color:var(--border-y); color:var(--yellow); transform:translateY(-2px); }
.footer-col-title { font-weight:700; font-size:12px; color:var(--text); margin-bottom:10px; letter-spacing:.5px; text-transform:uppercase; }
.footer-links { display:flex; flex-direction:column; gap:8px; }
.footer-links a { font-size:13px; color:var(--text-dim); transition:color var(--tr); }
.footer-links a:hover { color:var(--yellow); }
.footer-bottom { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.age-badge { flex-shrink:0; display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:rgba(0,198,255,.1); border:1.5px solid rgba(0,198,255,.3); color:var(--cyan); font-weight:900; font-size:10px; margin-top:2px; }
.footer-disclaimer { font-size:11px; color:var(--text-dim); line-height:1.65; max-width:540px; }
.footer-copy { font-size:11px; color:var(--text-dim); white-space:nowrap; align-self:flex-end; }

/* FADE */
.fade-in { opacity:0; transform:translateY(12px); transition:opacity .5s ease,transform .5s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fd1{transition-delay:.1s} .fd2{transition-delay:.2s} .fd3{transition-delay:.3s}

/* =============================================
   ≤ 1200px
   ============================================= */
@media (max-width:1200px) {
  :root { --sidebar-w: 260px; }
  .hero-right { width: 380px; height: 380px; }
  .tab-panel.active { grid-template-columns: repeat(3,1fr); }
}

/* =============================================
   ≤ 960px — hide sidebar, full width
   ============================================= */
@media (max-width:960px) {
  .header-nav { display:none; }
  .header-actions { display:none; }
  .burger { display:flex; }
  .logo-link { display:none; }
  .logo-link-mobile { display:flex; }
  .mobile-nav { display:block; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display:none; }
  .hero-left { padding: 36px 0; }
  .hero-h1 { font-size:48px; }
  .hero-bonus-row { gap:6px; }

  .page-body { grid-template-columns:1fr; }
  .sticky-sidebar { display:none; }

  .tab-panel.active { grid-template-columns:repeat(3,1fr); }
  .bonus-cards { grid-template-columns:1fr; }
  .pros-cons { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
}

/* =============================================
   ≤ 600px — mobile
   ============================================= */
@media (max-width:600px) {
  :root { --header-h:58px; }
  .mobile-nav { top:58px; }
  .container { padding:0 14px; }
  .hero-left { padding:28px 0; }
  .hero-h1 { font-size:36px; }
  .hero-sub { display:none; }
  .hero-bonus-row { flex-direction:column; gap:4px; align-items:center; }
  .bonus-pill { width:100%; }
  .bonus-pill-sep { font-size:16px; line-height:1; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn { width:100%; }
  .tab-panel.active { grid-template-columns:repeat(2,1fr); gap:8px; }
  .prose.container,.section.prose.container { padding-left:14px !important; padding-right:14px !important; }
  .prose table,.review-table { display:block; overflow-x:auto; white-space:nowrap; }
  .footer-grid { grid-template-columns:1fr; gap:18px; }
  .footer-bottom { flex-direction:column; gap:10px; }
  .footer-copy { align-self:flex-start; }
}

/* =============================================
   ≤ 380px — small phones
   ============================================= */
@media (max-width:380px) {
  .hero-h1 { font-size:30px; }
  .tab-btn { font-size:12px; padding:8px 10px; }
  .bonus-pill-val { font-size:22px; }
}
