/* === Nimbus Sans L Bold Italic (brand display font) === */
@font-face {
  font-family: 'Nimbus Sans L';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/nimbus-sans-bold-italic.woff2') format('woff2');
}

/* === Inter (self-hosted) === */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === Every Volley Dark Theme === */

:root {
  --app-bg: #050508;
  --app-bg-1: #0b1020;
  --app-bg-2: #0a0f1a;
  --card-bg: rgba(17, 24, 39, 0.6);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent-blue: #0000FF;
  --accent-hot: #FF0033;
  --radius: 14px;
  --header-h: 56px;
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.35);
  --divider: rgba(255, 255, 255, 0.06);
  --font-display: 'Nimbus Sans L', system-ui, sans-serif;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(900px 600px at 15% 0%, color-mix(in srgb, var(--accent-blue) 18%, transparent), transparent 55%),
    radial-gradient(900px 600px at 85% 0%, color-mix(in srgb, var(--accent-hot) 15%, transparent), transparent 55%),
    linear-gradient(180deg, var(--app-bg-1), var(--app-bg));
  background-attachment: fixed;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* === Layout === */

.content {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

.content-wide {
  max-width: 800px;
}

/* === Brand Logo === */

/* === Navbar === */

.header.navbar {
  height: var(--header-h);
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 8, 0.85) !important;
  border-bottom: 1px solid var(--divider);
  padding: 0 16px;
}

/* Mobile-only download banner — shown above the sticky nav on mobile.
   Replaces the nav download CTAs at the same breakpoint to avoid duplication. */
.dl-banner {
  display: none;
}
@media (max-width: 991px) {
  .dl-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #0A0EFF 0%, #FF0040 100%);
    color: #fff !important;
    text-decoration: none;
  }
  .dl-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
  }
  .dl-banner-icon svg { color: #fff; width: 24px; height: 24px; }
  .dl-banner-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    line-height: 1.2;
  }
  .dl-banner-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
  }
  .dl-banner-sub {
    font-size: 0.82rem;
    opacity: 0.95;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-banner-cta {
    flex-shrink: 0;
    padding: 9px 16px;
    background: #fff;
    color: #02050D;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 100px;
    letter-spacing: -0.01em;
  }
  /* Banner replaces the nav download CTAs on mobile */
  .header .nav-cta,
  .header .nav-cta-android {
    display: none;
  }
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: #ffffff !important;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-volley {
  color: var(--accent-blue);
  font-weight: 800;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 0.3rem 0.65rem;
  color: var(--text-secondary) !important;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffffff !important;
}

.lang-toggle {
  padding: 0.3rem 0.65rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--text-secondary);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher .lang-current {
  padding: 0.3rem 0.65rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--text-secondary);
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s, border-color 0.2s;
}

.lang-switcher:hover .lang-current {
  color: #ffffff;
  border-color: #ffffff;
}

.lang-switcher .lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  display: none;
  flex-direction: column;
  min-width: 64px;
  padding: 4px;
  background: #0a0a12;
  border: 1px solid var(--text-secondary);
  border-radius: 10px;
  z-index: 100;
}

.lang-switcher:hover .lang-menu,
.lang-switcher:focus-within .lang-menu {
  display: flex;
}

.lang-switcher .lang-menu-item {
  padding: 6px 10px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.lang-switcher .lang-menu-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #ffffff;
  color: var(--app-bg);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
  color: var(--app-bg);
}

.nav-cta-android {
  background: #ffffff;
  color: var(--app-bg);
}

/* === Home Header === */

.home-header {
  margin-bottom: 1.25rem;
}

.home-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.home-header h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.home-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
  margin: 4px 0 0;
}

/* Shared SEO footer text — bot-facing, de-emphasized for humans. Used on home,
   home-mobile, league, etc. Placed at end of <main> with small muted styling. */
.seo-footer-text {
  margin: 48px auto 24px;
  max-width: 760px;
  padding: 0 16px;
  opacity: 0.55;
}

.seo-footer-text h2 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-secondary, #6b7280);
  margin: 0 0 6px;
  text-transform: none;
  font-style: normal;
}

