/*
Theme Name:  BetJordan
Theme URI:   https://www.betjordan.com
Author:      BetJordan
Description: Official BetJordan landing page theme — AS Monaco partnership. Requires the Advanced Custom Fields (ACF) plugin.
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: betjordan
*/

/* ═══════════════════════════════════════════
   BETJORDAN — WordPress Theme
   ═══════════════════════════════════════════ */

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

:root {
  --bg:        #111015;
  --bg-dark:   #0d0d10;
  --red:       #e5002d;
  --lime:      #cef135;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.65);
  --border:    rgba(255,255,255,0.1);
  --radius:    999px;
  --font:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ─── NAVBAR ──────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  height: 56px;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.88;
  transition: opacity .2s;
}
.nav-link:hover { opacity: 1; }

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-bet    { color: #fff; }
.logo-jordan { color: var(--red); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-login {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.88;
  transition: opacity .2s;
}
.nav-login:hover { opacity: 1; }

.nav-signup {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  border: 1.5px solid var(--lime);
  border-radius: var(--radius);
  padding: 7px 18px;
  transition: background .2s, color .2s;
}
.nav-signup:hover { background: var(--lime); color: #000; }

.nav-lang, .footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 6px 13px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background .2s;
  color: var(--white);
}
.nav-lang:hover, .footer-lang:hover { background: rgba(255,255,255,0.14); }

.flag-icon { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.chevron   { width: 10px; height: 6px; flex-shrink: 0; }


/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  /* background-image is set inline via PHP/ACF */
  background-size: cover;
  background-position: center top;
  background-color: #0d0d10;
}

/* Mobile img — hidden on desktop, shown via responsive CSS */
.hero-img { display: none; }

/* Subtle dark boost on the far left so HTML text stays fully legible */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(13,13,16,0.72) 0%,
    rgba(13,13,16,0.55) 28%,
    rgba(13,13,16,0.15) 50%,
    transparent 65%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  max-width: 560px;
  gap: 20px;
}

.hero-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--red);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* CTA buttons */
.btn-cta {
  display: inline-block;
  background: var(--lime);
  color: #0d0d0d;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: filter .2s, transform .15s;
}
.btn-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }


/* ─── WELCOME ─────────────────────────────── */
.welcome {
  background: var(--bg-dark);
  padding: 80px 60px;
}

.welcome-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.welcome-left {
  flex-shrink: 0;
  width: 340px;
}

.welcome-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}

.welcome-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--white);
}

.welcome-right p:last-child { font-size: 16px; }

.welcome-cta-mobile { display: none; }


/* ─── CATEGORIES ──────────────────────────── */
.categories {
  background: var(--bg-dark);
  padding: 20px 60px 80px;
}

.categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
}

.cat-item { display: flex; flex-direction: column; gap: 16px; }

.cat-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.cat-body {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: #1a1a1d;
  border-radius: 8px;
  overflow: hidden;
  min-height: 240px;
}

.cat-img {
  width: 45%;
  object-fit: cover;
  flex-shrink: 0;
}

.cat-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 28px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
}

.btn-explore {
  display: inline-block;
  border: 1.5px solid var(--lime);
  color: var(--lime);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: background .2s, color .2s;
}
.btn-explore:hover { background: var(--lime); color: #000; }


/* ─── TOP CASINO GAMES ────────────────────── */
.games {
  background: var(--bg-dark);
  padding: 10px 60px 80px;
}

.games-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.games-left {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.games-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
}

.games-left p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--white);
}

