/* ==========================================================================
   variables
   ========================================================================== */

:root {
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --gold-light: #ffe066;
  --bg-dark: #0e0e0e;
  --bg-card: #1a1a1a;
  --bg-card2: #222222;
  --bg-nav: #111111;
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  --text-dark: #0e0e0e;
  --border: #2a2a2a;
  --radius: 10px;
  --accent-neon: #2ee6a8;
  --accent-neon-soft: rgba(46, 230, 168, 0.12);
  --accent-neon-glow: rgba(46, 230, 168, 0.35);
  --lobby-navy: #12161f;
  --lobby-navy-deep: #0c0f14;
  --touch-min: 44px;
  --page-pad: max(0.75rem, env(safe-area-inset-left, 0px));
  --page-pad-right: max(0.75rem, env(safe-area-inset-right, 0px));
  --topbar-h: 44px;
  --sidebar-w: 232px;
  --sidebar-icon-muted: #aeb6c5;
}

/* ==========================================================================
   reset / base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   typography
   ========================================================================== */

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

/* ==========================================================================
   layout
   ========================================================================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem var(--page-pad);
  padding-right: var(--page-pad-right);
  min-width: 0;
}

@media (min-width: 768px) {
  .container {
    padding: 2rem 1.5rem;
  }
}

.content-area {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
  font-size: 0.97rem;
  line-height: 1.8;
  color: #ddd;
}

.content-area p {
  margin-bottom: 1rem;
}

.bonus-strip {
  background: linear-gradient(90deg, #1a1200, #2a1e00, #1a1200);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 1rem 0.65rem;
  text-align: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .bonus-strip {
    padding: 1.5rem 1rem;
  }
}

.cta-mid {
  margin-top: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #1a1200, #2a1f00);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
}

.cta-mid-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.cta-mid-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

/* ==========================================================================
   topbar (compact dark navbar)
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: var(--topbar-h);
  background: linear-gradient(180deg, #151922 0%, #0d1016 100%);
  border-bottom: 1px solid rgba(46, 230, 168, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.35rem max(0.5rem, var(--page-pad));
  padding-right: max(0.5rem, var(--page-pad-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: var(--topbar-h);
  min-width: 0;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex-shrink: 0;
  color: var(--gold) !important;
  font-weight: 900;
  font-size: clamp(0.8rem, 2.8vw, 1.05rem);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.topbar-brand:hover {
  color: var(--gold-light) !important;
}

.topbar-brand img {
  width: 100px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.topbar-brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(36vw, 9rem);
}

@media (min-width: 480px) {
  .topbar-brand-name {
    max-width: 12rem;
  }
}

.topbar-search {
  flex: 1;
  min-width: 0;
  max-width: min(380px, 42vw);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(28, 32, 42, 0.98), rgba(8, 10, 16, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.5);
  color: rgba(200, 208, 220, 0.92) !important;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.topbar-search:hover {
  border-color: rgba(46, 230, 168, 0.28);
  color: #e8ecf4 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(46, 230, 168, 0.12);
}

.topbar-search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(174, 182, 197, 0.9);
}

.topbar-search-icon svg {
  display: block;
}

.topbar-search-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-auth {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.topbar-btn {
  padding: 0.28rem 0.75rem;
  min-height: 32px;
  border-radius: 999px;
  font-size: clamp(0.65rem, 2.2vw, 0.72rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(220, 226, 236, 0.95) !important;
  background: linear-gradient(180deg, rgba(36, 40, 52, 0.95), rgba(14, 16, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.topbar-btn:hover {
  border-color: rgba(46, 230, 168, 0.35);
  color: var(--text-main) !important;
  background: linear-gradient(180deg, rgba(42, 52, 64, 0.98), rgba(18, 22, 32, 0.99));
}

.topbar-btn-login {
  border-color: rgba(255, 255, 255, 0.12);
}

.topbar-btn-register {
  border-color: rgba(46, 230, 168, 0.35);
  background: linear-gradient(180deg, rgba(32, 48, 44, 0.9), rgba(12, 22, 22, 0.98));
}

.topbar-btn-register:hover {
  border-color: rgba(46, 230, 168, 0.55);
  box-shadow: 0 0 16px rgba(46, 230, 168, 0.15);
}

/* ----- burger (mobile / tablet only) ----- */

.sidebar-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 0.15rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.sidebar-burger:hover {
  border-color: rgba(46, 230, 168, 0.4);
  background: rgba(46, 230, 168, 0.08);
}