.seo-footer-text p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-secondary, #6b7280);
  margin: 0;
}

/* === Filter Bar === */

.filter-bar {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.filter-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-weight: 600;
}

.filter-btn .live-dot {
  width: 5px;
  height: 5px;
}

.live-dot.dot-idle {
  animation: none;
  opacity: 0.4;
}

.filter-divider {
  width: 1px;
  height: 20px;
  background: var(--card-border);
  flex-shrink: 0;
  align-self: center;
}

.filter-country {
  padding: 4px 8px;
}

.filter-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* === Competition Groups === */

.competition-group {
  margin-bottom: 1rem;
}

.competition-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 0 4px;
}

.competition-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.7;
}

.competition-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0;
}

/* === Competition Card (groups all matches in one container) === */

.competition-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* === Match Row === */

.match-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 10px;
  transition: background 0.15s;
}

.match-row:not(:last-child) {
  border-bottom: 1px solid var(--divider);
}

.match-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.match-live {
  border-left: 2px solid var(--accent-hot);
}

/* Status column */
.match-status {
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.live-badge {
  display: flex;
  align-items: center;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hot);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-hot);
  text-transform: uppercase;
}

.status-ft {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-tertiary);
}

.status-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Match body: teams stacked */
.match-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 22px;
}

.team-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.team-logo-placeholder {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.team-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary);
}

.team-win .team-name {
  color: var(--text-primary);
  font-weight: 600;
}

/* Set scores — inline columns */
.set-scores {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.set-pts {
  width: 24px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}

.match-live .set-scores .set-pts:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* Main score (sets won) */
.match-score {
  width: 22px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.match-score.score-win {
  color: var(--text-primary);
}

.match-live .match-score {
  color: var(--text-primary);
}

/* === Leagues Section === */

.leagues-section {
  margin-top: 3rem;
  padding: 2.5rem 0 1rem;
  text-align: center;
  border-top: 1px solid var(--divider);
}

.leagues-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.leagues-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.leagues-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.league-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.league-item:hover {
  color: var(--text-primary);
  border-color: var(--accent-blue);
  background: var(--card-bg);
}

.league-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.league-icon {
  font-size: 0.75rem;
  line-height: 1;
}

/* === About Section === */

.about-section {
  margin-top: 1rem;
  padding: 1.5rem 0 1rem;
  text-align: center;
}

.about-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-subtitle {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 0;
  overflow: hidden;
}

.about-card-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.about-store-badges,
.store-badges-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.about-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--text-primary);
  color: var(--app-bg);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 0;
}

.about-store-badge:hover {
  opacity: 0.85;
  color: var(--app-bg);
}


/* Android Coming Soon Popup */
.android-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 13, 0.72);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.android-popup-overlay.active {
  display: flex;
}
.android-popup {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background:
    radial-gradient(circle at top, rgba(10, 14, 255, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(24, 29, 41, 0.98) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px 24px 20px;
  text-align: center;
  max-width: 340px;
  width: min(100%, 340px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.38);
}
.android-popup > * {
  position: relative;
  z-index: 1;
}
.android-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 38%);
  pointer-events: none;
}
.android-popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.android-popup h3 {
  margin: 4px 0 0;
  max-width: 250px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.android-popup p {
  margin: 0;
  max-width: 240px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}
.android-popup-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF0040;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 2px;
}
.android-popup-ig:hover {
  text-decoration: underline;
}
.android-popup-close {
  margin-top: 8px;
  min-width: 132px;
  background: linear-gradient(135deg, #0A0EFF 0%, #3F3BFF 100%);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(10, 14, 255, 0.2);
  transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.android-popup-close:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(10, 14, 255, 0.24);
}

.about-phones {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-height: 440px;
}

.about-phone {
  width: 250px;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
}

/* === Empty / Error States === */

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}

/* === Error Page === */

.error-page {
  text-align: center;
  padding: 4rem 1rem;
}

.error-page h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-hot), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.error-page .btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

/* === App Banner === */

.app-banner {
  background: rgba(0, 0, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 255, 0.12);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}

.app-banner .btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
}

/* === Footer === */

