/* The Roster — Phase 1 discovery (mock data) */

:root {
  --roster-bg: #030508;
  --roster-bg-2: #060a10;
  --roster-text: #f4f8fb;
  --roster-muted: rgba(244, 248, 251, 0.52);
  --roster-gk: #00f52a;
  --roster-gk-dim: rgba(0, 245, 42, 0.22);
  --roster-gk-glow: rgba(0, 245, 42, 0.45);
  --roster-line: rgba(255, 255, 255, 0.08);
  --roster-nav-h: 56px;
  --roster-radius: 14px;
  --roster-card-w: min(200px, 42vw);
}

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

.roster-body {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--roster-bg);
  color: var(--roster-text);
  -webkit-font-smoothing: antialiased;
}

/* —— Top nav —— */
.roster-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.97) 0%, rgba(3, 5, 8, 0.88) 70%, transparent 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.roster-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--roster-nav-h);
  padding: 8px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
}

.roster-nav__logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}

.roster-nav__logo-gkz {
  color: var(--roster-gk);
  text-shadow: 0 0 24px var(--roster-gk-dim);
}

.roster-nav__logo-id {
  color: #fff;
  font-weight: 700;
}

.roster-nav__live {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roster-muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--roster-line);
}

@media (min-width: 520px) {
  .roster-nav__live--placeholder {
    display: inline-flex;
  }
}

.roster-nav__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.roster-nav__pill--inside {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roster-gk);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--roster-gk-dim);
  background: rgba(0, 245, 42, 0.08);
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.roster-nav__pill--inside:hover,
.roster-nav__pill--inside:focus-visible {
  background: rgba(0, 245, 42, 0.16);
  box-shadow: 0 0 20px var(--roster-gk-dim);
}

.roster-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.roster-nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.roster-nav__icon-btn:hover,
.roster-nav__icon-btn:focus-visible {
  background: rgba(0, 245, 42, 0.12);
  box-shadow: 0 0 20px var(--roster-gk-dim);
}

.roster-nav__icon-btn:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: 2px;
}

.roster-nav__icon {
  width: 20px;
  height: 20px;
}

.roster-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.roster-nav__link--ghost {
  color: var(--roster-text);
  border: 1px solid transparent;
}

.roster-nav__link--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.roster-nav__link--outline {
  color: var(--roster-text);
  border: 1px solid var(--roster-line);
}

.roster-nav__link--outline:hover {
  border-color: var(--roster-gk-dim);
  box-shadow: 0 0 18px var(--roster-gk-dim);
}

.roster-nav__link--primary {
  color: #020403;
  background: linear-gradient(145deg, #2cff5a 0%, var(--roster-gk) 45%, #00c922 100%);
  border: 1px solid rgba(0, 255, 80, 0.5);
  font-weight: 700;
  box-shadow: 0 0 28px var(--roster-gk-dim);
}

.roster-nav__link--primary:hover {
  filter: brightness(1.06);
}

.roster-nav__link.is-hidden {
  display: none;
}

@media (max-width: 480px) {
  .roster-nav__link {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
}

/* —— Main —— */
.roster-main {
  padding-top: calc(var(--roster-nav-h) + env(safe-area-inset-top) + 12px);
}

/* —— Hero —— */
.roster-hero {
  position: relative;
  padding: 32px 16px 48px;
  text-align: center;
  overflow: hidden;
}

.roster-hero--minimal {
  padding: 20px 16px 32px;
}

.roster-hero__glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 120px;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, var(--roster-gk-glow) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(20px);
}

.roster-hero__glow--top {
  top: -40px;
}

.roster-hero__glow--bottom {
  bottom: -60px;
  opacity: 0.2;
}

.roster-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

@keyframes roster-neon-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(0, 245, 42, 0.75)) drop-shadow(0 0 14px rgba(0, 245, 42, 0.4)) drop-shadow(0 0 30px rgba(0, 245, 42, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 3px rgba(0, 245, 42, 0.95)) drop-shadow(0 0 20px rgba(0, 245, 42, 0.55)) drop-shadow(0 0 44px rgba(0, 245, 42, 0.3));
  }
}