.sidebar-burger-bar {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  border-radius: 1px;
  background: linear-gradient(90deg, #e8ecf2, #a8b0bc);
}

@media (min-width: 900px) {
  .sidebar-burger {
    display: none;
  }
}

/* ----- backdrop (off-canvas) ----- */

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 170;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

body.sidebar-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .sidebar-backdrop {
    display: none !important;
  }
}

/* ==========================================================================
   lobby: fixed left rail + main column
   ========================================================================== */

.lobby-sidebar {
  position: fixed;
  left: 0;
  top: var(--topbar-h);
  z-index: 180;
  width: min(var(--sidebar-w), 88vw);
  height: calc(100dvh - var(--topbar-h));
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  background: linear-gradient(180deg, #12161f 0%, #0a0d12 100%);
  border-right: 1px solid rgba(46, 230, 168, 0.14);
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.5);
  transform: translateX(-102%);
  transition: transform 0.26s ease;
}

body.sidebar-open .lobby-sidebar {
  transform: translateX(0);
}

.lobby-sidebar-inner {
  padding: 0.5rem 0.45rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: min-content;
}

@media (min-width: 900px) {
  .lobby-sidebar {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
  }

  body.sidebar-open .lobby-sidebar {
    transform: translateX(0);
  }
}

.sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  padding: 0.38rem 0.32rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.42rem;
  min-height: 36px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #b4bcc8 !important;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.sidebar-link:hover {
  color: var(--text-main) !important;
  background: rgba(46, 230, 168, 0.06);
  border-color: rgba(46, 230, 168, 0.2);
}

.sidebar-link.active {
  color: var(--accent-neon) !important;
  background: linear-gradient(90deg, var(--accent-neon-soft), rgba(46, 230, 168, 0.1));
  border-color: rgba(46, 230, 168, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(46, 230, 168, 0.35),
    0 0 16px var(--accent-neon-glow);
}

.sidebar-link-icon {
  width: 1.05rem;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.88;
}

.sidebar-link.active .sidebar-link-icon {
  filter: grayscale(1) brightness(1.08);
  opacity: 0.95;
}

.sidebar-link-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .sidebar-link {
    font-size: 0.68rem;
    padding: 0.38rem 0.48rem;
    min-height: 38px;
  }
}

/* main column: offset past fixed rail */

.lobby-content {
  min-width: 0;
  padding: 0.5rem var(--page-pad) 0.85rem;
  padding-right: var(--page-pad-right);
}

@media (min-width: 900px) {
  .lobby-content {
    margin-left: var(--sidebar-w);
    padding: 0.55rem max(0.65rem, var(--page-pad)) 1rem;
    padding-right: max(0.65rem, var(--page-pad-right));
  }
}

@media (min-width: 1024px) {
  .lobby-content {
    padding-top: 0.65rem;
    padding-left: max(1rem, var(--page-pad));
  }
}

.lobby-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

/* ----- main: banner + shortcuts as separate blocks ----- */

.lobby-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* ==========================================================================
   promo hero (wide lobby banner)
   ========================================================================== */

.promo-hero {
  position: relative;
  min-height: 268px;
  max-height: none;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(46, 230, 168, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(46, 230, 168, 0.2),
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(46, 230, 168, 0.08);
}

.promo-hero-media {
  position: absolute;
  inset: 0;
  background-color: #070a10;
  background-image:
    url('../img/main-banner-desk.avif'),
    linear-gradient(115deg, #05070c 0%, #0f1828 45%, #0a1622 100%);
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
}

.promo-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 6, 12, 0.94) 0%,
    rgba(6, 10, 20, 0.82) 38%,
    rgba(10, 16, 28, 0.45) 62%,
    rgba(8, 12, 22, 0.15) 100%
  );
  pointer-events: none;
}

.promo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1rem 1.35rem;
  min-height: 268px;
}

@media (min-width: 640px) {
  .promo-hero {
    min-height: 308px;
    max-height: none;
  }

  .promo-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(120px, 240px);
    gap: 1.15rem;
    padding: 1.35rem 1.35rem 1.5rem;
    min-height: 308px;
  }

  .promo-hero-media {
    background-position: center right;
  }
}