.btn-browse {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--lime);
  border-radius: var(--radius);
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 700;
  width: fit-content;
  transition: background .2s, color .2s;
}
.btn-browse:hover { background: var(--white); color: #000; }

.games-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.game-card {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─── FAQ ─────────────────────────────────── */
.faq {
  background: #16161a;
  padding: 80px 60px;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-left {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

.faq-sub {
  font-size: 14.5px;
  color: var(--muted);
}

.faq-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: #0d0d0d;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: filter .2s;
}
.btn-chat:hover { filter: brightness(1.08); }

.faq-learn {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity .2s;
}
.faq-learn:hover { opacity: 1; }

/* Accordion */
.faq-right { flex: 1; }

.accordion { display: flex; flex-direction: column; }

.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-item:first-child { border-top: 1px solid var(--border); }

.acc-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  gap: 20px;
  transition: color .2s;
}
.acc-header:hover { color: var(--lime); }

.acc-icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}

.acc-header[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
}

.acc-body {
  display: none;
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.acc-body.open { display: block; }


/* ─── FOOTER ──────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 40px 60px 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.8fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color .2s;
}
.footer-col a:hover { color: var(--lime); }

.footer-support {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--white);
}

.tg-link { color: var(--lime); }
.tg-link:hover { text-decoration: underline; }

.footer-age {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white);
}

.age-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Payment methods */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.payment-item--text { gap: 6px; }

.payment-svg { height: 22px; }
.payment-svg--mc { height: 26px; }

.bitcoin-icon {
  font-size: 16px;
  font-weight: 700;
}

/* Legal */
.footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.gcb-badge {
  width: 72px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding-top: 4px;
}


/* ─── SEO CONTENT ────────────────────────── */
.seo-content {
  background: var(--bg);
  padding: 72px 60px;
  border-top: 1px solid var(--border);
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}

.seo-inner h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--lime);
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.seo-inner p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .seo-content { padding: 48px 20px; }
  .seo-heading { font-size: 20px; }
}


/* ─── BURGER + MOBILE DRAWER ─────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 290;
}
.mobile-overlay.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg);
  border-right: 1px solid var(--border);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity .2s;
}
.drawer-close:hover { opacity: 1; }

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.drawer-link:hover { color: var(--lime); background: rgba(255,255,255,0.03); }

.drawer-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.drawer-login {
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: background .2s;
}
.drawer-login:hover { background: rgba(255,255,255,0.08); }

.drawer-signup {
  display: block;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #000;
  background: var(--white);
  border-radius: var(--radius);
  transition: filter .2s;
}
.drawer-signup:hover { filter: brightness(0.92); }

.drawer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}


/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  /* ── Nav ── */
  .navbar { padding: 0 16px; }
  .nav-burger { display: flex; }
  .nav-left { display: none; }
  .nav-lang { display: none; }
  /* Logo: remove absolute centering, flow left next to burger */
  .nav-center { position: static; transform: none; margin-left: 8px; }
  .nav-right { flex: 1; gap: 10px; }
  .nav-login { display: block; font-size: 12.5px; }
  .nav-signup { border-color: var(--lime); padding: 7px 14px; font-size: 12px; }

  /* ── Hero: stacked layout — image on top, text below ── */
  .hero {
    height: auto;
    background-image: none !important;
    background-color: #0d0d10;
    display: flex;
    flex-direction: column;
  }
  .hero::before { display: none; }
  .hero-img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
  }
  .hero-content {
    position: static;
    height: auto;
    padding: 24px 20px 32px;
    max-width: 100%;
    gap: 14px;
  }
  .hero-title { font-size: 24px; color: var(--red); }
  .hero-sub { font-size: 14px; }
  .hero-content .btn-cta { padding: 13px 28px; }

  /* ── Welcome ── */
  .welcome { padding: 48px 20px; }
  .welcome-inner { flex-direction: column; gap: 28px; }
  .welcome-left { width: 100%; }
  .welcome-title { font-size: 32px; }
  .welcome-cta-desktop { display: none; }
  .welcome-cta-mobile { display: inline-block; margin-top: 4px; }

  /* ── Categories ── */
  .categories { padding: 16px 20px 48px; }
  .categories-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-body { flex-direction: column; }
  .cat-img { width: 100%; height: 180px; }
  .cat-title { font-size: 22px; }

  /* ── Games ── */
  .games { padding: 10px 20px 48px; }
  .games-inner { flex-direction: column; gap: 28px; }
  .games-left { width: 100%; padding-top: 0; }
  .games-title { font-size: 32px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* ── FAQ ── */
  .faq { padding: 48px 20px; }
  .faq-inner { flex-direction: column; gap: 32px; }
  .faq-left { width: 100%; }
  .faq-title { font-size: 26px; }

  /* ── Footer ── */
  .footer { padding: 32px 20px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-payments { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 21px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════ */

/* ─── Inner Hero ─────────────────────────── */
.inner-hero {
  position: relative;
  padding: 80px 40px 64px;
  text-align: center;
  background: linear-gradient(160deg, #1a1520 0%, var(--bg) 55%, #0d1510 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--lime) 70%, transparent 100%);
}
.inner-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.inner-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.inner-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.inner-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Secondary / Outline Button ────────── */
.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* ─── Page wrapper ───────────────────────── */
.inner-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.inner-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.inner-section:last-child { border-bottom: none; }

.inner-section-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--white);
}
.inner-section-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 36px;
}

/* ─── Category Sub-Nav ───────────────────── */
.cat-subnav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 56px;
  z-index: 100;
}
.cat-subnav-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-subnav-scroll::-webkit-scrollbar { display: none; }
.cat-subnav-pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.cat-subnav-pill:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.cat-subnav-pill.active { background: var(--red); color: var(--white); border-color: var(--red); }