.roster-hero__title--compact {
  margin: 0 auto 8px;
  max-width: 560px;
  font-family: Syne, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.96);
  text-shadow:
    0 0 3px rgba(0, 245, 42, 0.95),
    0 0 10px rgba(0, 245, 42, 0.75),
    0 0 22px rgba(0, 245, 42, 0.55),
    0 0 40px rgba(0, 245, 42, 0.38),
    0 0 64px rgba(0, 245, 42, 0.22),
    0 0 88px rgba(0, 245, 42, 0.1);
  filter: drop-shadow(0 0 2px rgba(0, 245, 42, 0.9)) drop-shadow(0 0 16px rgba(0, 245, 42, 0.5)) drop-shadow(0 0 36px rgba(0, 245, 42, 0.28));
  animation: roster-neon-pulse 3.6s ease-in-out infinite;
}

.roster-hero__share-row {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
}

.roster-hero__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--roster-gk-border);
  background: rgba(0, 245, 42, 0.08);
  color: var(--roster-gk);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.roster-hero__share-btn:hover,
.roster-hero__share-btn:focus-visible {
  background: rgba(0, 245, 42, 0.14);
  border-color: var(--roster-gk);
  box-shadow: 0 0 22px var(--roster-gk-dim);
}

.roster-hero__share-btn:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: 2px;
}

.roster-hero__share-ico {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.roster-share-toast {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  margin: 0;
  padding: 0.65rem 1rem;
  max-width: min(22rem, calc(100vw - 2rem));
  border-radius: 12px;
  border: 1px solid var(--roster-gk-border);
  background: rgba(8, 12, 18, 0.94);
  color: #eaf2ff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.roster-share-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.roster-hero__sub {
  margin: 0 auto 16px;
  max-width: 34em;
  padding: 0 8px;
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--roster-muted);
}

/* Search — minimal bar, quiet default, subtle focus */
.roster-search-wrap {
  margin: 0 auto 16px;
  max-width: 560px;
}

.roster-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 12px 3px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.roster-search:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.roster-search:focus-within {
  border-color: rgba(0, 245, 42, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 245, 42, 0.12), 0 8px 28px rgba(0, 0, 0, 0.4);
}

.roster-search__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(244, 248, 251, 0.45);
  transition: color 0.2s ease;
}

.roster-search:focus-within .roster-search__icon {
  color: var(--roster-gk);
  opacity: 0.9;
}

.roster-search__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.roster-search__input {
  flex: 1;
  min-width: 0;
  padding: 12px 10px 12px 0;
  border: none;
  background: transparent;
  color: var(--roster-text);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.roster-search__input::-webkit-search-decoration,
.roster-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.roster-search__input::placeholder {
  color: rgba(244, 248, 251, 0.32);
  font-weight: 400;
}

.roster-filter-hint {
  min-height: 1.25em;
  margin: 0 0 14px;
  font-size: 0.875rem;
  color: var(--roster-gk);
  opacity: 0.9;
}

.roster-filter-hint:empty {
  display: none;
  margin: 0;
  min-height: 0;
}

/* Pills */
.roster-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.roster-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--roster-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--roster-text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.roster-pill:hover {
  border-color: var(--roster-gk-dim);
  background: rgba(0, 245, 42, 0.08);
}

.roster-pill.is-active {
  border-color: var(--roster-gk);
  background: rgba(0, 245, 42, 0.14);
  box-shadow: 0 0 24px var(--roster-gk-dim);
  color: #fff;
}

.roster-pill:active {
  transform: scale(0.97);
}

/* —— Lightweight link to Inside (no remote/markdown on this page) —— */
.roster-inside-cta {
  margin: 0 auto 1.25rem;
  padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  max-width: 1280px;
  text-align: center;
}

.roster-inside-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--roster-gk);
  border: 1px solid var(--roster-gk-dim);
  background: rgba(0, 245, 42, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.roster-inside-cta__link:hover,
.roster-inside-cta__link:focus-visible {
  background: rgba(0, 245, 42, 0.12);
  box-shadow: 0 0 20px var(--roster-gk-dim);
}

.roster-inside-cta__link:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: 2px;
}