@media (min-width: 900px) {
  .promo-hero {
    min-height: 360px;
  }

  .promo-hero-inner {
    padding: 1.6rem 1.6rem 1.85rem;
    min-height: 360px;
    gap: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .promo-hero {
    min-height: 400px;
  }

  .promo-hero-inner {
    padding: 1.85rem 2rem 2.1rem;
    min-height: 400px;
    gap: 1.5rem;
  }
}

.promo-hero-content {
  min-width: 0;
}

.promo-hero-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 210, 225, 0.8);
  margin-bottom: 0.45rem;
}

.promo-hero-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.08rem, 4vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  overflow-wrap: anywhere;
}

.promo-hero-text {
  margin: 0 0 0.85rem;
  font-size: clamp(0.76rem, 2.3vw, 0.92rem);
  line-height: 1.5;
  color: rgba(215, 222, 235, 0.9);
  max-width: 34rem;
  overflow-wrap: anywhere;
}

.promo-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.35rem;
  border-radius: 10px;
  font-size: clamp(0.74rem, 2.2vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark) !important;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}

.promo-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245, 197, 24, 0.55);
  color: var(--text-dark) !important;
}

.promo-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.promo-hero-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.24rem 0.58rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(245, 197, 24, 0.4);
}

.promo-hero-logo {
  max-width: min(140px, 32vw);
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55));
}

@media (min-width: 900px) {
  .promo-hero-visual {
    min-height: 160px;
  }

  .promo-hero-logo {
    max-width: min(200px, 18vw);
    max-height: 168px;
  }
}

@media (min-width: 1200px) {
  .promo-hero-visual {
    min-height: 180px;
  }

  .promo-hero-logo {
    max-width: min(220px, 16vw);
    max-height: 188px;
  }
}

@media (max-width: 639.98px) {
  .promo-hero-visual {
    display: none;
  }
}

/* ==========================================================================
   shortcut row (separate block under banner; local icons)
   ========================================================================== */

.lobby-shortcuts-wrap {
  background: linear-gradient(180deg, #161d28 0%, #0e1219 100%);
  border: 1px solid rgba(46, 230, 168, 0.12);
  border-radius: 14px;
  padding: 0.55rem 0.45rem 0.65rem;
  min-width: 0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lobby-shortcuts-row {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0.25rem 0.2rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.35rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.lobby-shortcuts-row > li {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.lobby-shortcut-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  width: 5.65rem;
  height: 5.65rem;
  min-width: 5.65rem;
  min-height: 5.65rem;
  padding: 0.45rem 0.3rem 0.4rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(165deg, rgba(36, 44, 58, 0.75), rgba(14, 18, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #d0d8e6 !important;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, color 0.2s, box-shadow 0.2s;
}

.lobby-shortcut-card:hover {
  color: var(--text-main) !important;
  background: linear-gradient(165deg, rgba(46, 230, 168, 0.14), rgba(18, 26, 38, 0.98));
  border-color: rgba(46, 230, 168, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(46, 230, 168, 0.12);
  transform: translateY(-1px);
}

.lobby-shortcut-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.lobby-shortcut-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.lobby-shortcut-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  hyphens: auto;
  overflow-wrap: anywhere;
  max-width: 100%;
}

@media (max-width: 899.98px) {
  body.sidebar-open {
    overflow: hidden;
  }
}

/* ==========================================================================
   shared CTA (mid-page section)
   ========================================================================== */

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  font-weight: 900;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--text-dark);
}

/* ==========================================================================
   cards / sections
   ========================================================================== */

.section-stack {
  margin-top: 0.5rem;
}

/* ----- lobby strips: TOP / SPORT / NEW ----- */

.lobby-strip-block {
  margin-top: 0.85rem;
  min-width: 0;
}

.lobby-strip-block:last-of-type {
  margin-bottom: 0.35rem;
}

.lobby-strip-block .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  padding: 0 0.1rem;
}

.lobby-strip-block .section-title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  display: block;
}

.section-seeall {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(174, 182, 197, 0.95) !important;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.section-seeall:hover {
  color: var(--accent-neon) !important;
  border-color: rgba(46, 230, 168, 0.35);
}

.game-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  min-width: 0;
}

.game-row--scroll {
  align-items: stretch;
}

.top-games-section .game-card,
.new-games-section .game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: linear-gradient(180deg, #161b24 0%, #0d1016 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  color: var(--text-main);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.top-games-section .game-card:hover,
.new-games-section .game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 230, 168, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(46, 230, 168, 0.1);
}

.top-games-section .game-card-info,
.new-games-section .game-card-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
}

