/* ============================================================
   Jokerbet.gt — Bespoke Stylesheet
   Playful Joker Carnival | Purple × Amber × Red × Orange
   ============================================================ */

/* --- Custom Properties ---------------------------------------- */
:root {
  --purple-deep:   #3b26ac;
  --purple-vivid:  #b576fa;
  --amber:         #fbbf24;
  --red:           #ff3449;
  --orange:        #ff5f00;
  --bg-dark:       #0f0a1e;
  --bg-card:       #1a1136;
  --bg-card2:      #211645;
  --text-primary:  #f3eeff;
  --text-muted:    #a994cf;
  --border-subtle: rgba(181,118,250,.18);
  --radius:        10px;
  --radius-lg:     18px;
  --shadow-pop:    0 4px 24px rgba(59,38,172,.45);
  --font-main:     'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --trans:         0.22s ease;
}

/* --- Reset & Base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--purple-vivid); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--amber); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { padding-left: 1.4rem; }
table { border-collapse: collapse; width: 100%; }

/* --- Critical: Header ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #120c2a;
  border-bottom: 2px solid var(--purple-deep);
  box-shadow: 0 2px 16px rgba(59,38,172,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  gap: 1rem;
}
.header-wordmark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.header-wordmark img {
  height: 40px;
  width: auto;
}
.header-wordmark .wm-text {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--purple-vivid), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: rgba(181,118,250,.12);
  color: var(--purple-vivid);
}

/* Desktop CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  gap: 0.3rem;
}
.lang-switch a {
  font-size: .8rem;
  font-weight: 700;
  padding: .28rem .55rem;
  border-radius: 5px;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-muted);
  letter-spacing: .04em;
}
.lang-switch a.active-lang {
  border-color: var(--purple-vivid);
  color: var(--purple-vivid);
  background: rgba(181,118,250,.1);
}
.btn-login {
  font-size: .85rem;
  font-weight: 700;
  padding: .4rem 1.1rem;
  border-radius: 8px;
  border: 2px solid var(--purple-vivid);
  color: var(--purple-vivid);
  transition: background var(--trans), color var(--trans);
}
.btn-login:hover { background: var(--purple-vivid); color: #fff; }
.btn-register {
  font-size: .85rem;
  font-weight: 700;
  padding: .4rem 1.15rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #1a0a00;
  border: none;
  cursor: pointer;
  transition: filter var(--trans), transform var(--trans);
}
.btn-register:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .28s, opacity .2s;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav (slide-down) */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #180f30;
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem 1.5rem;
  gap: .65rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.mobile-nav.open {
  max-height: 600px;
}
.mobile-nav a {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 600;
  padding: .55rem .7rem;
  border-radius: var(--radius);
  display: block;
}
.mobile-nav a:hover { color: var(--purple-vivid); background: rgba(181,118,250,.08); }
.mobile-nav .mobile-lang {
  display: flex;
  gap: .5rem;
  margin-top: .3rem;
}
.mobile-nav .mobile-ctas {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.mobile-nav .btn-login,
.mobile-nav .btn-register { font-size: .9rem; padding: .5rem 1.25rem; }

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a1e 0%, #1c1048 45%, #2a165c 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 50%, rgba(181,118,250,.18) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 80%, rgba(255,95,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .28;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.3);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--purple-vivid), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 1.8rem;
}
.hero-btns {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-block;
  padding: .8rem 2rem;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #1a0800;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  transition: filter var(--trans), transform var(--trans);
}
.hero-btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); color: #1a0800; }
.hero-btn-secondary {
  display: inline-block;
  padding: .8rem 1.8rem;
  border: 2px solid var(--purple-vivid);
  color: var(--purple-vivid);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  transition: background var(--trans), color var(--trans);
}
.hero-btn-secondary:hover { background: var(--purple-vivid); color: #fff; }

.hero-promo {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}
.hero-banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(59,38,172,.5), 0 0 0 2px rgba(181,118,250,.25);
  width: 100%;
}
.hero-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.hero-badges {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.badge-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.badge-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.badge-pill.red .dot { background: var(--red); }
.badge-pill.purple .dot { background: var(--purple-vivid); }
.badge-pill.orange .dot { background: var(--orange); }

/* ----------------------------------------------------------------
   SECTION WRAPPER
   ---------------------------------------------------------------- */
.section { padding: 3.5rem 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.2rem; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .55rem;
}
.section-title {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
}
.section-title .accent { color: var(--purple-vivid); }

/* ----------------------------------------------------------------
   CATEGORY CHIPS (game filter)
   ---------------------------------------------------------------- */
.game-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.chip {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: .38rem 1rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.chip:hover { border-color: var(--purple-vivid); color: var(--purple-vivid); }
.chip.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(251,191,36,.08);
}

/* ----------------------------------------------------------------
   GAME GRID
   ---------------------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(59,38,172,.45);
  border-color: var(--purple-vivid);
}
.game-card-img {
  aspect-ratio: 941 / 378;
  overflow: hidden;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-body {
  padding: .75rem 1rem;
}
.game-card-name {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.game-card-provider {
  font-size: .75rem;
  color: var(--text-muted);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,38,172,.75), rgba(181,118,250,.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  border-radius: var(--radius-lg);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-play-btn {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #1a0800;
  font-weight: 800;
  font-size: .9rem;
  padding: .55rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: filter var(--trans);
  text-decoration: none;
  display: inline-block;
}
.game-play-btn:hover { filter: brightness(1.1); color: #1a0800; }

/* ----------------------------------------------------------------
   SPORTS SECTION / ODDS BOARD
   ---------------------------------------------------------------- */
.sports-section { background: var(--bg-card); }
.odds-board {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.odds-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  background: var(--bg-dark);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  transition: border-color var(--trans);
}
.odds-row:hover { border-color: var(--purple-vivid); }
.odds-match { font-size: .93rem; font-weight: 600; }
.odds-league { font-size: .75rem; color: var(--text-muted); margin-top: .1rem; }
.odds-cells {
  display: flex;
  gap: .4rem;
}
.odds-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card2);
  border: 1px solid var(--border-subtle);
  border-radius: 7px;
  padding: .35rem .7rem;
  min-width: 54px;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans);
  font-variant-numeric: tabular-nums;
}
.odds-cell:hover {
  background: rgba(181,118,250,.15);
  border-color: var(--purple-vivid);
}
.odds-label { font-size: .65rem; color: var(--text-muted); font-weight: 600; letter-spacing: .04em; }
.odds-val { font-size: .95rem; font-weight: 800; color: var(--amber); font-variant-numeric: tabular-nums; }
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,52,73,.12);
  border: 1px solid rgba(255,52,73,.3);
  border-radius: 5px;
  padding: .2rem .55rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .06em;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-red 1.2s ease infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ----------------------------------------------------------------
   PROMO BANNER STRIP
   ---------------------------------------------------------------- */