/* —— Feed sections (thumbnail grid — homepage-ready) —— */
.roster-rails {
  padding: 0 max(16px, env(safe-area-inset-left)) 64px max(16px, env(safe-area-inset-right));
  max-width: 1280px;
  margin: 0 auto;
}

.roster-feed-section {
  margin-bottom: 2.25rem;
}

.roster-feed-section__head {
  margin-bottom: 0.75rem;
}

.roster-feed-section__glow-line {
  height: 2px;
  width: min(160px, 36vw);
  margin-bottom: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--roster-gk), transparent);
  box-shadow: 0 0 14px var(--roster-gk-glow);
}

.roster-feed-section__title {
  margin: 0;
  font-family: Syne, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.9);
}

.roster-feed-section__empty {
  margin: 0.35rem 0 0.5rem;
  padding: 0.25rem 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(234, 242, 255, 0.42);
}

/* Sample / marketing rails: explore bar + title row with Show less / Show all rail toggle */
.roster-feed-section--sample {
  margin-bottom: 2.5rem;
}

.roster-feed-section__explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.35rem;
}

.roster-feed-section__explore-txt {
  font-family: Syne, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.72);
}

.roster-feed-section__see {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--roster-gk);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.roster-feed-section__see:hover,
.roster-feed-section__see:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button.roster-feed-section__see {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: right;
}

/* Collapsed sample rail: first four tiles stay visible; default is expanded (all tiles). */
.roster-feed-section--rail.roster-feed-section--rail-collapsed .roster-feed-section__grid--rail > *:nth-child(n + 5) {
  display: none;
}

.roster-feed-section__head--sample .roster-feed-section__glow-line {
  margin-bottom: 0.45rem;
}

.roster-feed-section__head--sample .roster-feed-section__head-split {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.roster-feed-section__head--sample .roster-feed-section__title {
  letter-spacing: 0.16em;
}

.roster-feed-section__head--sample::after {
  content: "";
  display: block;
  height: 2px;
  width: min(160px, 36vw);
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--roster-gk), transparent);
  box-shadow: 0 0 14px var(--roster-gk-glow);
}

/* Portrait sample tiles (demo carousel) */
.roster-sample-tile {
  position: relative;
  border-radius: var(--roster-radius);
  overflow: hidden;
  flex: 0 0 auto;
  width: min(168px, 46vw);
  scroll-snap-align: start;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

@media (min-width: 400px) {
  .roster-sample-tile {
    width: min(178px, 42vw);
  }
}

@media (min-width: 720px) {
  .roster-sample-tile {
    width: min(192px, 22vw);
  }
}

.roster-sample-tile__hit {
  display: block;
  text-decoration: none;
  color: inherit;
}

.roster-sample-tile__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #0a1018, #05080c);
}

.roster-sample-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.roster-sample-tile__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: rgba(0, 245, 42, 0.35);
  letter-spacing: -0.04em;
}

.roster-sample-tile__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(3, 5, 8, 0.55) 72%, rgba(3, 5, 8, 0.94) 100%);
}

/* Discovery thumbnails: avatar + name (top), views / likes / following (bottom) */
.roster-thumb-chrome__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 5, 8, 0.82) 0%,
    rgba(3, 5, 8, 0.2) 22%,
    transparent 42%,
    transparent 58%,
    rgba(3, 5, 8, 0.35) 78%,
    rgba(3, 5, 8, 0.92) 100%
  );
}

.roster-thumb-chrome__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.4rem 2.55rem 0.38rem 0.42rem;
  pointer-events: none;
}

.roster-thumb-chrome__avatar-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(0, 245, 42, 0.42);
  background: #0a1018;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.roster-thumb-chrome__avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.roster-thumb-chrome__avatar-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Syne, system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(0, 245, 42, 0.45);
}

