/**
 * Baller hub (/baller) — dark luxury shell. Scoped: body.baller-theme.baller-hub
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --baller-bg-deep: #0a0908;
  --baller-bg-mid: #12100e;
  --baller-surface: #181512;
  --baller-line: rgba(231, 192, 110, 0.45);
  --baller-line-soft: rgba(245, 220, 168, 0.18);
  --baller-gold: #f3c969;
  --baller-gold-bright: #ffe6a1;
  --baller-gold-deep: #b58a2a;
  --baller-gold-dim: #9a8052;
  --baller-champagne: #f6ecd8;
  --baller-cream: #ece3cf;
  --baller-muted: #a8a092;
  --baller-focus: #ffd964;
  --baller-gold-foil:
    linear-gradient(135deg,
      #fff3c4 0%,
      #ffd964 22%,
      #b58a2a 52%,
      #ffd964 78%,
      #fff3c4 100%);
  --baller-gold-foil-soft:
    linear-gradient(135deg,
      rgba(255, 243, 196, 0.65) 0%,
      rgba(255, 217, 100, 0.85) 40%,
      rgba(181, 138, 42, 0.85) 100%);
}

body.baller-theme.baller-hub {
  font-family: 'Inter', -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--baller-cream);
  background-color: var(--baller-bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 169, 104, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(90, 72, 48, 0.18), transparent 50%),
    linear-gradient(180deg, #0e0c0a 0%, var(--baller-bg-deep) 38%, #070605 100%);
}

body.baller-theme.baller-hub a:focus-visible,
body.baller-theme.baller-hub button:focus-visible {
  outline: 3px solid var(--baller-focus);
  outline-offset: 3px;
}

body.baller-theme.baller-hub .skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--baller-champagne);
  color: var(--baller-bg-deep);
  padding: 0.65rem 0.9rem;
  z-index: 10000;
  border: 2px solid var(--baller-gold);
}

body.baller-theme.baller-hub .skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

html:has(body.baller-theme.baller-hub) {
  scroll-padding-top: 5.5rem;
}

body.baller-theme.baller-hub .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--baller-line);
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(16px);
}

body.baller-theme.baller-hub .site-header .logo {
  flex-shrink: 0;
  text-decoration: none;
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .site-header .logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(92%) sepia(12%) hue-rotate(312deg);
}

body.baller-theme.baller-hub .header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

body.baller-theme.baller-hub .header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 1;
  min-width: 0;
}

body.baller-theme.baller-hub .header-search-wrap {
  position: relative;
}

body.baller-theme.baller-hub .header-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 260px;
  margin-top: 4px;
  z-index: 50;
  padding: 0.3rem;
  background: var(--baller-surface);
  border: 1px solid var(--baller-line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

body.baller-theme.baller-hub .header-suggestions.show {
  display: block;
}

body.baller-theme.baller-hub .header-nav a {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--baller-muted);
}

body.baller-theme.baller-hub .header-nav a:hover {
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .header-category {
  appearance: none;
  border: 1px solid var(--baller-line-soft);
  background: var(--baller-surface)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a39a8f'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
  background-size: 8px 5px;
  color: var(--baller-cream);
  padding: 0.48rem 1.8rem 0.48rem 0.6rem;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  max-width: 200px;
}

body.baller-theme.baller-hub .header-search {
  border: 1px solid var(--baller-line-soft);
  background: var(--baller-bg-mid);
  color: var(--baller-champagne);
  padding: 0.48rem 1.85rem 0.48rem 0.6rem;
  font-family: inherit;
  font-size: 0.8rem;
  width: 170px;
  outline: none;
  transition:
    width 0.2s,
    border-color 0.15s;
}

body.baller-theme.baller-hub .header-search:focus {
  border-color: var(--baller-gold-dim);
  width: 240px;
}

body.baller-theme.baller-hub .header-search-clear:hover {
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub main#main-content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2.5rem 3.5rem;
}

body.baller-theme.baller-hub .baller-hub-hero {
  position: relative;
  padding: 2.35rem 2rem 2.5rem;
  margin-bottom: 2rem;
  border-radius: 18px;
  border: 1px solid var(--baller-line);
  background: linear-gradient(155deg, rgba(28, 24, 20, 0.95) 0%, rgba(14, 12, 10, 0.98) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
}

body.baller-theme.baller-hub .baller-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(255, 217, 100, 0.18), transparent 62%),
    radial-gradient(ellipse 40% 30% at 92% 88%, rgba(181, 138, 42, 0.22), transparent 60%);
}

body.baller-theme.baller-hub .baller-hub-hero::after {
  content: '$';
  position: absolute;
  top: -3.2rem;
  right: -1.4rem;
  font-family: 'Newsreader', 'Times New Roman', serif;
  font-size: clamp(14rem, 28vw, 26rem);
  line-height: 0.85;
  font-weight: 600;
  font-style: italic;
  background: var(--baller-gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  text-shadow: 0 0 60px rgba(255, 217, 100, 0.18);
  animation: ballerGoldShift 22s ease-in-out infinite;
}

@media (max-width: 720px) {
  body.baller-theme.baller-hub .baller-hub-hero::after {
    font-size: 12rem;
    top: -1.8rem;
    right: -0.8rem;
    opacity: 0.13;
  }
}

body.baller-theme.baller-hub .baller-hub-hero-inner {
  position: relative;
  z-index: 1;
}

body.baller-theme.baller-hub .kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--baller-gold);
  font-weight: 700;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

body.baller-theme.baller-hub h1 {
  font-size: clamp(2.1rem, 5.8vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  font-weight: 900;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  background-position: 0% 50%;
  color: var(--baller-champagne);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 230, 161, 0.04);
  animation: ballerGoldShift 14s ease-in-out infinite;
}

@keyframes ballerGoldShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  body.baller-theme.baller-hub h1 { animation: none; }
}

body.baller-theme.baller-hub .baller-hub-tagline {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--baller-gold-dim);
  margin-bottom: 1.15rem;
  max-width: 38ch;
}

body.baller-theme.baller-hub .sub {
  font-size: 1.02rem;
  color: var(--baller-muted);
  max-width: 62ch;
  line-height: 1.72;
  margin-bottom: 1rem;
}

body.baller-theme.baller-hub .sub a {
  color: var(--baller-gold);
  font-weight: 700;
}

body.baller-theme.baller-hub .sub a:hover {
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

body.baller-theme.baller-hub .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f3c969;
  background:
    linear-gradient(165deg,
      #fff3c4 0%,
      #ffd964 22%,
      #d8a843 55%,
      #8a6b2a 100%);
  color: #1a1510;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  padding: 0.92rem 1.35rem;
  min-height: 48px;
  border-radius: 4px;
  transition:
    transform 0.15s ease,
    box-shadow 0.18s ease,
    filter 0.15s ease;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 243, 196, 0.25) inset,
    0 -1px 0 rgba(120, 80, 20, 0.45) inset;
}

body.baller-theme.baller-hub .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.65s ease;
}

body.baller-theme.baller-hub .btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(255, 217, 100, 0.35),
    0 0 0 1px rgba(255, 243, 196, 0.4) inset;
}

body.baller-theme.baller-hub .btn:hover::before {
  transform: translateX(110%);
}

body.baller-theme.baller-hub .btn:active {
  transform: translateY(0);
}

body.baller-theme.baller-hub .btn.alt {
  background: transparent;
  color: var(--baller-champagne);
  border-color: var(--baller-line);
  box-shadow: none;
}

body.baller-theme.baller-hub .btn.alt:hover {
  background: rgba(212, 184, 122, 0.08);
  border-color: var(--baller-gold-dim);
}

body.baller-theme.baller-hub .draw {
  border: 1px solid var(--baller-line);
  border-radius: 14px;
  background: rgba(22, 19, 16, 0.92);
  padding: 1.25rem 1.35rem 1.35rem;
  margin-bottom: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

body.baller-theme.baller-hub .draw-head {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: transparent;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ballerGoldShift 16s ease-in-out infinite;
}

body.baller-theme.baller-hub .draw-head::before {
  content: '$';
  font-family: 'Newsreader', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 0.8;
  letter-spacing: 0;
  background: var(--baller-gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 217, 100, 0.3);
}

body.baller-theme.baller-hub .draw-card {
  border: 1px solid var(--baller-line-soft);
  background: var(--baller-bg-mid);
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 120px;
  border-radius: 10px;
}

body.baller-theme.baller-hub .draw-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--baller-muted);
  font-weight: 800;
}

body.baller-theme.baller-hub .draw-title {
  font-size: 1.32rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .draw-copy {
  color: var(--baller-muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

body.baller-theme.baller-hub .draw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.85rem;
  align-items: center;
}

body.baller-theme.baller-hub .draw-btn {
  border: 1px solid var(--baller-line);
  background: linear-gradient(165deg, #e8d5a8 0%, #b8923e 50%, #8a6b2a 100%);
  color: #1a1510;
  padding: 0.75rem 1.1rem;
  min-height: 46px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 900;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.12s ease, filter 0.12s ease;
}

body.baller-theme.baller-hub .draw-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.baller-theme.baller-hub .draw-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--baller-line);
  background: transparent;
  color: var(--baller-champagne);
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  min-height: 46px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  font-weight: 800;
  border-radius: 4px;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

body.baller-theme.baller-hub .draw-link:hover {
  border-color: var(--baller-gold);
  background: rgba(212, 184, 122, 0.06);
}

body.baller-theme.baller-hub .draw-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

body.baller-theme.baller-hub .baller-grid-heading {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: transparent;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.45rem;
  animation: ballerGoldShift 16s ease-in-out infinite;
}

body.baller-theme.baller-hub .baller-grid-heading::before {
  content: '$';
  font-family: 'Newsreader', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 0.8;
  letter-spacing: 0;
  background: var(--baller-gold-foil);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255, 217, 100, 0.35);
}

body.baller-theme.baller-hub .baller-grid-sub {
  font-size: 0.88rem;
  color: var(--baller-muted);
  margin-bottom: 1.1rem;
  max-width: 52ch;
  line-height: 1.55;
}

body.baller-theme.baller-hub .grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 0.25rem;
}

body.baller-theme.baller-hub .card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(165deg, rgba(26, 22, 18, 0.98), rgba(14, 12, 10, 0.99));
  border: 1px solid var(--baller-line-soft);
  padding: 1.25rem 1.2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-radius: 12px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 243, 196, 0.05);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.baller-theme.baller-hub .card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--baller-gold-foil);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

body.baller-theme.baller-hub .card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 217, 100, 0.25),
    0 0 32px rgba(255, 217, 100, 0.12);
  border-color: transparent;
}

body.baller-theme.baller-hub .card:hover::before {
  opacity: 1;
}

body.baller-theme.baller-hub .card:hover .card-meta {
  color: var(--baller-gold-bright);
}

body.baller-theme.baller-hub .card-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--baller-gold-dim);
  font-weight: 700;
}

body.baller-theme.baller-hub .card-title {
  font-size: 1.18rem;
  line-height: 1.12;
  font-weight: 900;
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .card-copy {
  color: var(--baller-muted);
  font-size: 0.88rem;
  line-height: 1.58;
  flex: 1;
}

body.baller-theme.baller-hub .card-meta {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(212, 184, 122, 0.65);
}

body.baller-theme.baller-hub footer {
  margin-top: auto;
  padding: 1.6rem 2.5rem;
  border-top: 1px solid var(--baller-line-soft);
  font-size: 0.7rem;
  color: var(--baller-muted);
}

@media (max-width: 900px) {
  body.baller-theme.baller-hub .site-header {
    padding: 0.6rem 1.2rem;
    gap: 0.6rem;
  }

  body.baller-theme.baller-hub .header-controls {
    width: 100%;
    order: 3;
  }

  body.baller-theme.baller-hub .header-category {
    flex: 1;
    min-width: 0;
    max-width: none;
  }

  body.baller-theme.baller-hub .header-search-wrap {
    flex: 1;
  }

  body.baller-theme.baller-hub .header-search {
    width: 100%;
  }

  body.baller-theme.baller-hub .header-search:focus {
    width: 100%;
  }
}

@media (max-width: 600px) {
  body.baller-theme.baller-hub .header-nav {
    gap: 0.45rem;
  }

  body.baller-theme.baller-hub .header-nav a {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 700px) {
  body.baller-theme.baller-hub main#main-content,
  body.baller-theme.baller-hub header.site-header,
  body.baller-theme.baller-hub footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  body.baller-theme.baller-hub .baller-hub-hero {
    padding: 1.65rem 1.35rem;
  }
}

/* =============================================================================
   Trophy tier — "F*CK IT. I'M RICH" section on baller.html (also reused by
   unnecessary-expensive-things.html). Pushes the visual treatment a notch
   beyond the standard roster cards: heavier gold ring, foiled price, item
   image, and a hover lift with full halo.
   ============================================================================= */