.top-games-section .game-card-info:focus-visible,
.new-games-section .game-card-info:focus-visible {
  outline: 2px solid rgba(46, 230, 168, 0.65);
  outline-offset: -2px;
}

.top-games-section .game-card-media-link,
.new-games-section .game-card-media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.top-games-section .game-card-hit,
.new-games-section .game-card-hit {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: transparent;
  text-decoration: none;
}

.game-card-media {
  position: relative;
  aspect-ratio: 400 / 600;
  width: 100%;
  overflow: hidden;
  background: #0a0c10;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card-media--placeholder {
  background: linear-gradient(145deg, #1e2430, #0e1218);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.game-card-media--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(46, 230, 168, 0.08), transparent 60%);
  pointer-events: none;
}

.game-card-title {
  padding: 0.45rem 0.5rem 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-meta {
  padding: 0 0.5rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(160, 170, 185, 0.85);
  letter-spacing: 0.02em;
}

/* Game card hover overlay (TOP / NEW only; not SPORTS) */
.top-games-section .card-hover-overlay,
.new-games-section .card-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(2, 10, 8, 0.72) 0%, rgba(4, 22, 18, 0.82) 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(46, 230, 168, 0.18), transparent 72%);
  box-shadow: inset 0 0 0 1px rgba(46, 230, 168, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.top-games-section .card-hover-actions,
.new-games-section .card-hover-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateY(6px);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0.95;
}

.top-games-section .card-hover-play,
.new-games-section .card-hover-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.75rem;
  padding: 0.42rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #1a1204;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 120, 0.95);
  background: linear-gradient(180deg, #ffe566 0%, #f5c02a 42%, #d9a010 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 4px 14px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.top-games-section .card-hover-play:hover,
.new-games-section .card-hover-play:hover {
  filter: brightness(1.06);
}

.top-games-section .card-hover-play:focus-visible,
.new-games-section .card-hover-play:focus-visible {
  outline: 2px solid rgba(255, 230, 140, 0.95);
  outline-offset: 2px;
}

.top-games-section .card-hover-demo,
.new-games-section .card-hover-demo {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: rgba(235, 240, 245, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.top-games-section .card-hover-demo:hover,
.new-games-section .card-hover-demo:hover {
  color: #fff;
}

.top-games-section .card-hover-demo:focus-visible,
.new-games-section .card-hover-demo:focus-visible {
  outline: 2px solid rgba(46, 230, 168, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .top-games-section .game-card .card-hover-overlay,
  .new-games-section .game-card .card-hover-overlay {
    visibility: hidden;
    pointer-events: none;
  }

  .top-games-section .game-card:hover .card-hover-overlay,
  .new-games-section .game-card:hover .card-hover-overlay,
  .top-games-section .game-card .card-hover-overlay:focus-within,
  .new-games-section .game-card .card-hover-overlay:focus-within {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .top-games-section .game-card:hover .card-hover-actions,
  .new-games-section .game-card:hover .card-hover-actions,
  .top-games-section .game-card .card-hover-overlay:focus-within .card-hover-actions,
  .new-games-section .game-card .card-hover-overlay:focus-within .card-hover-actions {
    transform: translateY(0);
    opacity: 1;
  }

  .top-games-section .game-card:hover .game-card-media-link,
  .new-games-section .game-card:hover .game-card-media-link,
  .top-games-section .game-card-media:focus-within .game-card-media-link,
  .new-games-section .game-card-media:focus-within .game-card-media-link {
    pointer-events: none;
  }

  .top-games-section .game-card-hit,
  .new-games-section .game-card-hit {
    pointer-events: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .top-games-section .card-hover-overlay,
  .new-games-section .card-hover-overlay {
    display: none !important;
  }

  .top-games-section .game-card-media-link,
  .new-games-section .game-card-media-link {
    display: none !important;
  }

  .top-games-section .game-card-info,
  .new-games-section .game-card-info {
    pointer-events: none;
  }

  .top-games-section .game-card-hit,
  .new-games-section .game-card-hit {
    pointer-events: auto;
    touch-action: manipulation;
  }
}

/* ----- SPORTS strip (shield cards + header) ----- */

.sports-section {
  padding: 0.65rem 0.55rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(12, 16, 24, 0.98) 0%, rgba(4, 6, 10, 0.99) 100%);
  border: 1px solid rgba(46, 230, 168, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.45);
}

.sports-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  padding: 0 0.15rem;
  min-width: 0;
}

.sports-section-title {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-main);
}

.sports-section-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sports-section-seeall {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(230, 235, 245, 0.92) !important;
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(46, 230, 168, 0.28);
  background: linear-gradient(180deg, rgba(28, 36, 44, 0.95), rgba(10, 14, 20, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}

.sports-section-seeall:hover {
  border-color: rgba(46, 230, 168, 0.55);
  color: var(--text-main) !important;
  box-shadow: 0 0 16px rgba(46, 230, 168, 0.12);
}

.sports-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(46, 230, 168, 0.3);
  background: linear-gradient(165deg, rgba(26, 32, 42, 0.98), rgba(8, 10, 16, 0.99));
  color: rgba(200, 210, 225, 0.95) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.sports-nav-btn:hover {
  border-color: rgba(46, 230, 168, 0.55);
  color: var(--accent-neon) !important;
  box-shadow: 0 0 14px rgba(46, 230, 168, 0.2);
}

.sports-nav-btn svg {
  display: block;
}

.sports-cards-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.5rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0.2rem 0.25rem 0.45rem;
}

.sports-section .sports-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 0 0 11.25rem;
  width: 11.25rem;
  min-width: 11.25rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit !important;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
  transition: filter 0.25s, transform 0.2s;
}

.sports-section .sports-card:hover {
  filter: drop-shadow(0 5px 16px rgba(46, 230, 168, 0.22)) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.5));
  transform: translateY(-2px);
}

.sports-section .sports-card:hover .sports-card-inner {
  box-shadow:
    inset 0 0 0 1px rgba(46, 230, 168, 0.65),
    inset 0 -30px 50px rgba(46, 230, 168, 0.06),
    0 0 22px rgba(46, 230, 168, 0.18);
}

/* Shield: image only — label sits below so clip-path cannot hide text */
.sports-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 172px;
  overflow: hidden;
  background: linear-gradient(175deg, #151b26 0%, #07090e 55%, #050608 100%);
  clip-path: polygon(
    3% 0%,
    97% 0%,
    100% 2.5%,
    100% 78%,
    50% 100%,
    0% 78%,
    0% 2.5%
  );
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(46, 230, 168, 0.42),
    inset 0 0 24px rgba(46, 230, 168, 0.05),
    inset 0 -20px 40px rgba(0, 0, 0, 0.35);
}

.sports-card-media {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.45rem 0.65rem;
  min-height: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 38%, rgba(46, 230, 168, 0.08), transparent 68%);
}

.sports-card-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.sports-card-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.4rem 0.35rem;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: #f2f5fa;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.98), #050608);
  border: 1px solid rgba(46, 230, 168, 0.38);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .game-row--scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 0.25rem;
  }

  .game-row--scroll .game-card {
    flex: 0 0 auto;
    width: min(9.5rem, 42vw);
    min-width: min(9.5rem, 42vw);
    scroll-snap-align: start;
  }

  .game-row--scroll .game-card-media {
    aspect-ratio: 400 / 600;
  }

  .sports-section .sports-card {
    flex: 0 0 min(11.25rem, 42vw);
    width: min(11.25rem, 42vw);
    min-width: min(11.25rem, 42vw);
  }

  .sports-card-inner {
    min-height: 158px;
  }

  .sports-card-media img {
    max-height: 100px;
  }

  .sports-card-label {
    font-size: 0.54rem;
    min-height: 2.2rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sports-section-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .game-row--scroll {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
  }

  .sports-card-inner {
    min-height: 188px;
  }

  .sports-card-media img {
    max-height: 128px;
  }

  .sports-card-label {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }
}