.roster-thumb-chrome__name {
  flex: 1 1 auto;
  min-width: 0;
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-thumb-chrome__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.16rem;
  padding: 0.38rem 0.48rem 0.48rem;
  pointer-events: none;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.8);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.roster-sample-tile__media .roster-thumb-chrome__bottom {
  padding-bottom: 0.62rem;
}

.roster-thumb-chrome__dot {
  opacity: 0.45;
  font-weight: 700;
}

.roster-sample-tile__media:has(.roster-thumb-chrome__top) .roster-sample-tile__live {
  top: 2.35rem;
}

.lp-live-card-slot__viewport:has(.roster-thumb-chrome__top) .lp-live-card-slot__live-pill {
  top: 2.35rem;
}

.roster-sample-tile__live {
  position: absolute;
  top: 0.42rem;
  left: 0.42rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.18rem 0.42rem;
  border-radius: 6px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 25, 90, 0.92);
  box-shadow: 0 0 14px rgba(255, 40, 100, 0.5);
  pointer-events: none;
}

.roster-sample-tile__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: roster-pulse 1.2s ease-in-out infinite;
}

.roster-demo-row__live {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.16rem 0.38rem;
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 25, 90, 0.92);
  box-shadow: 0 0 12px rgba(255, 40, 100, 0.45);
  pointer-events: none;
}

.roster-demo-row__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: roster-pulse 1.2s ease-in-out infinite;
}

.roster-sample-tile__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.45rem 0.55rem 0.55rem;
  pointer-events: none;
}

.roster-sample-tile__name {
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.roster-sample-tile__stats {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.78);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.2rem;
}

.roster-sample-tile__dot {
  opacity: 0.45;
  font-weight: 700;
}

.roster-sample-tile__accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 3;
  pointer-events: none;
  border-radius: 0 0 var(--roster-radius) var(--roster-radius);
}

