/* ============================================================
   Casibom GT — Bespoke Stylesheet
   Palette: orange #f2592a | amber #fbb203 | tan #ae926c | green #33ae33
   ============================================================ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #f2592a;
  --orange-dark: #d44820;
  --amber: #fbb203;
  --amber-light: #fdd057;
  --tan: #ae926c;
  --tan-light: #c8a882;
  --green: #33ae33;
  --green-dark: #289228;
  --dark: #1a1006;
  --dark-2: #2b1e0e;
  --dark-3: #3d2a12;
  --mid: #7a5c38;
  --text: #2e1c08;
  --text-light: #6b4c28;
  --white: #ffffff;
  --off-white: #fff8f0;
  --card-bg: #fff3e6;
  --border: #e8c89a;
  --shadow: rgba(242,89,42,0.15);
  --shadow-deep: rgba(26,16,6,0.25);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }

/* ─── Typography helpers ─── */
.t-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.t-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.t-section-title span { color: var(--orange); }

/* ─── Layout helpers ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.section--alt { background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px var(--shadow-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Wordmark */
.wordmark {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.wordmark-text .wm-c { color: var(--orange); }
.wordmark-text .wm-asi { color: var(--amber); }
.wordmark-text .wm-bom { color: var(--white); }
.wordmark-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 3px;
  flex-shrink: 0;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--amber); background: rgba(255,255,255,0.08); }
.desktop-nav a.active { color: var(--amber); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 3px;
}
.lang-switcher a {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.lang-switcher a.active { color: var(--amber); background: rgba(251,178,3,0.2); }
.lang-switcher a:hover:not(.active) { color: var(--white); }

.btn-acceder {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-acceder:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }

.btn-register {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(242,89,42,0.4);
  transition: opacity var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-register:hover { opacity: 0.92; box-shadow: 0 4px 14px rgba(242,89,42,0.55); text-decoration: none; }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 67px;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid var(--orange);
  z-index: 199;
  padding: 16px 20px 20px;
  box-shadow: 0 8px 24px var(--shadow-deep);
}
.mobile-nav.open { display: block; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.mobile-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-links a:hover { background: rgba(255,255,255,0.08); color: var(--amber); }
.mobile-nav-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }
.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 3px;
}
.mobile-lang-switcher a {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.mobile-lang-switcher a.active { color: var(--amber); background: rgba(251,178,3,0.2); }

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 40%, #3d1e05 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(242,89,42,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 80% at 90% 30%, rgba(251,178,3,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,178,3,0.15);
  border: 1px solid rgba(251,178,3,0.4);
  border-radius: 40px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero-badge-text { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber); }
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title .ht-brand { color: var(--orange); }
.hero-title .ht-accent { color: var(--amber); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(242,89,42,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(242,89,42,0.65); text-decoration: none; }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); border-color: var(--amber); text-decoration: none; }

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; align-items: flex-start; }
.hero-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--amber); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* Hero banner slideshow */
.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-slider { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-slide img { width: 100%; height: 220px; object-fit: cover; }
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--amber); }

/* ─── GAME GRID ─── */
.games-section { padding: 60px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head-left { display: flex; flex-direction: column; gap: 4px; }

/* Category chips */
.cat-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  transition: all var(--transition);
  user-select: none;
}
.cat-chip:hover { border-color: var(--orange); color: var(--orange); }
.cat-chip.active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  border-color: transparent;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(242,89,42,0.35);
}
.cat-chip-icon { font-size: 1rem; }

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}
.game-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--dark-3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.game-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 28px rgba(242,89,42,0.25); }
.game-card img { width: 100%; aspect-ratio: 315/236; object-fit: cover; }
.game-card-name {
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--dark-2);
}
.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-card-badge.new { background: var(--green); }
.game-card-badge.live { background: #c00; }

/* Game card CTA overlay on hover */
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242,89,42,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-play {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.3);
  border-radius: var(--r-sm);
  padding: 8px 16px;
}

