/* ============================================
   PIN-UP CASINO CHILE — MAIN STYLESHEET
   Colors: Black #000 | Cyan #009B8D | Red #F13D2B
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@700;800;900&display=swap');

:root {
  --black:      #000000;
  --black-2:    #0a0a0a;
  --black-3:    #111111;
  --black-4:    #1a1a1a;
  --black-5:    #222222;
  --cyan:       #009B8D;
  --cyan-light: #00c4b4;
  --cyan-dark:  #007a6e;
  --cyan-glow:  rgba(0,155,141,0.2);
  --red:        #F13D2B;
  --red-dark:   #c92d1d;
  --red-glow:   rgba(241,61,43,0.2);
  --white:      #ffffff;
  --gray-1:     #f5f5f5;
  --gray-2:     #cccccc;
  --gray-3:     #888888;
  --gray-4:     #444444;
  --text:       rgba(255,255,255,0.90);
  --text-muted: rgba(255,255,255,0.55);
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(0,155,141,0.3);
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.8);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ── ALL HEADINGS WHITE ── */
h1, h2, h3, h4, h5, h6 { color: var(--white); }

/* Override for fixed-size images */
.author-avatar,
.logo-img {
  height: 80px !important;
  width: 80px !important;
  min-width: 80px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-3); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--red);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.topbar a { color: white; font-weight: 800; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.site-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: var(--black-4);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.hamburger:hover { border-color: var(--cyan); }
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 2000;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--cyan); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-cyan {
  background: var(--cyan);
  color: white;
}
.btn-cyan:hover { background: var(--cyan-light); transform: translateY(-2px); box-shadow: 0 6px 24px var(--cyan-glow); }

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px var(--red-glow); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color: white; }

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-dark { background: var(--black-2); }
.section-darker { background: var(--black-3); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,155,141,0.12);
  border: 1px solid rgba(0,155,141,0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.section-title .accent { color: var(--cyan); }
.section-title .accent-red { color: var(--red); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,155,141,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241,61,43,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,61,43,0.15);
  border: 1px solid rgba(241,61,43,0.4);
  color: #ff8070;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 .hl { color: var(--cyan); }
.hero h1 .hl-red { color: var(--red); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hero-image { position: relative; }
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(0,155,141,0.25), var(--shadow-lg);
}
.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--red);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.hero-image-badge strong { font-size: 22px; display: block; font-family: 'Outfit', sans-serif; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item .icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BONUS CARD ── */
.bonus-card {
  background: linear-gradient(135deg, #001a18 0%, #003028 50%, #001a18 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
}
.bonus-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 8px;
}
.bonus-sub { font-size: 20px; color: var(--text-muted); margin-bottom: 20px; }
.bonus-features { display: flex; flex-direction: column; gap: 10px; }
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.bonus-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
}
.bonus-cta { text-align: center; }
.bonus-cta .btn { padding: 18px 36px; font-size: 16px; }
.bonus-cta-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.card.animate-in { opacity: 1; transform: translateY(0); }
.card:hover { border-color: var(--border-2); box-shadow: 0 0 30px var(--cyan-glow); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,155,141,0.12);
  border: 1px solid rgba(0,155,141,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.card-icon.red-icon {
  background: rgba(241,61,43,0.1);
  border-color: rgba(241,61,43,0.2);
}
.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--black-3);
  padding: 36px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ── TABLE ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.data-table thead th {
  background: var(--black-4);
  color: var(--text-muted);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--border);
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(0,155,141,0.05); }
.data-table tbody td { padding: 14px 18px; color: var(--text); }
.data-table .check { color: var(--cyan); font-weight: 700; }
.data-table .cross { color: var(--red); }
.data-table .highlight-row td { color: var(--cyan); font-weight: 600; }

.table-wrap {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
}

/* ── CHART BARS ── */
.chart-section { margin: 32px 0; }
.chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bar-chart { display: grid; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { min-width: 180px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.bar-track {
  flex: 1;
  height: 30px;
  background: var(--black-4);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.bar-fill {
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-light));
  display: flex;
  align-items: center;
  padding-right: 12px;
  justify-content: flex-end;
  transition: width 1.2s ease;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.bar-fill.red-fill { background: linear-gradient(90deg, var(--red-dark), var(--red)); }
.bar-score { min-width: 50px; text-align: right; font-size: 14px; font-weight: 700; color: var(--cyan); }

/* ── DONUT CHART (CSS) ── */
.donut-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.donut-wrap { position: relative; width: 200px; margin: 0 auto; }
.donut-wrap canvas { display: block; }
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}
.donut-center-num { font-size: 28px; font-weight: 900; color: var(--cyan); }
.donut-center-label { font-size: 11px; color: var(--text-muted); }
.donut-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ── STEPS ── */
.steps { display: grid; gap: 16px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--border-2); }
.step-num {
  min-width: 44px;
  height: 44px;
  background: var(--cyan);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.step-content h4 { font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--white); }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item.open { border-color: var(--cyan-dark); }