.site-footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--divider);
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: var(--text-tertiary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.footer-disclaimer {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  text-align: center;
  padding: 0.75rem 1rem 0;
  border-top: 1px solid var(--divider);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* === Page Header (reusable) === */

.page-header {
  margin-bottom: 1.25rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* === Breadcrumb === */

.breadcrumb-nav {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: var(--text-primary);
}

.breadcrumb-sep {
  margin: 0 6px;
}

/* === Country Groups (leagues listing) === */

.country-group {
  margin-bottom: 1.5rem;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0 4px;
}

.country-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0;
}

/* === League Link Items === */

.leagues-list {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.league-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s;
}

.league-link-item:not(:last-child) {
  border-bottom: 1px solid var(--divider);
}

.league-link-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.league-link-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
}

.league-chevron {
  color: var(--text-tertiary);
  font-size: 1.1rem;
}

/* === League Hero (detail page) === */

.league-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.league-hero-flag {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
}

.league-hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.league-hero-season {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.league-section {
  margin-top: 28px;
}

.league-section-title {
  font-family: var(--font-display, inherit);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--text-primary);
}

/* === Standings Table === */

.standings-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.standings-table th {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.standings-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
}

.standings-table tr:last-child td {
  border-bottom: none;
}

.standings-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.st-pos {
  width: 28px;
  text-align: center;
  color: var(--text-tertiary);
  font-weight: 600;
}

td.st-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

td.st-team .team-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.st-stat {
  width: 36px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.st-pts {
  font-weight: 700;
  color: var(--text-primary);
}

/* === Leagues CTA === */

.leagues-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.leagues-cta:hover {
  color: var(--text-primary);
}

/* === Match Detail === */

.match-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.md-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

button.md-refresh-btn,
button.md-refresh-btn:focus,
button.md-refresh-btn:active,
button.md-refresh-btn:hover {
  all: unset;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--accent-hot);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  transition: opacity 0.15s;
}
button.md-refresh-btn:hover {
  opacity: 0.7;
}
.md-refresh-btn.spinning svg {
  animation: spin 0.6s ease;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.md-status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-hot);
}

.md-status-ft {
  color: var(--text-tertiary);
}

.md-status-scheduled {
  color: var(--text-secondary);
  text-transform: none;
  font-weight: 500;
}