.roster-sample-tile--tone-football .roster-sample-tile__accent {
  background: linear-gradient(90deg, #f59e0b, #ea580c, #c2410c);
  box-shadow: 0 0 14px rgba(234, 88, 12, 0.45);
}

.roster-sample-tile--tone-live .roster-sample-tile__accent {
  background: linear-gradient(90deg, #00f52a, #7cff9a, #00f52a);
  box-shadow: 0 0 16px rgba(0, 245, 42, 0.65);
}

.roster-sample-tile--tone-golf .roster-sample-tile__accent {
  background: linear-gradient(90deg, #6ee7ff, #a7f3d0, #34d399);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.45);
}

.roster-sample-tile--tone-soccer .roster-sample-tile__accent {
  background: linear-gradient(90deg, #38bdf8, #60a5fa, #818cf8);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.roster-sample-tile--tone-baseball .roster-sample-tile__accent {
  background: linear-gradient(90deg, #fb7185, #f87171, #fb923c);
  box-shadow: 0 0 14px rgba(248, 113, 113, 0.45);
}

.roster-sample-tile--tone-basketball .roster-sample-tile__accent {
  background: linear-gradient(90deg, #fbbf24, #f97316, #ea580c);
  box-shadow: 0 0 14px rgba(251, 146, 60, 0.45);
}

.roster-sample-tile--tone-verified .roster-sample-tile__accent {
  background: linear-gradient(90deg, #c4b5fd, #a78bfa, #8b5cf6);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
}

.roster-sample-tile--tone-neutral .roster-sample-tile__accent {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(0, 245, 42, 0.55), rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 12px rgba(0, 245, 42, 0.25);
}

.roster-sample-tile--tone-lacrosse .roster-sample-tile__accent {
  background: linear-gradient(90deg, #14b8a6, #2dd4bf, #0d9488);
  box-shadow: 0 0 14px rgba(20, 184, 166, 0.5);
}

/* Trending rail: empty slots you fill by pinning cards in Roster curation */
.roster-sample-tile--reserved {
  pointer-events: none;
  user-select: none;
}

.roster-sample-tile--reserved .roster-sample-tile__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(12, 18, 26, 0.95), rgba(5, 8, 12, 0.98));
  border: 1px dashed rgba(0, 245, 42, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.roster-sample-tile__reserved-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 0.75rem;
}

.roster-sample-tile__reserved-plus {
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1;
  color: rgba(0, 245, 42, 0.45);
  text-shadow: 0 0 18px rgba(0, 245, 42, 0.25);
}

.roster-sample-tile__reserved-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.42);
}

.roster-demo-row--reserved .roster-demo-row__hit--reserved {
  pointer-events: none;
  cursor: default;
}

.roster-demo-row__reserved-panel {
  width: 100%;
  height: 100%;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(0, 245, 42, 0.4);
  background: linear-gradient(145deg, rgba(10, 16, 24, 0.95), rgba(5, 8, 12, 0.98));
  border: 1px dashed rgba(0, 245, 42, 0.2);
  border-radius: 10px;
}

.roster-tile--reserved-slot {
  pointer-events: none;
  user-select: none;
}

.roster-feed-section--trending-reserved .roster-feed-section__head--sample {
  border-bottom: 1px solid rgba(0, 245, 42, 0.08);
  padding-bottom: 0.35rem;
}

.roster-sample-tile .roster-tile__acts {
  top: 0.4rem;
  right: 0.4rem;
}

.roster-sample-tile .roster-tile__btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
}

.roster-feed-section--rail .roster-feed-section__grid--rail .roster-sample-tile {
  flex: 0 0 auto;
}

/* Mobile: 2 columns; desktop: dense channel grid */
.roster-feed-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .roster-feed-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .roster-feed-section__grid {
    grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
    gap: 0.85rem;
  }
}

/* Screen-reader-only label on thumbnail-only tiles */
.roster-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Thumbnail tile (discovery) — homepage card body uses .lp-live-card-slot (gkz-player-card-slot.css) —— */
.roster-tile {
  position: relative;
  border-radius: var(--roster-radius);
  min-width: 0;
}

/* Roster trending thumbs: same DOM/CSS as homepage slots; layout glue only */
.roster-tile--lp-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 0;
  background: transparent;
}

.roster-tile--placement-jpg {
  pointer-events: none;
  user-select: none;
}

.roster-tile--placement-jpg .lp-live-card-slot {
  cursor: default;
}


.roster-tile--lp-slot.roster-tile--reserved-slot .lp-live-card-slot__placeholder {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(234, 242, 255, 0.35);
}

/* Trending reserved slots: always show art + link to pin curated thumbnails */
.lp-live-card-slot--reserved-trending .lp-live-card-slot__viewport {
  position: relative;
}

.lp-live-card-slot--reserved-trending .lp-live-card-slot__image {
  filter: saturate(0.88) brightness(0.74);
}

.roster-trending-reserved__shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 58%);
}

.roster-trending-reserved__cta {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #00f52a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95);
  white-space: nowrap;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 245, 42, 0.4);
  background: rgba(0, 0, 0, 0.5);
}

.roster-trending-reserved__cta:hover {
  border-color: rgba(0, 245, 42, 0.75);
  color: #33ff5c;
}

.roster-trending-reserved__cta:focus-visible {
  outline: 2px solid rgba(0, 245, 42, 0.9);
  outline-offset: 2px;
}

/* Featured carousel (default Roster): slightly larger thumbs + subtitle under title */
.roster-feed-section__subtitle {
  margin: 0.35rem 0 0;
  max-width: 42rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 450;
  color: rgba(210, 220, 235, 0.72);
}

.roster-feed-section__head--featured .roster-feed-section__title {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  letter-spacing: -0.02em;
}

.roster-feed-section--featured.roster-feed-section--rail .roster-tile--lp-slot .lp-live-card-slot {
  width: min(204px, 32vw);
}

/* Featured row: portrait cards with name + views / likes / followers */
.roster-feed-section--featured.roster-feed-section--rail .roster-feed-section__grid--rail .roster-sample-tile {
  width: min(212px, 40vw);
}

