/* ============================================
   PIN-UP CASINO MX — GLOBAL STYLES
   Brand: Black #0d0d0d | Red #ff0033 | Green #1fbd5a
   ============================================ */

:root {
  /* Pin-Up brand colors — black, red, green */
  --red:       #ff0033;
  --red-dark:  #cc0029;
  --red-light: #ff3355;
  --green:     #1fbd5a;
  --green-dark:#18a04c;
  --green-light:#25d967;
  --gold:      #f5c842;
  --gold-dark: #d4a800;
  --gold-dim:  #b8960c;
  --dark:      #0d0d0d;
  --dark-2:    #141414;
  --dark-3:    #1a1a1a;
  --dark-4:    #222222;
  --card:      #181818;
  --text:      #f0f0f0;
  --text-muted:#999999;
  --border:    rgba(255,0,51,0.2);
  --gradient:  linear-gradient(135deg, #ff0033 0%, #cc0029 100%);
  --gradient-green: linear-gradient(135deg, #1fbd5a 0%, #18a04c 100%);
  --gradient-gold: linear-gradient(135deg, #f5c842 0%, #d4a800 100%);
  --shadow-red:    0 8px 32px rgba(255,0,51,0.35);
  --shadow-green:  0 8px 32px rgba(31,189,90,0.35);
  --radius:    10px;
  --radius-lg: 18px;
  --transition:0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { display: block; max-width: 100%; height: auto; }

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }
h4 { font-size: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,5,8,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
/* PIN-UP text logo — Boogaloo matching original brand font */
.logo-pinup {
  font-family: 'Boogaloo', 'Impact', 'Arial Black', sans-serif;
  font-size: 2rem;
  font-style: italic;
  color: #ff0033;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}
.logo-pinup-sm {
  font-size: 1.6rem;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text em {
  color: var(--gold);
  font-style: normal;
}
/* SVG Logo image */
.header-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo:hover .header-logo-img { opacity: 0.85; }
.footer-logo-img {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.logo-footer:hover .footer-logo-img { opacity: 1; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}
.main-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover { background: var(--dark-3); color: var(--gold); }
.main-nav .nav-cta {
  background: var(--gradient-green);
  color: #fff !important;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-green);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.main-nav .nav-cta:hover { transform: scale(1.04); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============ CTA BUTTON ============ */
/* CTA = GREEN (Регистрация style, original Pin-Up brand) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-green);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
  animation: pulse-green 2.5s ease-in-out infinite;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(31,189,90,0.55);
  background: var(--green-light);
  color: #ffffff !important;
}
.cta-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cta-arrow { font-size: 1.2rem; }
.cta-sm { font-size: 0.9rem; padding: 0.75rem 1.5rem; }
.cta-center { text-align: center; margin-top: 2rem; }

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--green);
  color: var(--green) !important;
  border-radius: 6px;
  font-weight: 700;
  transition: all var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff !important;
  transform: translateY(-2px);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 32px rgba(31,189,90,0.3); }
  50%       { box-shadow: 0 8px 48px rgba(31,189,90,0.65); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background: #0d0d0d;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 4rem 1.25rem;
}
.hero-badge {
  display: inline-block;
  background: var(--gradient-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.hero-bonus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.bonus-pill {
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.4);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.cta-hero { font-size: 1.15rem; padding: 1.15rem 2.25rem; }
.hero-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============ RATING OVERVIEW ============ */
.rating-overview {
  padding: 4rem 0;
  background: var(--dark-2);
}
.rating-overview h2 { text-align: center; margin-bottom: 2.5rem; }
.rating-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.rating-main-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.big-score {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.big-score span { font-size: 1.8rem; color: var(--text-muted); }
.stars-row { color: var(--gold); font-size: 1.8rem; margin: 0.75rem 0; }
.rating-main-card p { color: var(--text-muted); font-size: 0.85rem; }
.rating-bars { display: flex; flex-direction: column; gap: 1.25rem; }
.bar-item { display: flex; flex-direction: column; gap: 0.4rem; }
.bar-label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.bar-track {
  background: var(--dark-4);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gradient-green);
  border-radius: 50px;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  transition: width 1.2s ease;
}
.bar-fill.animated { width: var(--w); }

/* ============ BONOS SECTION ============ */
.bonos-section {
  padding: 4rem 0;
  background: var(--dark);
}
.bonos-section h2 { margin-bottom: 1rem; }
/* Images: contain not cover — не обрезать девочек! */
.section-banner   { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2rem; object-fit: contain; max-height: 420px; background: #0d0d0d; }
.section-banner-sq{ width: 100%; border-radius: var(--radius-lg); margin-bottom: 2rem; object-fit: contain; max-height: 460px; background: #0d0d0d; }

/* TABLES */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.9rem;
}
caption {
  caption-side: top;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
thead tr { background: var(--dark-3); }
thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
tbody tr {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:hover { background: var(--dark-3); }
tbody tr.highlight-row { background: rgba(200,16,46,0.1); }
tbody td {
  padding: 0.85rem 1rem;
  color: var(--text);
  vertical-align: middle;
}
tbody td strong { color: var(--gold); }

/* STEPS */
.bonus-steps { margin-top: 2.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.step-card:hover { border-color: var(--red); transform: translateY(-3px); transition: all var(--transition); }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-green);
}
.step-card h4 { color: var(--gold); margin-bottom: 0.5rem; }
.step-card p  { color: var(--text-muted); font-size: 0.9rem; }

/* GAMES SECTION */
.games-section {
  padding: 4rem 0;
  background: var(--dark-2);
}
.games-chart-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2rem 0;
}
.games-chart-container h3 { margin-bottom: 1.5rem; }
.chart-bars-horizontal { display: flex; flex-direction: column; gap: 1rem; }
.chart-row { display: grid; grid-template-columns: 160px 1fr; gap: 1rem; align-items: center; }
.chart-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.chart-track {
  background: var(--dark-4);
  border-radius: 50px;
  height: 32px;
  overflow: hidden;
}
.chart-bar {
  height: 100%;
  background: var(--gradient-green);
  border-radius: 50px;
  width: 0;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  min-width: 120px;
  transition: width 1.5s ease;
}
.chart-bar.animated { width: var(--w); }

/* PAGOS SECTION */
.pagos-section {
  padding: 4rem 0;
  background: var(--dark);
}

/* DEPORTES SECTION */
.deportes-section {
  padding: 4rem 0;
  background: var(--dark-2);
}

/* SEO CONTENT */
.seo-content {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.seo-article { max-width: 800px; }
.seo-article p { margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.8; }
.seo-article p strong { color: var(--text); }
.text-link {
  color: var(--gold) !important;
  border-bottom: 1px dashed var(--gold-dim);
}
.text-link:hover { border-bottom-style: solid; }
.seo-news-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.seo-news-links a {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: all var(--transition);
}
.seo-news-links a:hover { border-color: var(--red); color: var(--gold) !important; }

/* FAQ */
.faq-section {
  padding: 4rem 0;
  background: var(--dark);
}
.faq-section h2 { margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 900px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* RESPONSIBLE BAR */
.responsible-bar {
  background: rgba(200,16,46,0.08);
  border-top: 1px solid rgba(200,16,46,0.3);
  border-bottom: 1px solid rgba(200,16,46,0.3);
  padding: 0.85rem 0;
}
.responsible-bar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.responsible-bar a { color: var(--gold); }

/* FOOTER */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; line-height: 1.65; }
.footer-legal { margin-top: 0.75rem; font-size: 0.78rem !important; }
.logo-footer { margin-bottom: 0.5rem; }
.footer-links h4 { color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links nav a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links nav a:hover { color: var(--gold); }
.footer-cta-block h4 { color: var(--gold); font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer-cta-block p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}

/* BREADCRUMBS */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span:last-child { color: var(--text); }

/* BONUS PAGE */
.bonos-section-full { padding: 3.5rem 0; }
.bonus-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
.bonus-big-card {
  background: var(--card);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.bonus-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin: 1.25rem 0 0.5rem;
}
.bonus-amount small { font-size: 1.1rem; color: var(--text-muted); display: block; }
.bonus-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.bonus-details-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}
.bonus-details-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.bonus-details-list li:last-child { border-bottom: none; }
.bonus-side-cards { display: flex; flex-direction: column; gap: 1rem; }
.bonus-small-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.bonus-small-card:hover { border-color: var(--red); }
.bsc-icon { font-size: 2rem; flex-shrink: 0; }
.bsc-info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.bsc-amount { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.bsc-info p { font-size: 0.8rem; color: var(--text-muted); }

/* CATEGORY CARDS (casino page) */
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0 2.5rem;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.cat-card:hover { border-color: var(--red); transform: translateY(-3px); }
.cat-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cat-card h3 { color: var(--gold); margin-bottom: 0.5rem; }
.cat-card p { color: var(--text-muted); font-size: 0.9rem; }

/* LIVE FEATURES (sports page) */
.live-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.live-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.live-feature-card:hover { border-color: var(--red); }
.lfc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.live-feature-card h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.4rem; }
.live-feature-card p { color: var(--text-muted); font-size: 0.88rem; }

/* BONUS BAR (sports) */
.bonus-bar-highlight {
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.bbh-badge {
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.bbh-text { font-size: 0.95rem; color: var(--text); }
.bbh-text strong { color: var(--gold); }

/* LEGAL PAGE */
.legal-section { padding: 3rem 0 4rem; }
.legal-content { max-width: 800px; }
.legal-content h2 { margin: 2rem 0 1rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.legal-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.legal-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.legal-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); }
.warning-box {
  background: rgba(200,16,46,0.1);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.warning-box h2 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.3rem; }
.warning-box p { color: var(--text); margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .rating-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 1rem; width: 100%; border-radius: 8px; }
  .hero-content { padding: 2.5rem 1.25rem; }
  .chart-row { grid-template-columns: 120px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cta-hero { font-size: 0.95rem; padding: 0.9rem 1.4rem; }
  .hero-bonus-cards { gap: 0.4rem; }
  .bonus-pill { font-size: 0.78rem; }
}
/* ══ HEADER MOBILE CTA v4 ══ */
/* Desktop: hard hidden */
.header-cta-mobile { display:none !important; }
@media (min-width:701px) { .header-cta-mobile { display:none !important; } }

/* Mobile only */
@keyframes cta-glow {
  0%,100% { box-shadow:0 3px 14px rgba(232,50,30,.5); }
  50%      { box-shadow:0 5px 24px rgba(232,50,30,.8), 0 0 0 6px rgba(232,50,30,.12); }
}
@media (max-width:700px) {
  .header-cta-mobile {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:10px !important;
    flex-shrink:0 !important;
    padding:9px 17px !important;
    background:linear-gradient(135deg,#ff3a1e,#bf1f1a) !important;
    color:#fff !important;
    font-size:12.5px !important;
    font-weight:800 !important;
    letter-spacing:.07em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
    text-decoration:none !important;
    border-radius:10px !important;
    border:1.5px solid rgba(255,255,255,.22) !important;
    animation:cta-glow 2.8s ease-in-out infinite !important;
  }
  .header-cta-mobile:active { transform:scale(.96) !important; }
}