/* See more link */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }
.link-more::after { content: '→'; }

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(242,89,42,0.4);
  margin: 48px 0;
}
.promo-banner-left { flex: 1; min-width: 200px; }
.promo-banner-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,16,6,0.7);
  margin-bottom: 8px;
}
.promo-banner-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 8px;
}
.promo-banner-sub {
  font-size: 0.95rem;
  color: rgba(26,16,6,0.75);
}
.btn-promo {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.btn-promo:hover { background: var(--dark-2); transform: translateY(-2px); text-decoration: none; }

/* ─── SPORTS SECTION ─── */
.sports-section { background: var(--dark); padding: 60px 0; }
.sports-head .t-section-title { color: var(--white); }
.sports-head .t-section-title span { color: var(--amber); }
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.sport-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.sport-card:hover { border-color: var(--amber); background: rgba(251,178,3,0.08); }
.sport-icon { font-size: 2rem; }
.sport-name { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.sport-markets { font-size: 0.75rem; color: var(--amber); font-weight: 600; }

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(204,0,0,0.15);
  border: 1px solid #c00;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ff4444;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── FEATURES / WHY SECTION ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px var(--shadow); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(242,89,42,0.12) 0%, rgba(251,178,3,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-title { font-size: 0.95rem; font-weight: 800; color: var(--dark); }
.feature-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

/* ─── PAYMENT LOGOS ─── */
.payments-section { padding: 48px 0; background: var(--white); border-top: 1px solid var(--border); }
.payment-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--white);
  transition: border-color var(--transition), color var(--transition);
}
.payment-pill:hover { border-color: var(--orange); color: var(--orange); }
.payment-pill-icon { font-size: 1.1rem; }

/* ─── SEO ARTICLE ─── */
.seo-block {
  padding: 64px 0;
  background: var(--off-white);
}
.seo-block .container { max-width: 860px; }
.seo-article { font-size: 0.97rem; color: var(--text); line-height: 1.75; }
.seo-article h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.seo-article h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.seo-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 24px;
  margin-bottom: 10px;
}
.seo-article p { margin-bottom: 16px; }
.seo-article ul, .seo-article ol { margin-bottom: 16px; padding-left: 1.6em; }
.seo-article li { margin-bottom: 6px; }
.seo-article strong { color: var(--dark); }
.seo-article a { color: var(--orange); font-weight: 600; }

/* Responsive SEO tables */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
  table-layout: fixed;
  word-break: break-word;
}
.seo-article th {
  background: var(--dark);
  color: var(--amber);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  border: 1px solid var(--dark-3);
}
.seo-article td {
  padding: 9px 12px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  overflow-wrap: anywhere;
}
.seo-article tr:nth-child(even) td { background: #fff3e6; }
.seo-article tr:hover td { background: #ffe9d5; }

/* ─── FAQ ACCORDION ─── */
.faq-section { padding: 60px 0; background: var(--white); }
.faq-section .container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--off-white); color: var(--orange); }
.faq-question[aria-expanded="true"] { background: var(--orange); color: var(--white); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.faq-answer.open { display: block; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 0.83rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list li + li::before { content: '/'; color: var(--tan); }
.breadcrumb-list a { color: var(--orange); }
.breadcrumb-list li:last-child { color: var(--text-light); font-weight: 600; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .wordmark-text { font-size: 1.4rem; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.55); max-width: 240px; line-height: 1.55; }
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-pay-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.45); max-width: 600px; line-height: 1.6; }
.footer-rg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(251,178,3,0.1);
  border: 1px solid rgba(251,178,3,0.3);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  /* Header: wordmark + burger only */
  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .burger-btn { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .hero-visual { order: -1; }
  .hero-slide img { height: 180px; }
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 20px; }

  /* Promo banner */
  .promo-banner { padding: 28px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .games-section { padding: 44px 0; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .sports-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .promo-banner { padding: 22px 18px; }
  .promo-banner-title { font-size: 1.4rem; }
  .btn-promo { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  /* Table safety */
  .seo-article table { font-size: 0.78rem; }
  .seo-article th, .seo-article td { padding: 7px 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 400px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 14px; }
  .hero-inner { padding: 28px 0; }
  .hero-title { font-size: 1.5rem; }
}

/* ─── HIDDEN UTILITY ─── */
[data-cat]:not(.visible) { display: none; }