/* NEW: always one horizontal row + scroll (overrides desktop grid on .game-row--scroll) */
.new-games-section .new-games-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 0.25rem;
  min-width: 0;
}

.new-games-section .new-games-row .game-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(9.5rem, 42vw);
  min-width: min(9.5rem, 42vw);
}

@media (min-width: 1200px) {
  .new-games-section .new-games-row .game-card {
    width: 10.85rem;
    min-width: 10.85rem;
  }
}

/* Why Choose lead-in */

.section-stack.why-choose-lead {
  margin-top: 1.5rem;
  padding-top: 0;
}

.why-choose-header {
  margin-bottom: 1.25rem;
}

.why-choose-heading {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.toc-wrap {
  background: var(--bg-card2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
}

.toc-title {
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.15);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.feature-name {
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.feature-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ==========================================================================
   tables
   ========================================================================== */

.table-wrap {
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin: 1.2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bg-card2);
}

thead tr {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

thead th {
  color: var(--text-dark);
  font-weight: 800;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

tbody tr:hover {
  background: rgba(245, 197, 24, 0.05);
}

tbody tr:last-child {
  border-bottom: none;
}

td {
  padding: 11px 16px;
  font-size: 0.92rem;
  color: #ddd;
}

/* ==========================================================================
   faq
   ========================================================================== */

.faq-section {
  margin-top: 2.5rem;
}

.faq-section details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-section details:hover {
  box-shadow: 0 2px 12px rgba(245, 197, 24, 0.12);
}

.faq-section details[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.15);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.3rem;
  color: var(--text-main);
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 900;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-section details[open] summary {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.05);
}

.faq-section details[open] summary::after {
  content: '−';
}

.faq-section details p {
  padding: 0.5rem 1.3rem 1.2rem;
  color: #ccc;
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   reviews
   ========================================================================== */

.reviews-section {
  margin-top: 2.5rem;
}

.comment {
  background: var(--bg-card);
  padding: 1em 1.2em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.comment-author {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gold);
}

.comment-date {
  opacity: 0.6;
  font-size: 0.85em;
  margin-top: 2px;
  color: var(--text-muted);
}

.comment-text {
  margin-top: 0.5em;
  line-height: 1.6;
  color: #ccc;
  font-size: 0.94rem;
}

.comment-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
}

.review-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.review-form-title {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-form form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-form input[type='text'],
.review-form textarea {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}

.review-form input[type='text']:focus,
.review-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.18);
}

.review-form textarea {
  min-height: 100px;
}

.review-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  font-weight: 900;
  font-size: 0.97rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  transition: transform 0.15s, box-shadow 0.15s;
}

.review-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

/* ==========================================================================
   author
   ========================================================================== */

.author-section {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  color: var(--text-dark);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.author-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.author-bio {
  color: #ccc;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ==========================================================================
   footer
   ========================================================================== */

footer {
  background: var(--bg-nav);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-disclaimer {
  color: #666;
  font-size: 0.75rem;
  margin-top: 0.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   responsive
   ========================================================================== */

@media (max-width: 767.98px) {
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .topbar-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
  }

  .lobby-shortcuts-row {
    scroll-snap-type: x mandatory;
    gap: 0.42rem;
    padding-bottom: 0.3rem;
  }

  .lobby-shortcut-card {
    width: 5.85rem;
    height: 5.85rem;
    min-width: 5.85rem;
    min-height: 5.85rem;
    padding: 0.5rem 0.35rem 0.45rem;
  }

  .lobby-shortcut-label {
    font-size: 0.64rem;
  }

  .promo-hero {
    max-height: none;
  }

  .promo-hero-cta {
    width: 100%;
    max-width: 20rem;
  }

  .author-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-form button {
    align-self: stretch;
  }
}

@media (max-width: 600px) {
  table {
    min-width: unset;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid var(--border);
    border-radius: 8px;
  }

  td {
    display: flex;
    justify-content: space-between;
    padding: 0.5em 0.8em;
    border-bottom: 1px solid var(--border);
  }

  td:last-child {
    border-bottom: none;
  }

  td::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--gold);
    margin-right: 1em;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .topbar-search-text {
    font-size: 0.65rem;
  }

  .topbar-brand-name {
    max-width: 8rem;
  }

  .container {
    padding: 1.35rem var(--page-pad);
    padding-right: var(--page-pad-right);
  }

  .content-area {
    padding: 1.2rem;
  }
}

/* ==========================================================================
   focus (keyboard / touch parity)
   ========================================================================== */

.topbar a:focus-visible,
.topbar-auth .topbar-btn:focus-visible,
.sidebar-burger:focus-visible,
.sidebar-link:focus-visible,
.lobby-shortcut-card:focus-visible,
.section-seeall:focus-visible,
.sports-section-seeall:focus-visible,
.sports-nav-btn:focus-visible,
.promo-hero-cta:focus-visible,
.btn-cta:focus-visible {
  outline: 2px solid var(--accent-neon);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .lobby-sidebar,
  .sidebar-backdrop {
    transition: none;
  }
}

/* ==========================================================================
   utilities
   ========================================================================== */

.text-gold {
  color: var(--gold);
}