@media (min-width: 720px) {
  .roster-feed-section--featured.roster-feed-section--rail .roster-feed-section__grid--rail .roster-sample-tile {
    width: min(228px, 24vw);
  }
}

.roster-feed-section--featured.roster-feed-section--rail .roster-feed-section__grid--rail {
  gap: 0.62rem;
  padding-top: 0.25rem;
}

/* Browse row: portrait thumb + name / stats (preview only — not linked) */
.roster-browse-thumb {
  flex: 0 0 auto;
  width: min(168px, 38vw);
  scroll-snap-align: start;
  border-radius: var(--roster-radius);
  overflow: hidden;
  background: #0a0f16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

@media (min-width: 720px) {
  .roster-browse-thumb {
    width: min(178px, 18vw);
  }
}

.roster-browse-thumb__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #0a1018;
}

.roster-browse-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.roster-browse-thumb__live {
  position: absolute;
  top: 0.38rem;
  left: 0.38rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.16rem 0.4rem;
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 25, 90, 0.92);
  pointer-events: none;
}

.roster-browse-thumb__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.roster-browse-thumb__cap {
  padding: 0.55rem 0.6rem 0.65rem;
}

.roster-browse-thumb__name {
  margin: 0 0 0.28rem;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(244, 248, 251, 0.96);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roster-browse-thumb__stats {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(210, 220, 235, 0.68);
  text-transform: lowercase;
}

.roster-browse-thumb__stats span {
  white-space: nowrap;
}

.roster-browse-thumb__dot {
  margin: 0 0.2rem;
  opacity: 0.55;
}

.roster-feed-section--rail .roster-feed-section__grid--rail .roster-browse-thumb {
  flex: 0 0 auto;
}

/* Category rails: one horizontal scroll row per section (ESPN-style carousels) */
.roster-feed-section--rail {
  position: relative;
}

/* Suggests more content off-screen; does not block touch (pointer-events none). */
.roster-feed-section--rail::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 2.25rem;
  right: 0;
  bottom: 0;
  width: min(52px, 12vw);
  z-index: 2;
  background: linear-gradient(270deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0) 100%);
}

.roster-feed-section--rail .roster-feed-section__grid--rail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.52rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0.15rem 0 0.5rem;
  margin: 0 calc(-1 * max(16px, env(safe-area-inset-left))) 0 calc(-1 * max(16px, env(safe-area-inset-right)));
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(0, 245, 42, 0.35) transparent;
}

.roster-feed-section--rail .roster-feed-section__grid--rail::-webkit-scrollbar {
  height: 6px;
}

.roster-feed-section--rail .roster-feed-section__grid--rail::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 42, 0.28);
  border-radius: 6px;
}