body.baller-theme.baller-hub .trophy-tier,
body.baller-theme .trophy-tier {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--baller-line);
  position: relative;
}

body.baller-theme.baller-hub .trophy-tier-eyebrow,
body.baller-theme .trophy-tier-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: transparent;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ballerGoldShift 14s ease-in-out infinite;
}

body.baller-theme.baller-hub .trophy-tier-heading,
body.baller-theme .trophy-tier-heading {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 0.65rem;
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .trophy-tier-sub,
body.baller-theme .trophy-tier-sub {
  font-size: 1rem;
  color: var(--baller-muted);
  max-width: 56ch;
  margin-bottom: 1.45rem;
  line-height: 1.62;
}

body.baller-theme .trophy-tier-back {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--baller-muted);
}
body.baller-theme .trophy-tier-back a {
  color: var(--baller-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.baller-theme .trophy-tier-back a:hover {
  color: var(--baller-gold-bright);
}

body.baller-theme.baller-hub .trophy-grid,
body.baller-theme .trophy-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

body.baller-theme.baller-hub .trophy-card,
body.baller-theme .trophy-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.1rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(165deg, rgba(30, 25, 18, 0.98), rgba(14, 12, 10, 0.99));
  border: 1px solid rgba(245, 220, 168, 0.28);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 243, 196, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.baller-theme.baller-hub .trophy-card::before,
body.baller-theme .trophy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--baller-gold-foil);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.35;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

body.baller-theme.baller-hub .trophy-card:hover,
body.baller-theme .trophy-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 217, 100, 0.4),
    0 0 38px rgba(255, 217, 100, 0.2);
}