.promo-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--purple-deep), #5c3bb8);
}
.promo-strip-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: .35;
  display: block;
}
.promo-strip-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: .75rem;
}
.promo-strip-title {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promo-strip-sub { font-size: .95rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   PAYMENT LOGOS
   ---------------------------------------------------------------- */
.payments-section { background: #0a071a; }
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.pay-logo {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: .65rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--trans);
}
.pay-logo:hover { border-color: var(--purple-vivid); }
.pay-logo img { height: 36px; width: auto; }

/* ----------------------------------------------------------------
   FEATURES / WHY SECTION
   ---------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  transition: transform var(--trans), border-color var(--trans);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--purple-vivid); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
  display: block;
  line-height: 1;
}
.feature-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .45rem;
}
.feature-desc { font-size: .87rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   SEO ARTICLE BLOCK
   ---------------------------------------------------------------- */
.seo-section { background: var(--bg-dark); padding: 3.5rem 1.5rem 4rem; }
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
/* Typography inside SEO block - all headings are article headings */
.seo-inner h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--text-primary), var(--purple-vivid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-inner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-top: 2.2rem;
  margin-bottom: .75rem;
  color: var(--purple-vivid);
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-subtle);
}
.seo-inner h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: .55rem;
  color: var(--amber);
}
.seo-inner p { margin-bottom: 1rem; color: var(--text-muted); }
.seo-inner strong { color: var(--text-primary); }
.seo-inner em { color: var(--purple-vivid); font-style: normal; }
.seo-inner ul, .seo-inner ol { margin-bottom: 1rem; color: var(--text-muted); }
.seo-inner li { margin-bottom: .35rem; }
.seo-inner a { color: var(--purple-vivid); text-decoration: underline; text-underline-offset: 3px; }
.seo-inner a:hover { color: var(--amber); }