.roster-feed-section--rail .roster-tile--lp-slot {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Mobile: Reels-style 9:16 tiles — one profile per swipe, tall like TikTok / Instagram */
@media (max-width: 719px) {
  .roster-feed-section--rail .roster-feed-section__grid--rail {
    gap: 0.65rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .roster-feed-section--rail .roster-tile--lp-slot,
  .roster-feed-section--rail .roster-feed-section__grid--rail .roster-sample-tile {
    scroll-snap-align: center;
  }

  .roster-feed-section--rail .roster-tile--lp-slot .lp-live-card-slot,
  .roster-feed-section--featured.roster-feed-section--rail .roster-tile--lp-slot .lp-live-card-slot {
    width: min(92vw, 420px);
  }

  .roster-feed-section--rail .roster-tile--lp-slot .lp-live-card-slot__viewport,
  .roster-feed-section--featured.roster-feed-section--rail .roster-tile--lp-slot .lp-live-card-slot__viewport {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-height: min(82dvh, calc(100dvh - 10.5rem));
  }

  .roster-feed-section--rail .roster-feed-section__grid--rail .roster-sample-tile {
    width: min(92vw, 420px);
  }

  .roster-feed-section--rail::after {
    width: min(40px, 10vw);
  }

  .roster-feed-section--rail .roster-thumb-chrome__name {
    font-size: 0.84rem;
  }

  .roster-feed-section--rail .roster-thumb-chrome__bottom {
    font-size: 0.58rem;
    padding-bottom: 0.55rem;
  }

  .roster-feed-section--rail .roster-thumb-chrome__top {
    padding-right: 2.75rem;
  }
}

/* Like / follow (live roster only) — above homepage tap-cover (z-index 4) */
.roster-tile__acts {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: 0.28rem;
  pointer-events: auto;
}

.roster-tile__btn {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 248, 251, 0.92);
  background: rgba(6, 10, 16, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.roster-tile__btn:hover,
.roster-tile__btn:focus-visible {
  background: rgba(12, 18, 28, 0.92);
  color: #fff;
  transform: scale(1.06);
  outline: none;
}

.roster-tile__btn:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: 1px;
}

.roster-tile__btn:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.roster-tile__btn-ico {
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
}

.roster-tile__btn--like.is-on {
  color: #020403;
  background: rgba(0, 245, 42, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 245, 42, 0.5), 0 0 22px rgba(0, 245, 42, 0.35);
}

.roster-tile__btn--follow.is-on {
  color: #020403;
  background: rgba(0, 245, 42, 0.85);
  box-shadow: 0 0 0 1px rgba(0, 245, 42, 0.45), 0 0 18px rgba(0, 245, 42, 0.28);
}

.roster-tile__btn--follow .roster-tile__btn-ico {
  font-size: 0.95rem;
  font-weight: 900;
}

/* —— Demo: vertical list per category (itemized rows) —— */
.roster-feed-section--demo .roster-feed-section__grid--demo-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.roster-demo-row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.roster-demo-row__hit {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.5rem 0.6rem;
  text-decoration: none;
  color: inherit;
  outline: none;
  border-radius: 14px 0 0 14px;
}

.roster-demo-row__hit:hover,
.roster-demo-row__hit:focus-visible {
  background: rgba(0, 245, 42, 0.06);
}

.roster-demo-row__hit:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: -2px;
}

.roster-demo-row__thumb {
  position: relative;
  flex-shrink: 0;
  width: 76px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #080b10;
}

.roster-demo-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.roster-demo-row__ph {
  width: 100%;
  height: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #12161f, #0a0d12);
  color: rgba(0, 245, 42, 0.35);
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.roster-demo-row__main {
  flex: 1;
  min-width: 0;
}

.roster-demo-row__titleline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.roster-demo-row__name {
  font-family: Syne, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #f4f8fb;
}

.roster-demo-row__sport {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 245, 42, 0.88);
}

.roster-demo-row__ver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 800;
  color: #020403;
  background: var(--roster-gk);
}

.roster-demo-row__line {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  color: rgba(232, 242, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roster-demo-row__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(232, 242, 255, 0.58);
}

.roster-demo-row__stat strong {
  font-weight: 800;
  color: rgba(244, 248, 251, 0.95);
  margin-right: 0.12rem;
}

.roster-demo-row__acts {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.55rem 0.45rem 0;
}

.roster-demo-row .roster-tile__btn {
  width: 2rem;
  height: 2rem;
}

.roster-tile__hit {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--roster-radius);
  outline: none;
  overflow: hidden;
  background: var(--roster-bg-2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.roster-tile__hit:hover,
.roster-tile__hit:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 245, 42, 0.22), 0 0 32px var(--roster-gk-dim);
}

.roster-tile__hit:focus-visible {
  outline: 2px solid var(--roster-gk);
  outline-offset: 2px;
}

.roster-tile--feature .roster-tile__hit {
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 245, 42, 0.35);
}

@media (min-width: 900px) {
  .roster-tile--feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.roster-tile__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #080b10;
}

.roster-tile--feature .roster-tile__media {
  aspect-ratio: 16 / 10;
}

.roster-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.001);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.roster-tile__hit:hover .roster-tile__img,
.roster-tile__hit:focus-visible .roster-tile__img {
  transform: scale(1.05);
}

