/* ============================================================
   BETWAY.GT – Bespoke stylesheet
   Palette: #110020 (black-violet), #00a826 (Betway green),
            #ffaf27 (amber), #f6f6f6 (light surface)
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f6f6f6;
  overflow-x: hidden;
}

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

a { color: #00a826; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- typography ---------- */
h1, h2, h3 { line-height: 1.25; }
h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: #110020; margin-bottom: 1rem; }
h2 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 700; color: #110020; margin: 2rem 0 0.75rem; }
h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 600; color: #110020; margin: 1.5rem 0 0.5rem; }

p { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ---------- layout helpers ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.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; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #110020;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #00a826;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  max-width: 1180px;
  margin: 0 auto;
}

/* wordmark */
.site-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark-logo {
  height: 32px;
  width: auto;
}

.wordmark-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.wordmark-text span { color: #00a826; }

/* desktop nav */
.desktop-nav { display: flex; align-items: center; gap: 8px; }

.desktop-nav a {
  color: #d0d0e0;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.desktop-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.desktop-nav a.active { color: #fff; }

/* lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.lang-switch a {
  color: #999;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.lang-switch a.active { color: #fff; background: rgba(0,168,38,0.3); }
.lang-switch span { color: #555; font-size: 0.8rem; }

/* cta buttons in header */
.btn-acceder {
  background: transparent;
  border: 1.5px solid #00a826;
  color: #00a826;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 8px;
}
.btn-acceder:hover { background: #00a826; color: #fff; text-decoration: none; }

.btn-register {
  background: #00a826;
  color: #fff;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: 4px;
}
.btn-register:hover { background: #00861f; text-decoration: none; }

/* burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav slide-down */
.mobile-nav {
  display: none;
  background: #1a0030;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-nav.open { max-height: 600px; }

.mobile-nav-inner {
  padding: 16px 20px 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-nav-links a {
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: #fff; }

.mobile-nav-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang-switch {
  display: flex;
  gap: 6px;
  margin-right: auto;
}
.mobile-lang-switch a {
  color: #999;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid #444;
  border-radius: 3px;
  text-decoration: none;
}
.mobile-lang-switch a.active { color: #fff; border-color: #00a826; background: rgba(0,168,38,0.2); }

/* ============================================================
   HERO BAND
   ============================================================ */
.hero {
  background: #110020;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-eyebrow {
  display: inline-block;
  background: #00a826;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
}
.hero-title em { color: #00a826; font-style: normal; }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-cta-primary {
  display: inline-block;
  background: #00a826;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta-primary:hover { background: #00861f; transform: translateY(-1px); text-decoration: none; }

.hero-cta-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta-secondary:hover { background: rgba(255,255,255,0.2); text-decoration: none; }

/* ============================================================
   PROMO STRIP
   ============================================================ */
.promo-strip {
  background: #ffaf27;
  padding: 14px 20px;
}
.promo-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-badge {
  background: #110020;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
}
.promo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #110020;
}
.promo-strip-cta {
  margin-left: auto;
  background: #110020;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
}
.promo-strip-cta:hover { background: #1e003c; text-decoration: none; }

/* ============================================================
   CATEGORY CHIPS (game filter)
   ============================================================ */
.category-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 67px;
  z-index: 900;
}
.category-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 52px;
}
.category-nav-inner::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  background: #f0f0f0;
  color: #333;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.chip:hover { background: #110020; color: #fff; }
.chip.active { background: #00a826; color: #fff; }

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: 48px 0;
}
.section-alt {
  background: #fff;
}
.section-dark {
  background: #110020;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #110020;
}
.section-dark .section-title { color: #fff; }

.section-title-accent { color: #00a826; }

.section-see-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: #00a826;
  white-space: nowrap;
}
.section-see-all:hover { text-decoration: underline; }

/* ============================================================
   GAME GRID
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.game-card {
  background: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.game-card-img {
  width: 100%;
  aspect-ratio: 270 / 210;
  object-fit: cover;
}

.game-card-label {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(17,0,32,0.8);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  pointer-events: none;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,168,38,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.play-btn {
  background: #fff;
  color: #110020;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}

.game-card-info {
  padding: 8px 10px;
  background: #110020;
}
.game-card-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 0.65rem;
  color: #00a826;
  margin-top: 2px;
}

/* hidden game cards (filter) */
.game-card.hidden { display: none; }

/* ============================================================
   SPORTS SECTION
   ============================================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.sport-card {
  background: #1e003c;
  border-radius: 8px;
  padding: 20px 16px;
  border: 1px solid rgba(0,168,38,0.2);
  transition: border-color 0.2s;
  text-decoration: none;
}
.sport-card:hover { border-color: #00a826; text-decoration: none; }

.sport-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.sport-card-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sport-card-markets {
  color: #00a826;
  font-size: 0.8rem;
}

/* odds card */
.odds-band {
  background: #1e003c;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}
.odds-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.odds-row:last-child { border-bottom: none; }
.odds-match { color: #ddd; font-size: 0.85rem; flex: 1; min-width: 120px; }
.odds-values { display: flex; gap: 6px; }
.odds-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  min-width: 52px;
  text-align: center;
  transition: background 0.15s;
}
.odds-btn:hover { background: #00a826; border-color: #00a826; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #110020;
  padding: 32px 0;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.trust-item {
  text-align: center;
}
.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.trust-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   PAYMENT LOGOS
   ============================================================ */
.payments-section {
  padding: 36px 0;
  background: #fff;
}
.payments-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.payments-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: center;
}
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.payment-logo {
  height: 36px;
  width: auto;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.payment-logo:hover { opacity: 1; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list li::after { content: '›'; color: #bbb; font-size: 0.85rem; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a, .breadcrumb-list span {
  font-size: 0.8rem;
  color: #777;
}
.breadcrumb-list a:hover { color: #00a826; }
.breadcrumb-list li:last-child span { color: #333; font-weight: 600; }

/* ============================================================
   SEO ARTICLE BLOCK
   ============================================================ */
.seo-block {
  background: #fff;
  padding: 48px 0 60px;
}
.seo-block .container {
  max-width: 860px;
}

/* all headings inside seo block */
.seo-article h1 { color: #110020; margin-bottom: 1.25rem; }
.seo-article h2 { color: #110020; border-bottom: 2px solid #00a826; padding-bottom: 6px; }
.seo-article h3 { color: #110020; }
.seo-article p { color: #333; }
.seo-article a { color: #00a826; font-weight: 600; }
.seo-article ul, .seo-article ol { color: #333; }
.seo-article li { margin-bottom: 0.5rem; }
.seo-article strong { color: #110020; }

/* SEO tables */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.seo-article th {
  background: #110020;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  overflow-wrap: anywhere;
}
.seo-article td {
  padding: 9px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.seo-article tr:nth-child(even) td { background: #f9f9f9; }
.seo-article tr:last-child td { border-bottom: none; }

/* FAQ accordion */
.faq-item {
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #f6f6f6;
  color: #110020;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  padding: 14px 40px 14px 16px;
  border: none;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: background 0.2s;
}
.faq-question:hover { background: #eef8f0; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #00a826;
  transition: transform 0.2s;
}
.faq-question.open::after { transform: translateY(-50%) rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}
.faq-answer.open { max-height: 400px; padding: 14px 16px; }
.faq-answer p { margin-bottom: 0; font-size: 0.9rem; color: #444; }

/* ============================================================
   INNER PAGE HERO (smaller)
   ============================================================ */
.page-hero {
  background: #110020;
  padding: 40px 0 36px;
  border-bottom: 3px solid #00a826;
}
.page-hero .container { max-width: 860px; }

.page-hero-label {
  display: inline-block;
  background: rgba(0,168,38,0.2);
  color: #00a826;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.bonus-card {
  background: #110020;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid rgba(0,168,38,0.25);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a826, #ffaf27);
}
.bonus-card-type {
  color: #00a826;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bonus-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.bonus-card-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.bonus-card-cta {
  display: inline-block;
  background: #00a826;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}
.bonus-card-cta:hover { background: #00861f; text-decoration: none; }
.bonus-terms {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}

/* ============================================================
   APP PAGE
   ============================================================ */
.app-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.app-step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.app-step-num {
  width: 36px;
  height: 36px;
  background: #00a826;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.app-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #110020;
  margin-bottom: 6px;
}
.app-step-desc {
  font-size: 0.82rem;
  color: #555;
}

/* app store badges */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #110020;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s;
}
.store-badge:hover { border-color: #00a826; text-decoration: none; }
.store-badge-icon { font-size: 1.4rem; }

/* ============================================================
   REVIEW PAGE – Pros/Cons
   ============================================================ */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.verdict-card {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 20px;
  border-top: 4px solid;
}
.verdict-card.pros { border-color: #00a826; }
.verdict-card.cons { border-color: #e74c3c; }
.verdict-card-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.verdict-card.pros .verdict-card-label { color: #00a826; }
.verdict-card.cons .verdict-card-label { color: #e74c3c; }
.verdict-card ul { padding-left: 1.2rem; }
.verdict-card li { font-size: 0.87rem; color: #333; margin-bottom: 6px; }

/* ============================================================
   RATING BADGE (review page)
   ============================================================ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #110020;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 24px;
}
.rating-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.rating-score span { font-size: 1rem; color: rgba(255,255,255,0.5); }
.rating-stars { color: #ffaf27; font-size: 1.2rem; }
.rating-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0015;
  padding: 48px 0 24px;
  border-top: 3px solid #00a826;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .wordmark-text {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-col-title {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 680px;
}
.footer-legal strong { color: rgba(255,255,255,0.5); }
.footer-rg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.footer-rg-icon { font-size: 1.4rem; }
.footer-rg-text { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  /* header: hide desktop nav, show burger */
  .desktop-nav,
  .lang-switch,
  .btn-acceder,
  .btn-register { display: none !important; }

  .burger-btn { display: flex; }
  .mobile-nav { display: block; }

  .hero { min-height: 320px; }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .verdict-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding: 40px 20px; }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .game-card-info { display: none; }

  .sports-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section { padding: 32px 0; }
}

@media (max-width: 560px) {
  /* prevent table overflow */
  .seo-article table {
    font-size: 0.78rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .seo-article th,
  .seo-article td {
    padding: 7px 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ensure no fixed widths break 360px */
@media (max-width: 375px) {
  .header-inner { padding: 0 12px; }
  .container { padding: 0 12px; }
  .wordmark-text { font-size: 1.25rem; }
}