.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--cyan);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* ── PROS CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros { background: rgba(0,155,141,0.07); border: 1px solid rgba(0,155,141,0.2); border-radius: var(--radius); padding: 24px; }
.cons { background: rgba(241,61,43,0.07); border: 1px solid rgba(241,61,43,0.2); border-radius: var(--radius); padding: 24px; }
.pros h3 { color: var(--cyan); display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 17px; }
.cons h3 { color: var(--red); display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 17px; }
.pros li, .cons li { padding: 7px 0; font-size: 14px; color: var(--text-muted); display: flex; gap: 10px; border-bottom: 1px solid var(--border); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; color: var(--cyan); font-weight: 800; flex-shrink: 0; }
.cons li::before { content: '✗'; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* ── ARTICLE LAYOUT ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
.article-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cyan-dark);
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 30px 0 12px;
}
.article-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.article-content p { margin-bottom: 18px; font-size: 15px; line-height: 1.8; color: var(--text-muted); }
.article-content ul, .article-content ol { margin: 14px 0 22px 24px; font-size: 15px; line-height: 1.75; color: var(--text-muted); }
.article-content li { margin-bottom: 8px; }
.article-content a:not(.btn) { color: var(--cyan); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-content img { width: 100%; border-radius: var(--radius); margin: 28px 0; box-shadow: 0 0 40px rgba(0,155,141,0.15); }
.article-content strong { color: var(--white); }
.article-content blockquote {
  border-left: 3px solid var(--cyan);
  background: rgba(0,155,141,0.07);
  padding: 18px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: rgba(0,155,141,0.08);
  border: 1px solid rgba(0,155,141,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.highlight-box.warning {
  background: rgba(241,61,43,0.07);
  border-color: rgba(241,61,43,0.25);
}

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta {
  background: linear-gradient(135deg, #001a18 0%, #003028 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.sidebar-cta-badge {
  display: inline-block;
  background: rgba(0,155,141,0.15);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.sidebar-cta-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.sidebar-cta-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.sidebar-cta-list { display: flex; flex-direction: column; gap: 8px; margin: 0 0 20px; text-align: left; }
.sidebar-cta-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-cta-list li:last-child { border-bottom: none; }
.sidebar-cta-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M10 3L5 8.5 2 5.5l-1 1 4 4 6-7z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.sidebar-cta-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; opacity: 0.7; }

.sidebar-widget {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.sidebar-widget h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a:hover { background: var(--black-4); color: var(--cyan); }

/* ── AUTHOR BLOCK ── */
.author-block {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 48px;
}
.author-avatar {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
  flex-shrink: 0;
}
.author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 12px;
}
.author-bio { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.author-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.author-tag {
  background: rgba(0,155,141,0.1);
  border: 1px solid rgba(0,155,141,0.2);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,155,141,0.1) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 .hl { color: var(--white); }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb .sep { opacity: 0.4; }

/* ── RATING STARS ── */
.rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.rating-num { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ── PAYMENT METHODS ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.payment-item {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.payment-item:hover { border-color: var(--cyan-dark); color: var(--cyan); }
.payment-item .pay-icon { font-size: 24px; display: block; margin-bottom: 8px; }
.payment-item .pay-speed { font-size: 11px; color: var(--cyan); font-weight: 600; margin-top: 4px; }

/* ── FOOTER ── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon { flex-shrink: 0; }
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cyan); }
.footer-disclaimer {
  padding: 28px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.animate-up { animation: fadeUp 0.6s ease forwards; }

/* ── RESPONSIVE ── */


@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .hero-image { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bonus-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 24px; }
  .bar-label { min-width: 140px; }
  /* Subpage custom grids — collapse to 1 col */
  .download-split,
  .specs-grid,
  .donut-grid { grid-template-columns: 1fr !important; }
  .table-wrap { overflow-x: auto; }
  .data-table { font-size: 13px; }
  .data-table thead th,
  .data-table tbody td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 26px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bonus-amount { font-size: 52px; }
  /* Keep Jugar Ahora, hide Descargar App on mobile */
  .header-cta .btn-red { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .author-block { flex-direction: column; }
  .donut-grid { grid-template-columns: 1fr; }
  .bar-label { min-width: unset; width: 100%; }
  .bar-row { flex-wrap: wrap; }
  /* Subpage custom grids — collapse to 1 col */
  .payment-grid,
  .slot-top,
  .games-showcase,
  .features-compare,
  .bet-types,
  .tips-grid,
  .odds-comparison,
  .doc-grid,
  .volatility-bar { grid-template-columns: 1fr !important; }
  .timeline-retiro { grid-template-columns: repeat(2, 1fr) !important; }
  .results-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hours-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .page-hero h1 { font-size: 28px; }
  .page-hero { padding: 36px 0 24px; }
  .pros-cons { grid-template-columns: 1fr; }
  /* Header: show Jugar Ahora button */
  .header-cta { gap: 6px; }
  .header-cta .btn-cyan { padding: 8px 12px; font-size: 12px; }
}

/* -- UNIVERSAL MOBILE OVERFLOW SAFETY NET -- */
@media (max-width: 600px) {
  .article-content *,
  .article-layout *,
  .page-hero *,
  .section * {
    max-width: 100% !important;
    word-break: break-word;
  }
  .author-avatar,
  .step-num { max-width: unset !important; }
  .table-wrap,
  .data-table { display: block; overflow-x: auto; width: 100%; }
  [style*='grid-template-columns'] { grid-template-columns: 1fr !important; }
}