.roster-tile__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #12161f, #0a0d12);
  color: rgba(0, 245, 42, 0.35);
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.roster-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(3, 5, 8, 0.55) 70%, rgba(3, 5, 8, 0.92) 100%);
  pointer-events: none;
}

.roster-tile__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.5rem 0.5rem;
  pointer-events: none;
}

.roster-tile__name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.roster-tile__name {
  margin: 0;
  font-family: Syne, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.roster-tile--feature .roster-tile__name {
  font-size: 0.95rem;
}

.roster-tile__ver {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
  color: #020403;
  background: var(--roster-gk);
}

.roster-tile__sport {
  margin: 0.1rem 0 0;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232, 242, 255, 0.72);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.roster-tile__line {
  margin: 0.15rem 0 0;
  font-size: 0.58rem;
  color: rgba(232, 242, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.roster-tile__stats {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.2rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(232, 242, 255, 0.45);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

.roster-tile__stats-sep {
  opacity: 0.5;
}

.roster-tile__live {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 25, 90, 0.88);
  box-shadow: 0 0 16px rgba(255, 40, 100, 0.45);
}

.roster-tile__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: roster-pulse 1.2s ease-in-out infinite;
}

@keyframes roster-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.roster-tile__badge-chip {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  max-width: calc(100% - 4.5rem);
  padding: 0.18rem 0.4rem;
  border-radius: 6px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0c10;
  background: rgba(255, 214, 120, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Loading skeleton */
.roster-skel {
  padding: 0.5rem 0 3rem;
  text-align: center;
}

.roster-skel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .roster-skel__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.roster-skel__tile {
  border-radius: var(--roster-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.roster-skel__media {
  aspect-ratio: 1;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.09) 40%, rgba(255, 255, 255, 0.04) 80%);
  background-size: 200% 100%;
  animation: roster-skel-shimmer 1.2s ease-in-out infinite;
}

.roster-skel__line {
  height: 10px;
  margin: 8px 8px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.roster-skel__line--short {
  width: 55%;
  margin-bottom: 10px;
}

.roster-skel__caption {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--roster-muted);
}

@keyframes roster-skel-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Empty state */
.roster-empty {
  text-align: center;
  padding: 3rem 1.25rem 4rem;
  max-width: 26rem;
  margin: 0 auto;
}

.roster-empty--branded {
  border: 1px dashed rgba(0, 245, 42, 0.22);
  border-radius: 1.25rem;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0, 245, 42, 0.08), transparent 55%), rgba(255, 255, 255, 0.02);
}

.roster-empty__eyebrow {
  margin: 0 0 0.35rem;
  font-family: Syne, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--roster-gk);
}

.roster-empty__text {
  margin: 0 0 8px;
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.roster-empty__hint {
  margin: 0;
  color: var(--roster-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.roster-empty__cta {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: #020403;
  background: linear-gradient(145deg, #2cff5a, var(--roster-gk));
  border: 1px solid rgba(0, 255, 80, 0.45);
}

/* Footer */
.roster-footer {
  position: relative;
  text-align: center;
  padding: 40px 20px calc(32px + env(safe-area-inset-bottom));
}

.roster-footer__glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(600px, 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--roster-gk), transparent);
  box-shadow: 0 0 20px var(--roster-gk-glow);
  opacity: 0.5;
}

.roster-footer__tag {
  margin: 16px 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roster-muted);
}

.roster-footer__home {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--roster-gk);
  text-decoration: none;
}

.roster-footer__home:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .roster-hero__title--compact {
    text-shadow: 0 0 8px rgba(0, 245, 42, 0.4), 0 0 24px rgba(0, 245, 42, 0.22);
    filter: none;
    animation: none;
  }
  .roster-tile__hit,
  .roster-tile__img {
    transition: none;
  }
  .roster-tile__hit:hover,
  .roster-tile__hit:focus-visible {
    transform: none;
  }
  .roster-tile__live-dot {
    animation: none;
  }
  .roster-skel__media {
    animation: none;
  }
}