/* ─── Casino Category Game Grid ──────────── */
.cat-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.cat-game-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1e1c25;
  transition: transform .25s, box-shadow .25s;
}
.cat-game-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.55); }
.cat-game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-game-card:hover img { transform: scale(1.06); }
.cat-game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.cat-game-card:hover .cat-game-card-overlay { opacity: 1; }
.cat-game-card-overlay span {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
}

/* ─── Feature Cards ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item {
  background: #18161f;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color .2s, transform .2s;
}
.feature-item:hover { border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(229,0,45,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { color: var(--red); }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.feature-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── Sport Category Pills ───────────────── */
.sport-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.sport-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
  text-decoration: none;
}
.sport-pill:hover, .sport-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.sport-pill-icon { font-size: 18px; line-height: 1; }

/* ─── Promotions Grid ────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.promo-card {
  background: #18161f;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.promo-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.4); }

.promo-card-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #1e1c25 0%, #2a1030 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.promo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-fallback {
  font-size: 48px;
  opacity: 0.4;
}
.promo-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--lime);
  color: #111;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promo-card-body { padding: 24px; }
.promo-card-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.promo-card-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.promo-card-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.promo-card-terms { font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 20px; line-height: 1.5; }
.promo-card-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: opacity .2s, transform .15s;
}
.promo-card-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ─── Info / Content Pages ───────────────── */
.info-content {
  max-width: 820px;
  padding: 64px 40px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}
.info-content h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 44px 0 16px; }
.info-content h3 { font-size: 20px; font-weight: 700; color: #fff; margin: 32px 0 12px; }
.info-content p  { margin-bottom: 16px; }
.info-content ul, .info-content ol { padding-left: 24px; margin-bottom: 18px; }
.info-content li { margin-bottom: 8px; }
.info-content a  { color: var(--lime); text-decoration: underline; }
.info-content strong { color: #fff; }
.info-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14px; }
.info-content th { background: rgba(255,255,255,.06); padding: 10px 14px; text-align: left; font-weight: 700; border-bottom: 1px solid var(--border); }
.info-content td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.05); }

/* ─── Payment Methods ────────────────────── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.pm-card {
  background: #18161f;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.pm-card:hover { border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.pm-card-icon { font-size: 30px; margin-bottom: 10px; line-height: 1; }
.pm-card-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pm-card-time { font-size: 12px; color: var(--muted); }
.pm-card-min  { font-size: 11.5px; color: var(--lime); margin-top: 5px; font-weight: 600; }

/* ─── Software Providers ─────────────────── */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.provider-card {
  background: #18161f;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: all .2s;
}
.provider-card:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

/* ─── Two-col info layout ────────────────── */
.two-col-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── Contact Methods ────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: #18161f;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(255,255,255,.22); }
.contact-card-icon { font-size: 32px; margin-bottom: 14px; }
.contact-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.contact-card-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.contact-card-link  {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: border-color .2s, background .2s;
}
.contact-card-link:hover { border-color: var(--lime); color: var(--lime); }

/* ─── Inner Page Responsive ──────────────── */
@media (max-width: 900px) {
  .inner-hero { padding: 52px 20px 44px; }
  .inner-page { padding: 0 20px; }
  .inner-section { padding: 40px 0; }
  .inner-hero-sub { font-size: 15px; }
  .cat-game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-info { grid-template-columns: 1fr; gap: 28px; }
  .info-content { padding: 40px 20px; }
}
@media (max-width: 560px) {
  .cat-game-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .sport-cats { gap: 8px; }
}