.md-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.md-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.md-team-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.md-logo-placeholder {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.md-team-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

.md-team-name.md-winner {
  color: var(--text-primary);
  font-weight: 700;
}

.md-team-link {
  text-decoration: none;
  color: inherit;
}

.md-score-block {
  flex-shrink: 0;
}

.md-score {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.md-score-live {
  color: var(--accent-hot);
}

.md-score-sep {
  margin: 0 4px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.md-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.md-sets {
  border-top: 1px solid var(--divider);
  padding-top: 1rem;
}

.md-sets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.md-sets-table th {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 6px 8px;
  text-align: center;
}

.md-sets-table th.md-sets-team {
  text-align: left;
}

.md-sets-table td {
  padding: 8px;
  text-align: center;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.md-sets-team-name {
  text-align: left !important;
  font-weight: 500;
  color: var(--text-primary) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.md-sets-pts {
  font-weight: 400;
}

.md-set-won {
  font-weight: 700 !important;
  color: var(--text-primary) !important;
}

.md-set-current {
  color: var(--accent-hot) !important;
  font-weight: 700 !important;
}

.md-sets-empty {
  color: var(--text-tertiary) !important;
}

.md-sets-total-val {
  font-weight: 700;
}

.md-sets-total-val.md-winner {
  color: var(--text-primary) !important;
}

.md-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.md-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
}

.md-info-row:not(:last-child) {
  border-bottom: 1px solid var(--divider);
}

.md-info-label {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.md-info-value {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
}

.md-info-value a {
  color: var(--text-primary);
  text-decoration: none;
}

.md-info-value a:hover {
  text-decoration: underline;
}

/* Match H1 — visually subtle but present for SEO */
.match-h1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

/* Match Summary */
.md-summary-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
}

.md-summary-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.md-summary-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}

.md-app-cta {
  text-align: center;
  padding: 1.5rem 0;
}

.md-app-cta-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a.match-row {
  text-decoration: none;
  color: inherit;
}

a.match-row:hover {
  color: inherit;
}

/* === Team Hero === */

.team-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.team-hero-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.team-hero-logo-placeholder {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.team-hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.team-hero-title {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.team-hero-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.team-hero-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* === Section Header === */

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 0 4px;
}

.section-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0;
}

.section-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 100px;
}

/* === Roster Table === */

.roster-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.roster-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.roster-table th {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.roster-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
}

.roster-table tr:last-child td {
  border-bottom: none;
}

.roster-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.rt-jersey {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-tertiary) !important;
}

td.rt-player {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 500;
}

.rt-player-link {
  color: var(--text-primary);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.15s;
}

.rt-player-link:hover {
  text-decoration: underline;
}

.rt-player-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rt-nat {
  font-size: 0.82rem;
  flex-shrink: 0;
}

.rt-pos {
  width: 44px;
  text-align: center;
}

.rt-stat {
  width: 64px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Position badges */
.pos-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.pos-oh { color: #4fc3f7; background: rgba(79, 195, 247, 0.1); }
.pos-op { color: #ef5350; background: rgba(239, 83, 80, 0.1); }
.pos-mb { color: #ffa726; background: rgba(255, 167, 38, 0.1); }
.pos-s  { color: #66bb6a; background: rgba(102, 187, 106, 0.1); }
.pos-l  { color: #ab47bc; background: rgba(171, 71, 188, 0.1); }

/* === Player Detail === */

.player-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.player-hero-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-hero-pos {
  font-size: 0.82rem;
  padding: 4px 10px;
}

.player-hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.player-hero-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.player-hero-team {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.15s;
}

.player-hero-team:hover {
  color: var(--text-primary);
}

.player-hero-team-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.player-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 1rem;
}

.player-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.player-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.player-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
}

.player-info-value {
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-info-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.player-info-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.player-info-link:hover {
  text-decoration: underline;
}

/* === Standings team links === */

.st-team-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.st-team-link:hover {
  text-decoration: underline;
  color: var(--text-primary);
}

/* ============================================
   MOBILE LANDING PAGE — v2
   ============================================ */

.lp-body {
  overflow-x: hidden;
}

/* Nav — minimal, sticky */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(2, 5, 13, 0.8);
  border-bottom: 1px solid var(--divider);
}

.lp-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: #fff !important;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #fff;
  color: #02050D !important;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* Live bar — shown above hero when live matches exist */
.lp-live-bar {
  position: sticky;
  top: 56px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 24px;
  background: rgba(2, 5, 13, 0.8);
  border-bottom: 1px solid var(--divider);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85) !important;
}

.lp-live-bar-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.lp-live-bar-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  font-weight: 700;
  color: #FF0040;
}

.lp-live-bar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #FF0040;
  color: #fff;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
}

.lp-live-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* Main container */
.lp-main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Kicker label — small caps above sections */
.lp-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  text-align: center;
}

/* ---- HERO ---- */
.lp-hero {
  text-align: center;
  padding: 72px 0 0;
}

.lp-hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.lp-hero-accent {
  background: linear-gradient(135deg, #0A0EFF 0%, #FF0040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- PHONE ---- */
.lp-phone-section {
  text-align: center;
  padding: 56px 0 0;
}

.lp-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.lp-phone-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(10, 14, 255, 0.25) 0%, rgba(255, 0, 64, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.lp-phone-img {
  width: 280px;
  max-width: 72vw;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 32px 80px rgba(10, 14, 255, 0.3));
}

/* Download buttons */
.lp-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 340px;
  padding: 18px 30px;
  background: #fff;
  color: #02050D !important;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 9px;
}

.lp-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.12);
  color: #02050D !important;
}

.lp-download-btn:active {
  transform: translateY(0);
}

.lp-download-btn-alt {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  padding: 13px 28px;
}

.lp-download-btn-alt:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary) !important;
  background: transparent;
}

/* When Android is detected, promote it to primary */
.lp-download-btn-primary {
  background: #fff !important;
  color: #02050D !important;
  border: none !important;
  font-size: 1rem !important;
  padding: 16px 28px !important;
}