/* Responsive tables inside SEO */
.seo-inner .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
}
.seo-inner table {
  table-layout: fixed;
  min-width: 320px;
  font-size: .87rem;
}
.seo-inner th, .seo-inner td {
  border: 1px solid var(--border-subtle);
  padding: .6rem .75rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-inner th {
  background: var(--bg-card2);
  color: var(--purple-vivid);
  font-weight: 700;
  text-align: left;
}
.seo-inner td { background: var(--bg-card); color: var(--text-muted); }
@media (max-width: 560px) {
  .seo-inner table { font-size: .78rem; }
  .seo-inner th, .seo-inner td { padding: .4rem .5rem; }
}

/* FAQ accordion */
.faq-item {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  gap: .75rem;
  background: var(--bg-card);
  color: var(--text-primary);
  user-select: none;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(181,118,250,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans);
  color: var(--purple-vivid);
  font-style: normal;
  font-size: .75rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s ease;
  font-size: .9rem;
  color: var(--text-muted);
  background: var(--bg-dark);
}
.faq-item.open .faq-a {
  padding: .85rem 1.1rem 1rem;
  max-height: 600px;
}

/* ----------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------- */
.breadcrumb-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  padding: .6rem 1.5rem;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: .4rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb-inner a { font-size: .8rem; color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--purple-vivid); }
.breadcrumb-sep { color: var(--border-subtle); font-size: .8rem; }
.breadcrumb-cur { font-size: .8rem; color: var(--purple-vivid); font-weight: 600; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: #08051a;
  border-top: 2px solid var(--purple-deep);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-wordmark {
  font-size: 1.45rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--purple-vivid), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
  display: inline-block;
}
.footer-desc { font-size: .85rem; color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer-col-title {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple-vivid);
  margin-bottom: .9rem;
}
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--amber); }
.footer-divider { border: none; border-top: 1px solid var(--border-subtle); margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.footer-copyright { font-size: .8rem; color: var(--text-muted); }
.footer-rg {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   DECORATIVE JOKER ELEMENTS
   ---------------------------------------------------------------- */
.joker-divider {
  text-align: center;
  color: var(--border-subtle);
  font-size: 1.2rem;
  letter-spacing: .4em;
  margin: 0;
  padding: .5rem 0;
  user-select: none;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Hide desktop nav / CTAs */
  .desktop-nav { display: none; }
  .header-ctas { display: none; }
  /* Show burger */
  .burger-btn { display: flex; }
  /* Show mobile nav wrapper */
  .mobile-nav { display: flex; }

  /* Hero stacks */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.25rem 2.5rem;
  }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 2.5rem 1rem; }
  .hero-inner { padding: 2.5rem 1rem 2rem; }
  .seo-section { padding: 2.5rem 1rem 3rem; }
}

@media (max-width: 360px) {
  .header-inner { padding: 0 .85rem; }
  .hero-title { font-size: 1.7rem; }
  .hero-btn-primary, .hero-btn-secondary { padding: .7rem 1.3rem; font-size: .9rem; }
}