body.baller-theme.baller-hub .trophy-card:hover::before,
body.baller-theme .trophy-card:hover::before {
  opacity: 1;
}

body.baller-theme.baller-hub .trophy-card-media,
body.baller-theme .trophy-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(20, 17, 13, 0.85);
  position: relative;
  z-index: 0;
}

body.baller-theme.baller-hub .trophy-card-img,
body.baller-theme .trophy-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}

body.baller-theme.baller-hub .trophy-card-category,
body.baller-theme .trophy-card-category {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--baller-gold-dim);
}

body.baller-theme.baller-hub .trophy-card-name,
body.baller-theme .trophy-card-name {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--baller-champagne);
}

body.baller-theme.baller-hub .trophy-card-headline,
body.baller-theme .trophy-card-headline {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--baller-muted);
}

body.baller-theme.baller-hub .trophy-card-price,
body.baller-theme .trophy-card-price {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: transparent;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ballerGoldShift 18s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(255, 217, 100, 0.15);
}

body.baller-theme.baller-hub .trophy-card-cta,
body.baller-theme .trophy-card-cta {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--baller-gold);
}

body.baller-theme.baller-hub .trophy-card:hover .trophy-card-cta,
body.baller-theme .trophy-card:hover .trophy-card-cta {
  color: var(--baller-gold-bright);
}

