/* =========================================
   CUSTOM PROPERTIES
   ========================================= */
:root {
  --bg: #120d0b;
  --surface: #1d1613;
  --surface2: #2a1f1b;
  --border: #49332b;
  --accent: #d98a4e;
  --accent-light: #efb182;
  --accent-dim: #a05f2c;
  --text: #fff5ef;
  --muted: #a78d7f;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.45);
  --transition: .25s ease;
  --container: 1180px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================
   LAYOUT
   ========================================= */
.contenedor { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.contenedor-narrow { max-width: 800px; }
.bg-surface { background: var(--surface); }

/* =========================================
   HEADER
   ========================================= */
.cr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18,13,11,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.cr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.cr-logo img { height: 28px; width: auto; }
.cr-nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.cr-nav-link {
  display: block;
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.cr-nav-link:hover,
.cr-nav-link.activo {
  color: var(--text);
  background: rgba(217,138,78,.08);
}
.solo-movil { display: none; }

/* Hamburger */
.cr-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.cr-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.cr-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cr-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   BREADCRUMB
   ========================================= */
.cr-breadcrumb {
  padding: 1rem 0 .25rem;
}
.cr-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  font-size: .8rem;
  color: var(--muted);
}
.cr-breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: .35rem;
  color: var(--border);
}
.cr-breadcrumb span[aria-current] {
  color: var(--accent-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .03em;
}

/* =========================================
   HERO
   ========================================= */
.hero-intro {
  padding: 3rem 0 3.5rem;
  text-align: center;
}
.hero-intro h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-texto {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.hero-cta {
  display: inline-block;
  padding: .85rem 2.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 50px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hero-cta:hover {
  box-shadow: 0 8px 28px rgba(217,138,78,.34);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================================
   SHOWCASE
   ========================================= */
.pltf-showcase { padding: 3rem 0 3.5rem; }
.pltf-showcase h2 {
  text-align: center;
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
}
.pltf-grid { display: flex; flex-direction: column; gap: 1rem; }

.pltf-entry {
  position: relative;
  display: grid;
  grid-template-columns: 46px 150px 1fr 155px;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pltf-entry:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 20px rgba(217,138,78,.1);
}

.pltf-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(217,138,78,.12);
  color: var(--accent-light);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.pltf-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(239,177,130,.08);
  border-radius: var(--radius-sm);
  padding: .5rem;
}
.pltf-brand img { height: 36px; width: auto; object-fit: contain; }

.pltf-bonus-title {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
}
.pltf-bonus-value {
  display: block;
  font-size: .85rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: .35rem;
}
.pltf-bonus-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

.pltf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.pltf-cta:hover {
  box-shadow: 0 8px 28px rgba(217,138,78,.34);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================================
   EVAL / HOW WE RATE
   ========================================= */
.eval-methodology { padding: 3.5rem 0; }
.eval-methodology h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.eval-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2rem;
  color: var(--muted);
}
.eval-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.eval-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.eval-card:hover { border-color: var(--accent-dim); }
.eval-icon { color: var(--accent); margin-bottom: .75rem; }
.eval-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.eval-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.eval-cta-text { text-align: center; font-size: .9rem; color: var(--muted); }

/* =========================================
   REVIEWS
   ========================================= */
.top-reviews { padding: 3.5rem 0; }
.top-reviews > .contenedor > h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.top5-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
}
.rvw-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.rvw-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.rvw-rank-badge {
  background: rgba(217,138,78,.12);
  color: var(--accent-light);
  font-weight: 800;
  font-size: .85rem;
  padding: .35rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}
.rvw-brand-area {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(239,177,130,.08);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
}
.rvw-brand-area img { height: 38px; width: auto; object-fit: contain; }
.rvw-panel h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.rvw-highlight {
  background: linear-gradient(135deg, rgba(217,138,78,.08), rgba(160,95,44,.05));
  border: 1px solid rgba(217,138,78,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.rvw-bonus-label {
  display: inline-block;
  background: rgba(217,138,78,.15);
  color: var(--accent-light);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-bottom: .5rem;
}
.rvw-bonus-main { display: block; font-size: 1.2rem; color: var(--text); margin-bottom: .25rem; }
.rvw-bonus-amount { font-size: .875rem; color: var(--accent-light); }
.rvw-intro { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }

.rvw-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.rvw-feature-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem .5rem;
}
.rvw-feature-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: .15rem;
}
.rvw-feature-label { font-size: .75rem; color: var(--muted); }

.rvw-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rvw-pros, .rvw-cons {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.rvw-pros h4, .rvw-cons h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .65rem;
  font-weight: 700;
}
.rvw-pros h4 { color: #5cb85c; }
.rvw-cons h4 { color: #e06c5e; }
.rvw-pros ul, .rvw-cons ul { display: flex; flex-direction: column; gap: .4rem; }
.rvw-pros li::before { content: '✓ '; color: #5cb85c; font-weight: 700; }
.rvw-cons li::before { content: '✗ '; color: #e06c5e; font-weight: 700; }
.rvw-pros li, .rvw-cons li { font-size: .875rem; color: var(--muted); line-height: 1.5; }

.rvw-info-tbl {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.rvw-info-tbl td {
  padding: .65rem 1rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.rvw-info-tbl tr:last-child td { border-bottom: none; }
.rvw-info-tbl td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 40%;
  background: var(--surface);
}
.rvw-info-tbl td:last-child { color: var(--text); }
.rvw-info-tbl tr:nth-child(even) td:last-child { background: rgba(255,255,255,.015); }

.rvw-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rvw-extra-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.rvw-extra-block h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; color: var(--accent-light); }
.rvw-extra-block p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

.rvw-cta-btn {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.rvw-cta-btn:hover {
  box-shadow: 0 8px 28px rgba(217,138,78,.34);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================================
   TABLES (PAY / BONUS)
   ========================================= */
.pay-options, .bns-overview, .live-games, .rtp-guide, .selection-guide, .expert-opinion, .faq-block {
  padding: 3.5rem 0;
}
.pay-options h2, .bns-overview h2, .live-games h2, .rtp-guide h2, .selection-guide h2, .expert-opinion h2, .faq-block h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.pay-options h3, .bns-overview h3, .live-games h3, .rtp-guide h3, .selection-guide h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 .75rem;
  color: var(--accent-light);
}
.pay-options > .contenedor > p,
.bns-overview > .contenedor > p,
.live-games > .contenedor > p,
.rtp-guide > .contenedor > p,
.selection-guide > .contenedor > p,
.expert-opinion > .contenedor > p {
  color: var(--muted);
  max-width: 800px;
  line-height: 1.75;
  margin-bottom: .75rem;
}
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1rem; }

.pay-tbl, .bns-tbl {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 580px;
}
.pay-tbl th, .bns-tbl th {
  background: var(--surface2);
  color: var(--accent-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pay-tbl td, .bns-tbl td {
  padding: .7rem 1rem;
  font-size: .875rem;
  border-bottom: 1px solid rgba(73,51,43,.4);
}
.pay-tbl tr:last-child td, .bns-tbl tr:last-child td { border-bottom: none; }
.pay-tbl tr:nth-child(odd) td { background: var(--surface); }
.pay-tbl tr:nth-child(even) td { background: var(--surface2); }
.bns-tbl tr:nth-child(odd) td { background: var(--surface); }
.bns-tbl tr:nth-child(even) td { background: var(--surface2); }

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(217,138,78,.12);
  color: var(--accent-light);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 800;
  margin-right: .4rem;
  vertical-align: middle;
}
.speed-badge {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}
.speed-badge.rapido { background: rgba(92,184,92,.12); color: #5cb85c; }
.speed-badge.medio { background: rgba(240,173,78,.12); color: #f0ad4e; }
.speed-badge.lento { background: rgba(224,108,94,.12); color: #e06c5e; }
.tipo-badge {
  display: inline-block;
  padding: .15rem .55rem;
  background: rgba(217,138,78,.12);
  color: var(--accent-light);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

/* =========================================
   BONUS TIPS
   ========================================= */
.bns-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bns-tip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}
.bns-tip strong { display: block; font-size: .95rem; margin-bottom: .3rem; color: var(--accent-light); }
.bns-tip p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* =========================================
   GAME CARDS
   ========================================= */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition);
}
.game-card:hover { border-color: var(--accent-dim); }
.game-icon { margin-bottom: .65rem; }
.game-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.game-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* =========================================
   RTP CARDS
   ========================================= */
.rtp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.rtp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.rtp-label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .6rem; color: var(--accent-light); }
.rtp-bar {
  position: relative;
  height: 8px;
  background: var(--surface2);
  border-radius: 4px;
  margin-bottom: .6rem;
  overflow: hidden;
}
.rtp-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(var(--rtp-val) * 1%);
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 4px;
}
.rtp-percent { position: relative; z-index: 1; font-size: .75rem; font-weight: 700; color: var(--accent-light); }
.rtp-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* =========================================
   GUIDE
   ========================================= */
.guide-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.guide-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(217,138,78,.12);
  color: var(--accent-light);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.guide-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; color: var(--text); }
.guide-item p { font-size: .875rem; color: var(--muted); line-height: 1.65; grid-column: 2; }

/* =========================================
   OPINION / VERDICT
   ========================================= */
.opinion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.opinion-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
}
.opinion-icon { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.opinion-card strong { display: block; font-size: .85rem; color: var(--accent-light); margin-bottom: .3rem; }
.opinion-card p { font-size: .82rem; color: var(--muted); }

.verdict-box {
  background: linear-gradient(135deg, rgba(217,138,78,.06), rgba(160,95,44,.03));
  border: 1px solid rgba(217,138,78,.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.verdict-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; color: var(--accent-light); }
.verdict-box p { font-size: .925rem; color: var(--muted); line-height: 1.75; }

/* =========================================
   FAQ
   ========================================= */
.faq-block h2 { text-align: center; margin-bottom: 1.75rem; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.abierto { border-color: var(--accent-dim); }
.faq-item h3 { margin: 0; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  gap: 1rem;
}
.faq-trigger:hover { color: var(--accent-light); }
.faq-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.abierto .faq-chevron { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer[hidden] { display: block; max-height: 0; padding: 0 1.25rem; }
.faq-answer:not([hidden]) { max-height: 400px; padding: 0 1.25rem 1.15rem; }
.faq-answer p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* =========================================
   FOOTER
   ========================================= */
.cr-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-heading { display: block; color: var(--accent-light); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: .875rem; color: var(--muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-disclaimer p { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); }

/* =========================================
   SUBPAGES
   ========================================= */
.subpage-hero {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.015em;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subpage-content {
  padding: 0 0 3.5rem;
}
.subpage-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
  color: var(--text);
}
.subpage-content h2:first-of-type { margin-top: .5rem; }
.subpage-content p { color: var(--muted); line-height: 1.75; margin-bottom: .75rem; }
.subpage-content em { color: var(--accent-light); font-style: normal; font-size: .875rem; }
.subpage-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.subpage-list li {
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .35rem;
}
.subpage-list li::marker { color: var(--accent); }

/* Author page */
.author-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent-dim);
  flex-shrink: 0;
  object-fit: cover;
}
.author-bio h2 { margin-top: 0 !important; }
.author-role { color: var(--accent-light) !important; font-weight: 600; font-size: .95rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .pltf-entry {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
    position: relative;
  }
  .pltf-rank {
    position: absolute;
    top: -14px;
    left: 14px;
    width: 32px;
    height: 32px;
    font-size: .82rem;
    z-index: 2;
    border: 2px solid var(--surface2);
  }
  .pltf-brand { justify-content: center; }
  .pltf-cta { width: 100%; justify-content: center; }
  .rvw-features { grid-template-columns: repeat(2, 1fr); }
  .rvw-proscons { grid-template-columns: 1fr; }
  .rvw-extra { grid-template-columns: 1fr; }
  .guide-item { grid-template-columns: 1fr; text-align: center; }
  .guide-num { margin: 0 auto .5rem; }
  .guide-item h3 { grid-column: 1; }
  .guide-item p { grid-column: 1; }
}

@media (max-width: 768px) {
  .cr-menu-toggle { display: flex; }
  .cr-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18,13,11,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .cr-nav.abierto { transform: translateX(0); }
  .cr-nav-list { flex-direction: column; gap: .25rem; }
  .cr-nav-link { padding: .85rem 1rem; font-size: 1rem; }
  .solo-movil { display: list-item; }
  .hero-intro { padding: 2rem 0 2.5rem; }
  .hero-intro h1 { font-size: 1.65rem; }
  .author-profile { flex-direction: column; text-align: center; }
  .author-avatar { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .rvw-features { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .rvw-panel { padding: 1.25rem; }
  .opinion-cards { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   PRINT
   ========================================= */
@media print {
  body { background: #fff; color: #222; }
  .cr-header, .cr-footer, .cr-menu-toggle, .pltf-cta, .rvw-cta-btn, .hero-cta { display: none; }
}