/* ---- STATEMENT ---- */
.lp-statement {
  padding: 64px 0;
  text-align: center;
}

.lp-statement p {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.lp-live-link-section {
  padding: 0 0 56px;
}

.lp-live-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px;
  background: linear-gradient(135deg, #0A0EFF 0%, #3F3BFF 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 18px 44px rgba(10, 14, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-live-link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(10, 14, 255, 0.45);
}

.lp-live-link-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.lp-live-link-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.lp-live-link-kicker .live-dot {
  background: #FF0040;
  box-shadow: 0 0 0 3px rgba(255, 0, 64, 0.25);
}

.lp-live-link-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-live-link-copy {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.lp-live-link-arrow {
  flex-shrink: 0;
  color: #fff;
  opacity: 0.9;
}

/* ---- NUMBERS ---- */
.lp-numbers {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0 0 64px;
  text-align: center;
}

.lp-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-number-val {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-number-live {
  color: var(--accent-hot);
}

.lp-number-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- FEATURES — typographic, editorial ---- */
.lp-features {
  padding: 0 0 32px;
}

.lp-feat {
  padding: 40px 0;
  border-top: 1px solid var(--divider);
}

.lp-feat:last-child {
  border-bottom: 1px solid var(--divider);
}

.lp-feat h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 12px;
}

.lp-feat p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 320px;
}

/* ---- LEAGUES ---- */
.lp-leagues {
  padding: 48px 0 56px;
  text-align: center;
}

.lp-leagues .lp-kicker {
  margin-bottom: 24px;
}

.lp-leagues-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lp-league-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.lp-league-chip img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
}

.lp-league-chip-glow {
  background: rgba(10, 14, 255, 0.08);
  border-color: rgba(10, 14, 255, 0.2);
  color: #8C9BE7;
  font-weight: 600;
}

.lp-end-shot {
  padding: 20px 0 80px;
  text-align: center;
}

.lp-end-shot .lp-kicker {
  margin-bottom: 28px;
}

.lp-end-shot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.lp-end-shot-wrap::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(10, 14, 255, 0.2) 0%, rgba(255, 0, 64, 0.08) 42%, transparent 72%);
  pointer-events: none;
  filter: blur(4px);
}

.lp-end-shot-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.42));
}

/* ---- FINAL CTA ---- */
.lp-final {
  text-align: center;
  padding: 64px 0 24px;
  border-top: 1px solid var(--divider);
}

.lp-final-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 36px;
}

/* Browse link */
.lp-browse {
  text-align: center;
  padding: 24px 0 0;
}

.lp-browse a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-browse a:hover {
  color: var(--text-primary);
}

/* ---- FOOTER ---- */
.lp-footer {
  text-align: center;
  padding: 32px 24px 40px;
  border-top: 1px solid var(--divider);
  margin-top: 40px;
}

.lp-footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.lp-footer-social a {
  color: var(--text-tertiary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.lp-footer-social a:hover {
  color: var(--text-primary);
}

.lp-footer-copy {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

/* ============================================ */

/* === Scrollbar === */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

/* === Responsive === */

@media (max-width: 575.98px) {
  .content {
    padding: 1rem 0.75rem;
  }

  .match-row {
    padding: 8px 10px;
  }

  .set-scores {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .about-tagline {
    font-size: 1.5rem;
  }

  .about-card {
    border-radius: 16px;
    padding: 1.25rem 1rem 0;
  }

  .about-phones {
    max-height: 400px;
  }

  .about-phone {
    width: 240px;
  }

  a.match-row {
    padding: 8px 10px;
  }

  .md-teams {
    gap: 1rem;
  }

  .md-team-logo {
    width: 40px;
    height: 40px;
  }

  .md-score {
    font-size: 1.75rem;
  }

  .md-sets-team-name {
    max-width: 80px;
    font-size: 0.75rem;
  }

  .team-hero-logo {
    width: 44px;
    height: 44px;
  }

  .team-hero-name {
    font-size: 1.15rem;
  }

  .rt-age {
    display: none;
  }
}