/* Hero CTA button styled to call out the trophy tier. */
body.baller-theme.baller-hub .btn.trophy-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background:
    linear-gradient(165deg, #fff3c4 0%, #ffd964 22%, #d8a843 55%, #8a6b2a 100%);
  color: #1a1510;
  border: 1px solid #ffd964;
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(255, 217, 100, 0.32),
    0 0 0 1px rgba(255, 243, 196, 0.35) inset;
}

body.baller-theme.baller-hub .btn.trophy-cta .trophy-cta-glyph {
  font-family: 'Newsreader', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 0.85;
  color: #1a1510;
}

@media (prefers-reduced-motion: reduce) {
  body.baller-theme.baller-hub .trophy-tier-eyebrow,
  body.baller-theme .trophy-tier-eyebrow,
  body.baller-theme.baller-hub .trophy-card-price,
  body.baller-theme .trophy-card-price { animation: none; }
}

/* =============================================================================
   Stat row — credibility strip in the hero (design-system diagram ④).
   ============================================================================= */
body.baller-theme.baller-hub .baller-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.4rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--baller-line);
}

body.baller-theme.baller-hub .baller-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

body.baller-theme.baller-hub .baller-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  background: var(--baller-gold-foil);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ballerGoldShift 14s ease-in-out infinite;
}

body.baller-theme.baller-hub .baller-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--baller-muted);
  max-width: 22ch;
}

@media (prefers-reduced-motion: reduce) {
  body.baller-theme.baller-hub .baller-stat-num { animation: none; }
}
