@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@900&family=Inter:ital,wght@0,500;0,700;0,800;0,900;1,900&display=swap");

:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: #071021;
  --panel-soft: #101820;
  --panel-elevated: rgba(7, 16, 33, 0.88);
  --text: #f7f1ea;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #b2fe3b;
  --brand-strong: #dfff54;
  --brand-soft: rgba(178, 254, 59, 0.14);
  --green: #b2fe3b;
  --blue: #0aadff;
  --warm-white: #f7f1ea;
  --cream: #f7f1ea;
  --success: #b7e3c4;
  --success-bg: rgba(62, 103, 76, 0.25);
  --warning: #e9cf8d;
  --warning-bg: rgba(134, 97, 28, 0.22);
  --danger: #ffb0a9;
  --danger-bg: rgba(133, 52, 45, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1600px;
  --content-max: 1340px;
  --space: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100vw;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  line-height: 1.45;
  letter-spacing: -0.01em;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-filter-open {
  overflow: hidden;
}

body.auth-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 0 auto;
}

.footer-note {
  flex-shrink: 0;
}

.video-background,
.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050507;
  pointer-events: none;
}

.video-background__video,
.bg-slideshow__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.72) saturate(1.02) contrast(1.02);
  transform: scale(1.1);
}

.video-background__video {
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.video-background__video.is-active {
  opacity: 1;
}

.video-background::before,
.video-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-background::before {
  z-index: 1;
  background:
    radial-gradient(circle at 24% 28%, rgba(151, 20, 47, 0.18), transparent 24rem),
    radial-gradient(circle at 78% 34%, rgba(47, 107, 79, 0.12), transparent 22rem);
  mix-blend-mode: screen;
}

.video-background::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.18) 0%, rgba(4, 6, 8, 0.46) 42%, rgba(4, 6, 8, 0.84) 100%),
    radial-gradient(circle at 50% 8%, rgba(202, 255, 27, 0.08), transparent 38%),
    radial-gradient(circle at 14% 18%, rgba(77, 127, 232, 0.12), transparent 26%);
}

.video-background.is-static,
.bg-slideshow.is-static {
  background:
    radial-gradient(circle at 28% 30%, rgba(151, 20, 47, 0.12), transparent 28rem),
    radial-gradient(circle at 78% 36%, rgba(47, 107, 79, 0.08), transparent 24rem),
    linear-gradient(180deg, #111010 0%, #151214 58%, #111010 100%);
}

.bg-slideshow__track {
  position: absolute;
  inset: 0;
}

.bg-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.bg-slideshow__slide.is-active {
  opacity: 1;
}

.bg-slideshow__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.18) 0%, rgba(4, 6, 8, 0.46) 42%, rgba(4, 6, 8, 0.84) 100%),
    radial-gradient(circle at 50% 8%, rgba(202, 255, 27, 0.08), transparent 38%),
    radial-gradient(circle at 14% 18%, rgba(77, 127, 232, 0.12), transparent 26%);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 16px 0 14px;
  position: sticky;
  top: 0;
  z-index: 25;
  background: linear-gradient(180deg, rgba(17, 16, 16, 0.96), rgba(17, 16, 16, 0.72));
  backdrop-filter: blur(14px);
  border-bottom: 0;
  box-shadow: none;
}

.topbar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar__bar--home {
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand--home {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.logo-img {
  display: block;
  width: min(268px, 58vw);
  height: auto;
}

.brand--home .logo-img {
  width: min(292px, 56vw);
}

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

.topbar__nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--text);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.topbar-user:hover,
.topbar-user:focus-visible {
  border-color: rgba(178, 254, 59, 0.42);
  background: rgba(178, 254, 59, 0.08);
  outline: none;
}

.topbar-user__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(178, 254, 59, 0.16);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 900;
}

.topbar-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topbar-user__body {
  display: grid;
  min-width: 0;
}

.topbar-user__body strong,
.topbar-user__body span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-user__body strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.topbar-user__body span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.1;
}

.topbar-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.topbar-link:hover {
  color: var(--text);
}

.topbar-link--outline {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.mobile-menu-button {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--warm-white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.mobile-menu-button span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 140ms ease, width 180ms ease;
}

.mobile-menu-button:hover,
.mobile-menu-button:focus-visible,
.mobile-menu-button.is-open {
  border-color: rgba(178, 254, 59, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: var(--green);
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(84vw, 360px);
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 22px 22px 0;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(178, 254, 59, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 30, 0.985), rgba(6, 8, 13, 0.985) 72%, rgba(10, 11, 13, 0.985));
  box-shadow:
    24px 0 80px rgba(0, 0, 0, 0.54),
    1px 0 0 rgba(178, 254, 59, 0.06);
  transform: translateX(-100%);
  opacity: 0.98;
  backdrop-filter: blur(18px);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 0 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(247, 241, 234, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu__brand {
  min-width: 0;
}

.mobile-menu__brand .logo-img {
  width: min(188px, calc(84vw - 96px));
}

.mobile-menu__close {
  appearance: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--warm-white);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  border-color: rgba(178, 254, 59, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
}

.mobile-menu__nav {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}

.mobile-menu__nav > a,
.mobile-menu__nav > .mobile-menu__link,
.mobile-menu__club-link {
  min-height: 52px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.035);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.mobile-menu__link--button {
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__mode-switch {
  width: calc(100% + 12px);
  margin: 0 0 26px;
  margin-left: -6px;
  margin-right: -6px;
  padding: 6px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.mobile-menu__mode-button {
  appearance: none;
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mobile-menu__mode-button:hover,
.mobile-menu__mode-button:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.mobile-menu__mode-button.is-active {
  color: #121212;
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  border-color: rgba(178, 254, 59, 0.72);
  box-shadow:
    0 0 0 3px rgba(178, 254, 59, 0.18),
    0 12px 26px rgba(178, 254, 59, 0.18);
}

.mobile-menu__nav > a::after,
.mobile-menu__nav > .mobile-menu__link::after,
.mobile-menu__club-link::after {
  content: "›";
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-menu__nav > a:hover,
.mobile-menu__nav > a:focus-visible,
.mobile-menu__nav > a.is-active,
.mobile-menu__nav > .mobile-menu__link:hover,
.mobile-menu__nav > .mobile-menu__link:focus-visible,
.mobile-menu__nav > .mobile-menu__link.is-active,
.mobile-menu__club-link:hover,
.mobile-menu__club-link:focus-visible,
.mobile-menu__club-link.is-active {
  border-color: rgba(178, 254, 59, 0.36);
  background: rgba(178, 254, 59, 0.09);
  box-shadow:
    inset 3px 0 0 rgba(178, 254, 59, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #fff;
  transform: translateX(2px);
}

.mobile-menu__nav > a:active,
.mobile-menu__nav > .mobile-menu__link:active,
.mobile-menu__club-link:active {
  transform: translateX(3px) scale(0.99);
}

.mobile-menu__club-link {
  min-height: 46px;
  margin-top: auto;
  background: transparent;
  color: rgba(247, 241, 234, 0.66);
  font-size: 0.92rem;
  font-weight: 500;
}

.oauth-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.05), transparent 42%),
    rgba(7, 16, 33, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.oauth-card h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.oauth-card__copy {
  display: grid;
  gap: 8px;
}

.oauth-card .small,
.oauth-card .hint {
  margin: 0;
}

.oauth-card .hint {
  grid-column: 1 / -1;
}

.oauth-card__providers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.oauth-provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.oauth-provider-badge--google {
  background: rgba(255, 255, 255, 0.06);
  color: var(--warm-white);
}

.oauth-provider-badge--facebook,
.oauth-provider-badge--meta {
  background: rgba(10, 173, 255, 0.12);
  color: #bfeaff;
}

.oauth-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.oauth-button {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.oauth-button:disabled {
  opacity: 0.46;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(247, 241, 234, 0.58);
  box-shadow: none;
  cursor: not-allowed;
}

.page {
  padding: 22px 0 40px;
}

.hero,
.panel,
.status-card,
.compact-card,
.form-card {
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.035), transparent 42%),
    var(--panel-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 22px;
}

.home-page {
  position: relative;
  isolation: isolate;
}

.home-ambient {
  position: absolute;
  inset: -4px 0 0;
  height: auto;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 16, 0.005) 0%, rgba(17, 16, 16, 0.08) 48%, rgba(17, 16, 16, 0.20) 84%, rgba(17, 16, 16, 0.36) 100%),
    linear-gradient(118deg, rgba(151, 20, 47, 0.06) 0%, transparent 34%),
    linear-gradient(302deg, rgba(47, 107, 79, 0.03) 0%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(247, 241, 234, 0.008) 0 1px, transparent 1px 122px),
    repeating-linear-gradient(0deg, rgba(247, 241, 234, 0.005) 0 1px, transparent 1px 118px);
  opacity: 0.18;
  border-radius: 28px;
  overflow: hidden;
  mix-blend-mode: normal;
}

.home-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding: 28px 0 34px;
  margin-bottom: 22px;
}

.home-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 54rem;
  position: relative;
  z-index: 1;
}

.home-hero .lead {
  max-width: 52ch;
}

.home-eyebrow {
  background: rgba(151, 20, 47, 0.12);
  border: 1px solid rgba(151, 20, 47, 0.28);
  color: #f6d9dc;
}

.home-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-microcopy span {
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.home-microcopy span:last-child {
  border-right: 0;
  padding-right: 0;
}

.home-search {
  position: relative;
  z-index: 1;
  margin-top: 14px;
}

.home-searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 0.78fr) minmax(0, 0.78fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(27, 26, 28, 0.82);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.home-searchbar .field {
  gap: 6px;
}

.home-searchbar__actions {
  display: flex;
  align-items: end;
}

.home-searchbar__submit {
  min-width: 170px;
  justify-content: center;
}

.hero-actions {
  grid-template-columns: 1fr;
}

.hero-actions .btn {
  width: 100%;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Archivo", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  margin: 14px 0 10px;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 56ch;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #dfff54 0%, var(--green) 100%);
  color: #101112;
  box-shadow: 0 14px 30px rgba(178, 254, 59, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #e7ff70 0%, var(--brand-strong) 100%);
}

.btn-secondary {
  background: rgba(26, 26, 28, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-ghost {
  background: rgba(26, 26, 28, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-danger {
  background: var(--danger-bg);
  border-color: rgba(255, 176, 169, 0.34);
  color: var(--danger);
}

.btn-small {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.grid {
  display: grid;
  gap: 18px;
}

.split {
  display: grid;
  gap: 16px;
}

.registration-stack {
  display: grid;
  gap: 16px;
}

.registration-stack > * {
  width: 100%;
}

.registration-page {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-top: clamp(72px, 8vw, 118px);
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 0;
}

.registration-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.registration-hero {
  display: grid;
  gap: 16px;
}

.registration-trust-card,
.missing-page__intro,
.club-entry-login-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.registration-trust-card__list {
  display: grid;
  gap: 8px;
}

.registration-trust-card__list span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 600;
}

.registration-form {
  padding: 18px;
}

.registration-page--edit {
  width: min(100%, 1440px);
}

.registration-page--edit .registration-grid,
.registration-page--edit .auth-shell--registration {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 2fr);
  align-items: start;
}

.registration-page--edit .registration-summary {
  padding: 0;
}

.registration-page--edit .registration-summary,
.registration-page--edit .registration-form {
  width: 100%;
}

.registration-page--edit .registration-hero {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.registration-page--edit .registration-hero .eyebrow,
.registration-page--edit .registration-hero h1,
.registration-page--edit .registration-hero .lead {
  grid-column: 1;
}

.registration-page--edit .registration-hero .eyebrow {
  width: fit-content;
}

.registration-page--edit .registration-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.35vw, 4.8rem);
  line-height: 0.96;
}

.registration-page--edit .registration-hero .lead {
  max-width: 72ch;
}

.registration-requirements {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.registration-page--edit .registration-requirements {
  grid-column: 1;
  grid-row: auto;
  align-self: start;
}

.registration-requirement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 750;
}

.registration-requirement__icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.registration-requirement.is-complete .registration-requirement__icon {
  border-color: rgba(178, 254, 59, 0.7);
  background: rgba(178, 254, 59, 0.16);
  color: var(--brand);
}

.registration-requirement__note {
  display: inline;
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.registration-page--edit .confirmations-grid .radio span {
  height: 100%;
}

.registration-page--edit .registration-details-grid > .field:nth-last-child(-n + 2) {
  grid-column: 1 / -1;
}

.registration-page--edit .mixed-events-field {
  grid-column: 1 / -1;
}

.mixed-events-field {
  overflow: hidden;
  max-height: 130px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mixed-events-field.is-collapsed {
  max-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.registration-page--edit .availability-grid .chips {
  gap: 6px;
}

.registration-page--edit .availability-grid .chip span {
  padding: 9px 10px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.verification-page {
  width: min(100%, 760px);
  margin: 0 auto;
}

.verification-page .hero {
  padding: 18px;
}

.verification-page .hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 0.98;
}

.verification-panel {
  padding: 18px;
}

.verification-page .input {
  min-height: 52px;
}

.verification-page .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.verification-status-list {
  margin-top: 12px;
}

.verification-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.section {
  padding: 0;
}

.section + .section {
  margin-top: 43px;
}

.home-page .section + .section {
  margin-top: 56px;
}

.section h2,
.section h3 {
  margin-bottom: 8px;
}

.section-heading-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.section-heading-inline h2 {
  margin-bottom: 0;
}

.section-heading-inline small {
  margin-top: 0;
  font-weight: 500;
  font-size: 0.94rem;
  line-height: 1.25;
}

.section-heading-inline--tight {
  gap: 6px;
}

.section-heading-inline--tight small {
  font-size: 0.92rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.how-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.how-card__step {
  width: fit-content;
  min-width: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(151, 20, 47, 0.14);
  color: #f3d8dc;
  font-weight: 700;
  font-size: 0.84rem;
}

.how-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.how-card p {
  margin: 0;
  color: var(--muted);
}

.club-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(151, 20, 47, 0.14), rgba(27, 26, 28, 0.88));
  border: 1px solid rgba(151, 20, 47, 0.24);
  box-shadow: var(--shadow);
}

.club-promo__copy p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.club-promo__cta {
  align-self: center;
}

.hero-actions--wide {
  max-width: 100%;
}

.club-entry-grid,
.club-form-layout,
.dashboard-grid,
.club-public-hero {
  display: grid;
  gap: 18px;
}

.club-entry-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.club-entry-hero,
.club-public-url-card,
.club-summary-card,
.club-pick-card,
.club-facility-card,
.club-schedule-card,
.club-price-card,
.club-preview-mini,
.dashboard-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.club-entry-hero {
  padding: 28px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(151, 20, 47, 0.12), rgba(27, 26, 28, 0.96)),
    radial-gradient(circle at 88% 16%, rgba(47, 107, 79, 0.12), transparent 18rem);
}

.club-entry-hero h1 {
  max-width: 12ch;
}

.club-entry-side {
  display: grid;
  gap: 14px;
}

.club-entry-login-card h3,
.missing-page__intro h2 {
  margin-bottom: 0;
}

.club-public-url-card,
.club-summary-card,
.club-preview-mini {
  padding: 18px;
}

.club-public-url-card__url {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(151, 20, 47, 0.24);
  border-radius: 14px;
  background: rgba(151, 20, 47, 0.08);
  color: #f2dfe2;
  font-weight: 600;
  word-break: break-word;
}

.club-public-url-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.club-pick-grid,
.club-facility-grid,
.club-schedule-grid,
.club-price-grid {
  display: grid;
  gap: 14px;
}

.club-pick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.club-pick-card {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.club-pick-card--event {
  gap: 12px;
}

.club-pick-card.featured {
  background:
    linear-gradient(135deg, rgba(151, 20, 47, 0.14), rgba(27, 26, 28, 0.96)),
    var(--panel);
}

.club-pick-card__head,
.dashboard-url-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.club-pick-card__head p,
.club-schedule-card p,
.club-facility-card p {
  margin: 0;
  color: var(--muted);
}

.club-pick-card__eyebrow,
.club-summary-card__eyebrow,
.club-preview-mini__label,
.dashboard-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(151, 20, 47, 0.12);
  color: #f4d9dd;
  font-size: 0.82rem;
  font-weight: 700;
}

.club-facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.club-schedule-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.club-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.club-facility-card,
.club-schedule-card,
.club-price-card,
.club-preview-mini {
  padding: 18px;
}

.club-facility-card h3,
.club-schedule-card h3,
.club-price-card strong,
.club-pick-card h3 {
  margin: 8px 0 6px;
}

.club-facility-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.club-facility-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 14px 0 0;
}

.club-facility-meta div {
  display: grid;
  gap: 2px;
}

.club-facility-meta dt,
.club-facility-meta dd {
  margin: 0;
  font-size: 0.88rem;
}

.club-facility-meta dt {
  color: var(--muted);
}

.club-price-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.club-price-card__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.club-price-card__prices span {
  display: grid;
  gap: 4px;
}

.club-price-card__prices small {
  font-size: 0.8rem;
}

.club-price-card__prices strong {
  font-size: 1rem;
}

.club-public {
  display: grid;
  gap: 24px;
}

.club-public-hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: stretch;
}

.club-public-hero__copy,
.club-public-hero__panel {
  display: grid;
  gap: 14px;
}

.club-media-card {
  overflow: hidden;
  min-height: 200px;
  border-radius: 18px;
  border: 1px solid rgba(151, 20, 47, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(151, 20, 47, 0.28), transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(47, 107, 79, 0.20), transparent 38%),
    linear-gradient(160deg, #252126, #171518 72%);
}

.club-media-card__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.club-media-card__placeholder {
  min-height: 200px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: var(--warm-white);
}

.club-media-card__placeholder span {
  color: #f4d9dd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.club-media-card__placeholder strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.club-media-card__placeholder small {
  color: rgba(247, 241, 234, 0.82);
}

.club-gallery-card {
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(151, 20, 47, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.club-gallery-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.club-gallery-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.club-public__location,
.club-summary-card__meta {
  display: grid;
  gap: 8px;
}

.club-public__location strong {
  font-size: 1.02rem;
}

.club-public__sports {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(151, 20, 47, 0.12);
  border: 1px solid rgba(151, 20, 47, 0.22);
  color: #f4d9dd;
  font-size: 0.86rem;
  font-weight: 700;
}

.club-summary-card__meta div,
.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.club-summary-card__meta div:last-child {
  border-bottom: 0;
}

.club-summary-card__meta dt {
  color: var(--muted);
}

.club-summary-card__meta dd {
  margin: 0;
  font-weight: 700;
}

.club-form-layout {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
  align-items: start;
}

.club-form-card {
  display: grid;
  gap: 18px;
}

.club-public-name-grid {
  display: grid;
  align-items: end;
  gap: 16px;
}

.club-public-url-preview {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(178, 254, 59, 0.24);
  border-radius: 14px;
  background: rgba(178, 254, 59, 0.07);
}

.club-public-url-preview span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.club-public-url-preview strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.club-form-card .input,
.club-form-card .select {
  height: 56px;
  min-height: 56px;
}

.club-form-card .phone-country-button {
  height: 56px;
  min-height: 56px;
  border-radius: 18px;
}

.club-province-postal-grid {
  display: grid;
  grid-template-columns: minmax(112px, 0.5fr) minmax(0, 1fr);
  gap: 12px;
}

.club-field-help {
  margin-top: -4px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.club-file-field {
  align-content: start;
}

.club-file-field .field-title-inline {
  display: grid;
  gap: 6px;
}

.club-file-field .field-title-inline small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.club-file-picker {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 15px;
  border: 1px dashed rgba(178, 254, 59, 0.36);
  border-radius: 18px;
  background: rgba(7, 16, 33, 0.74);
  cursor: pointer;
}

.club-file-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.club-file-picker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(178, 254, 59, 0.14);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 900;
}

.club-file-picker strong,
.club-file-list {
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.club-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club-file-list span {
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-form-preview {
  display: grid;
  gap: 14px;
  align-content: start;
}

.dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.dashboard-card--hero,
.dashboard-card--wide {
  grid-column: 1 / -1;
}

.dashboard-card--hero {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(151, 20, 47, 0.14), rgba(27, 26, 28, 0.96)),
    var(--panel);
}

.dashboard-progress {
  display: grid;
  gap: 8px;
}

.dashboard-progress__bar {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #16181d;
  border: 1px solid var(--line);
}

.dashboard-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
}

.dashboard-url-row {
  align-items: center;
  flex-wrap: wrap;
}

.section p.small,
.hint {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-card {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-error {
  color: #ffb4b4;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.field-title {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.club-sports-grid {
  display: grid;
  gap: 8px;
}

.club-sport-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.club-sport-card__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  font-weight: 900;
  cursor: pointer;
}

.club-sport-card__toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.club-sport-card__details {
  display: none;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.club-sport-card.is-active .club-sport-card__details {
  display: flex;
}

.club-sport-card__courts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.club-sport-card__courts .input {
  width: 82px;
  min-height: 38px;
  padding: 8px 10px;
}

.club-sport-card__formats {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.club-sport-card__formats > span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.club-sport-card__chips {
  gap: 6px;
}

.club-sport-card__chips .chip span {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.84rem;
}

.club-sport-card__court-list {
  display: grid;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.club-sport-court-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.club-sport-court-row > span {
  flex: 0 0 72px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.club-court-builder {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.club-courts-help {
  margin: -4px 0 2px;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.club-court-builder__stock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.club-court-type {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #20222a;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.1;
}

.club-court-type:hover,
.club-court-type:focus-visible {
  border-color: rgba(178, 254, 59, 0.62);
  background: rgba(178, 254, 59, 0.12);
  outline: none;
}

.club-court-builder__lineup {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.club-court-builder__lineup h3 {
  margin: 0;
  font-size: 1rem;
}

.club-court-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.club-court-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.club-court-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #20222a;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.1;
}

.club-court-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.club-court-item strong {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.club-court-item:hover,
.club-court-item:focus-visible {
  border-color: rgba(178, 254, 59, 0.62);
  background: rgba(178, 254, 59, 0.12);
  outline: none;
}

.club-court-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.club-court-summary strong,
.club-court-summary span {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.club-court-summary strong {
  background: rgba(178, 254, 59, 0.14);
  color: var(--brand);
}

@media (max-width: 760px) {
  .app-shell--home2 .page--home2 > .club-form-page {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .club-form-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .phone-input-group {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .club-province-postal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .club-form-card .field-title-inline {
    display: grid;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .club-form-card .field-title-inline small {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .club-sport-card {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .club-sport-card__toggle {
    min-width: 0;
  }

  .club-sport-card.is-active .club-sport-card__details,
  .club-sport-card__formats,
  .club-sport-court-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .club-sport-court-row > span {
    flex-basis: auto;
  }

  .club-sport-card__courts .input {
    width: 92px;
  }

  .club-court-builder__stock {
    display: grid;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 72px);
  }

  .club-court-type {
    width: 100%;
    text-align: left;
    white-space: normal;
  }

  .club-court-item {
    width: fit-content;
    max-width: 100%;
  }

  .club-courts-help,
  .club-court-builder,
  .club-court-builder__lineup {
    max-width: calc(100vw - 72px);
  }

  .club-courts-help span {
    display: block;
  }
}

.location-section {
  display: grid;
  gap: 14px;
}

.location-card,
.location-choice,
.location-manual-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.location-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.location-card__status {
  display: grid;
  gap: 3px;
}

.location-card__status span,
.location-choice p {
  margin: 0;
  color: var(--muted);
}

.location-choice h3 {
  margin: 0 0 4px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-zone-multiselect {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.registration-field--col1 {
  grid-column: 1;
}

.active-zone-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 12px auto 0;
}

.active-zone-block__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.active-zone-block__copy strong {
  color: var(--green);
}

.active-zone-block__change {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}

.active-zone-block__change:hover,
.active-zone-block__change:focus {
  text-decoration: underline;
  outline: none;
}

.active-zone-block__selector {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 8px;
  align-items: start;
  width: min(100%, 500px);
}

.active-zone-block__selector[hidden] {
  display: none !important;
}

.autocomplete {
  width: 100%;
  position: relative;
  display: grid;
  gap: 8px;
}

.autocomplete-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #16181d;
  max-height: 220px;
  overflow: auto;
  overflow-x: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  scrollbar-color: #4f5563 #17191f;
  scrollbar-width: thin;
}

.autocomplete-menu[hidden] {
  display: none !important;
}

.autocomplete-menu::-webkit-scrollbar {
  width: 10px;
}

.autocomplete-menu::-webkit-scrollbar-track {
  background: #17191f;
  border-radius: 999px;
}

.autocomplete-menu::-webkit-scrollbar-thumb {
  background: #4f5563;
  border-radius: 999px;
  border: 2px solid #17191f;
}

.autocomplete-menu::-webkit-scrollbar-thumb:hover {
  background: #666d7b;
}

.autocomplete-item {
  width: 100%;
  border: 1px solid transparent;
  background: #20222a;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
  display: grid;
  gap: 2px;
  cursor: pointer;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
  outline: none;
  border-color: rgba(178, 254, 59, 0.62);
  background: rgba(178, 254, 59, 0.12);
}

.autocomplete-item small {
  color: var(--muted);
  font-size: 0.8rem;
}

.autocomplete-empty {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 10px 12px;
}

.address-autocomplete-menu {
  z-index: 35;
}

.mobility-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.mobility-row .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.mobility-row .radio span {
  text-align: left;
  padding: 12px 14px;
  width: fit-content;
}

.field label,
.legend {
  font-weight: 700;
  font-size: 0.96rem;
}

.field-title-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.field-title-inline small {
  font-weight: 500;
  font-size: 0.94rem;
  line-height: 1.25;
}

.field small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.25;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 15px;
  background: rgba(7, 16, 33, 0.8);
  color: var(--text);
}

.select {
  padding-right: 44px;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: 3px solid rgba(178, 254, 59, 0.16);
  border-color: rgba(178, 254, 59, 0.72);
}

.phone-input-group {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
}

.phone-country-picker {
  position: relative;
  min-width: 0;
}

.phone-country-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 54px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #09101d;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  line-height: 1;
  position: relative;
}

.phone-country-button::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.phone-country-button[aria-expanded="true"] {
  border-color: rgba(178, 254, 59, 0.72);
  box-shadow: 0 0 0 3px rgba(178, 254, 59, 0.16);
}

.phone-country-button span {
  font-size: 1rem;
  line-height: 1;
}

.phone-country-button strong {
  font-weight: 650;
}

.phone-country-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  width: min(280px, 84vw);
  max-height: 286px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #121a28;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.phone-country-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 8px 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.phone-country-option:hover,
.phone-country-option[aria-selected="true"] {
  background: rgba(178, 254, 59, 0.13);
}

.phone-country-option strong {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-option em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.textarea {
  min-height: 100px;
  resize: vertical;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.club-service-chips {
  gap: 7px;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.club-service-chips .chip {
  max-width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

.home-filter-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin: 18px 0 22px;
}

.home-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-filter-group--sport {
  flex: 1 1 auto;
}

.home-filter-group--day {
  margin-left: auto;
  justify-content: flex-end;
}

.filter-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: #20222a;
  color: var(--text);
  border-radius: 14px;
  padding: 11px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.filter-chip.active {
  background: rgba(178, 254, 59, 0.16);
  border-color: rgba(178, 254, 59, 0.62);
  color: var(--brand);
}

.opportunity-grid {
  display: grid;
  gap: 14px;
}

.opportunity-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.opportunity-card:hover {
  transform: translateY(-2px);
  background: #242124;
  border-color: rgba(151, 20, 47, 0.22);
}

.opportunity-card__head {
  display: grid;
  gap: 10px;
}

.opportunity-card__titles {
  display: grid;
  gap: 6px;
}

.opportunity-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.opportunity-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.opportunity-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.opportunity-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  justify-self: start;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(151, 20, 47, 0.14);
  color: #f4d9dd;
  font-weight: 700;
  font-size: 0.9rem;
}

.opportunity-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.opportunity-meta > div {
  display: grid;
  gap: 4px;
}

.opportunity-meta__label {
  color: var(--muted);
  font-size: 0.84rem;
}

.opportunity-meta strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.opportunity-actions .btn {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
}

.opportunity-actions {
  display: flex;
  justify-content: flex-end;
}

.empty-state {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.empty-state h3 {
  margin: 0;
  font-size: 1.02rem;
}

.sports-selector {
  gap: 18px;
  margin-top: 14px;
}

.sports-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-color: #4f5563 #17191f;
  scrollbar-width: thin;
}

.sports-row::-webkit-scrollbar {
  height: 10px;
}

.sports-row::-webkit-scrollbar-track {
  background: #17191f;
  border-radius: 999px;
}

.sports-row::-webkit-scrollbar-thumb {
  background: #4f5563;
  border-radius: 999px;
  border: 2px solid #17191f;
}

.sport-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: #20222a;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 700;
  flex: 0 0 auto;
}

.sport-chip.selected {
  border-color: rgba(178, 254, 59, 0.62);
  background: rgba(178, 254, 59, 0.16);
  color: var(--brand);
}

.sport-chip.active {
  box-shadow: 0 0 0 2px rgba(178, 254, 59, 0.18) inset;
}

.sport-chip:focus-visible {
  outline: 3px solid rgba(178, 254, 59, 0.2);
  outline-offset: 3px;
}

.sport-panel {
  display: grid;
  gap: 14px;
  overflow: hidden;
  animation: sport-panel-reveal 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.sport-panel.is-closing {
  animation: sport-panel-collapse 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  pointer-events: none;
}

.radio-grid.sport-level-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-color: #4f5563 #17191f;
  scrollbar-width: thin;
}

.radio-grid.goalkeeper-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-color: #4f5563 #17191f;
  scrollbar-width: thin;
}

.radio-grid.sport-level-grid .radio span,
.radio-grid.goalkeeper-grid .radio span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 14px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.2;
  width: fit-content;
}

.radio-grid.sport-level-grid .radio,
.radio-grid.goalkeeper-grid .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.sport-card__goalkeeper {
  display: grid;
  gap: 8px;
}

.chip {
  position: relative;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #20222a;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.chip input:checked + span {
  background: rgba(178, 254, 59, 0.16);
  border-color: rgba(178, 254, 59, 0.62);
  color: var(--brand);
}

.club-service-chips .chip span {
  display: inline-block;
  min-height: 34px;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.12;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
}

.club-service-chips .chip input:checked + span {
  background: rgba(178, 254, 59, 0.18);
  border-color: rgba(178, 254, 59, 0.72);
  color: var(--brand);
}

@media (max-width: 760px) {
  .club-service-chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .club-service-chips .chip span {
    display: inline-block;
    width: fit-content;
  }

  .club-form-card .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .club-form-card .form-actions .btn {
    width: 100%;
  }
}

.radio-grid {
  display: grid;
  gap: 10px;
}

.radio-grid.age-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding-bottom: 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.radio-grid.age-row .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.radio-grid.age-row .radio span {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.2;
  width: fit-content;
}

.radio-grid.gender-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding-bottom: 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.radio-grid.gender-row .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.radio-grid.gender-row .radio span {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.2;
  width: fit-content;
}

.radio-grid.mixed-events-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding-bottom: 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.radio-grid.mixed-events-row .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.radio-grid.mixed-events-row .radio span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.2;
  width: fit-content;
}

.radio-grid.mobility-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  justify-content: flex-start;
  align-items: flex-start;
}

.radio-grid.mobility-row .radio {
  flex: 0 0 auto;
  min-width: 0;
}

.radio-grid.mobility-row .radio span {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.2;
  width: fit-content;
}

.radio {
  position: relative;
}

.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio span {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #20222a;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

.radio input:checked + span {
  border-color: rgba(178, 254, 59, 0.62);
  background: rgba(178, 254, 59, 0.14);
}

.stack {
  display: grid;
  gap: 14px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.account-danger-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  padding: 14px 15px;
  border-radius: 14px;
  background: var(--panel-soft);
  color: var(--text);
}

.notice.success {
  background: var(--success-bg);
  color: var(--success);
}

.notice.warning {
  background: var(--warning-bg);
  color: var(--warning);
}

.notice.error {
  background: var(--danger-bg);
  color: var(--danger);
}

.hidden {
  display: none !important;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.status-pill.pending {
  background: var(--warning-bg);
  color: #f5ddb0;
}

.status-pill.active {
  background: var(--success-bg);
  color: #b7f0ca;
}

.status-pill.suspended {
  background: var(--danger-bg);
  color: #ffbbb5;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.meta-list div:last-child {
  border-bottom: 0;
}

.meta-list dt {
  color: var(--muted);
}

.meta-list dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.footer-note {
  padding: 18px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note__inner a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-note__inner a:hover,
.footer-note__inner a:focus-visible {
  color: var(--text);
}

small,
.small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.25;
}

.debug-box {
  border: 1px dashed rgba(151, 20, 47, 0.38);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(151, 20, 47, 0.08);
  color: var(--text);
  margin-top: 18px;
}

@media (min-width: 760px) {
  .hero {
    padding: 30px;
  }

  .home-hero {
    padding: 32px 0 36px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .club-entry-grid,
  .club-form-layout,
  .club-public-hero {
    gap: 20px;
  }

  .club-pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-facility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .club-schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .club-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-card--hero,
  .dashboard-card--wide {
    grid-column: 1 / -1;
  }

  .club-public-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  }

  .club-form-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 2fr);
  }

  .club-form-preview {
    order: -1;
  }

  .club-public-name-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    align-items: end;
  }

  .home-searchbar {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr) minmax(0, 0.72fr) minmax(0, 0.72fr) auto;
  }

  .opportunity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    gap: 16px;
  }

  .opportunity-card__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .opportunity-price {
    justify-self: end;
  }

  .actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid.cols-2.availability-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.65fr);
  }

  .form-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .radio-grid.mobility-row {
    overflow-x: visible;
  }

  .radio-grid.mobility-row .radio {
    min-width: 0;
  }

  .sport-panel.has-goalkeeper {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
  }

  .sport-panel.has-goalkeeper .sport-card__goalkeeper {
    padding-top: 0;
  }

  .radio-grid.sport-level-grid {
    gap: 8px;
  }

  .radio-grid.goalkeeper-grid {
    gap: 8px;
  }
}

@media (max-width: 759px) {
  .topbar__bar {
    align-items: flex-start;
  }

  .topbar__bar--home {
    align-items: flex-start;
    gap: 14px;
  }

  .topbar__nav {
    justify-content: flex-start;
    margin-left: 0;
  }

  .brand--home .logo-img,
  .logo-img {
    width: min(220px, 70vw);
  }

  .home-ambient {
    height: 100%;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0 8px;
  }

  .home-searchbar {
    grid-template-columns: 1fr;
  }

  .home-searchbar__actions {
    justify-content: stretch;
  }

  .home-searchbar__submit {
    width: 100%;
    min-width: 0;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .club-promo {
    grid-template-columns: 1fr;
  }

  .home-filter-bar {
    flex-direction: column;
    gap: 14px;
  }

  .home-filter-group--day {
    margin-left: 0;
    justify-content: flex-start;
  }

  .topbar-link {
    margin-top: 4px;
  }

  .sports-row,
  .radio-grid.age-row,
  .radio-grid.gender-row,
  .radio-grid.mixed-events-row,
  .radio-grid.mobility-row,
  .radio-grid.sport-level-grid,
  .radio-grid.goalkeeper-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .sports-row::-webkit-scrollbar,
  .radio-grid.age-row::-webkit-scrollbar,
  .radio-grid.gender-row::-webkit-scrollbar,
  .radio-grid.mixed-events-row::-webkit-scrollbar,
  .radio-grid.mobility-row::-webkit-scrollbar,
  .radio-grid.sport-level-grid::-webkit-scrollbar,
  .radio-grid.goalkeeper-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .sports-selector {
    gap: 14px;
  }

  .sport-panel {
    gap: 12px;
  }

  .sport-level-grid .radio,
  .goalkeeper-grid .radio {
    flex: 0 0 auto;
  }

  .radio-grid.age-row .radio,
  .radio-grid.gender-row .radio,
  .radio-grid.mixed-events-row .radio,
  .radio-grid.mobility-row .radio {
    flex: 0 0 auto;
  }

  .section + .section {
    margin-top: 38px;
  }

  .home-page .section + .section {
    margin-top: 42px;
  }

  .opportunity-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    padding-inline: 16px;
  }

  .club-entry-grid,
  .club-public-hero,
  .club-form-layout {
    grid-template-columns: 1fr;
  }

  .club-pick-grid,
  .club-facility-grid,
  .club-schedule-grid,
  .club-price-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .club-pick-card__head,
  .dashboard-url-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes sport-panel-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 700px;
  }
}

@keyframes sport-panel-collapse {
  from {
    opacity: 1;
    transform: translateY(0);
    max-height: 700px;
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
}

.page--home2 {
  padding-top: 0;
  overflow-x: clip;
  background: transparent;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page--home2 .container {
  width: min(1340px, calc(100% - 40px));
}

.page--home2 .footer-note {
  opacity: 0.72;
}

.page--home2 .footer-note__inner {
  padding-top: 6px;
}

.app-shell--home2 .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  background: rgba(5, 6, 7, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: none;
  overflow: hidden;
}

.app-shell--home2 .page--home2 {
  padding-top: 70px;
}

.app-shell--home2 .page--home2 > .section:not(.home-page),
.app-shell--home2 .page--home2 > .match-listing-page,
.app-shell--home2 .page--home2 > .detail-page,
.app-shell--home2 .page--home2 > .missing-page,
.app-shell--home2 .page--home2 > .confirmation-page {
  width: min(var(--content-max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.app-shell--home2 .topbar > .container {
  width: min(var(--content-max), calc(100% - 40px));
  overflow: hidden;
}

.app-shell--home2 .topbar__bar--home2 {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: normal;
  width: 100%;
  gap: 18px;
}

.app-shell--home2 .topbar__nav--home2 {
  justify-content: center;
  gap: 30px;
  margin-left: 0;
  flex-wrap: nowrap;
}

.app-shell--home2 .topbar__nav--home2 a {
  color: rgba(247, 241, 234, 0.72);
  font-size: 0.93rem;
  font-weight: 800;
}

.app-shell--home2 .topbar__nav--home2 a:first-child {
  color: #fff;
}

.app-shell--home2 .topbar__nav--home2 a:hover,
.app-shell--home2 .topbar__nav--home2 a:focus-visible {
  color: #fff;
}

.app-shell--home2 .topbar__actions--home2 {
  margin-left: 0;
  justify-content: flex-end;
  gap: 10px;
}

.app-shell--home2 .topbar-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px !important;
  min-height: 34px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.app-shell--home2 .topbar-button:hover,
.app-shell--home2 .topbar-button:focus-visible {
  transform: translateY(-1px);
}

.app-shell--home2 .topbar-button--lime {
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%) !important;
  color: #101112 !important;
  border-color: rgba(178, 254, 59, 0.35) !important;
  box-shadow: 0 10px 18px rgba(178, 254, 59, 0.18) !important;
}

.app-shell--home2 .topbar-button--lime:hover,
.app-shell--home2 .topbar-button--lime:focus-visible {
  color: #101112;
}

.app-shell--home2 .topbar-button--dark {
  background: rgba(5, 5, 6, 0.92);
  border-color: rgba(255, 255, 255, 0.32);
  color: rgba(247, 241, 234, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-shell--home2 .topbar-button--dark:hover,
.app-shell--home2 .topbar-button--dark:focus-visible {
  border-color: rgba(178, 254, 59, 0.42);
  color: #fff;
}

.page--home2 .topbar-link--lime {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d3ff3f 0%, var(--green) 100%);
  color: #101112;
  border: 1px solid rgba(178, 254, 59, 0.4);
  box-shadow: 0 10px 18px rgba(178, 254, 59, 0.16);
}

.app-shell--home2 .brand--home .logo-img {
  width: min(304px, 30vw);
}

.app-shell--home2 .footer-note {
  padding: 18px 0 24px;
  font-size: 0.86rem;
}

.app-shell--home2 .footer-note > .container {
  width: min(1340px, calc(100% - 40px));
}

.app-shell--home2 .footer-note__inner {
  justify-content: space-between;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-note__links a {
  color: rgba(247, 241, 234, 0.66);
  font-weight: 800;
  text-decoration: none;
}

.footer-note__links a:hover,
.footer-note__links a:focus-visible {
  color: var(--green);
}

.page--home2 .topbar-link--lime:hover,
.page--home2 .topbar-link--lime:focus-visible {
  color: #101112;
}

.page--home2 .home-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  overflow-x: hidden;
}

.page--home2 .home-page__content {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.page--home2 .home-page::before {
  content: none;
}

.page--home2 .home-hero,
.page--home2 .home-matches,
.page--home2 .home-banners,
.page--home2 .home-sports {
  position: relative;
  z-index: 1;
}

.page--home2 .home-hero {
  min-height: clamp(580px, 72svh, 780px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 0 94px;
}

.page--home2 .home-hero__copy {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.page--home2 .home-hero__title {
  font-family: "Archivo", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  max-width: 100%;
  font-size: clamp(3.05rem, 4.65vw, 4.85rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.page--home2 .home-hero__title span {
  display: block;
  white-space: nowrap;
}

.page--home2 .home-hero__title-accent {
  color: var(--green);
  font-style: italic;
  letter-spacing: -0.075em;
}

.page--home2 .home-hero__lede {
  margin: 6px 0 0;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 500;
}

.page--home2 .home-hero__lede span {
  display: block;
}

.page--home2 .home-hero__mode-switch {
  margin-top: 30px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
  scroll-margin-top: 82px;
}

.page--home2 .home-hero__scroll {
  appearance: none;
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(7, 8, 10, 0.58);
  color: var(--green);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  animation: homeScrollCue 1800ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.page--home2 .home-hero__scroll:hover,
.page--home2 .home-hero__scroll:focus-visible {
  border-color: rgba(178, 254, 59, 0.5);
  background: rgba(178, 254, 59, 0.1);
}

.page--home2 .home-hero__scroll span {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

@keyframes homeScrollCue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 5px);
  }
}

.page--home2 .home-mode-switch {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 33, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.page--home2 .home-mode-switch__button {
  appearance: none;
  min-width: 172px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 28, 0.9);
  color: rgba(247, 241, 234, 0.72);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.page--home2 .home-mode-switch__button:hover,
.page--home2 .home-mode-switch__button:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.page--home2 .home-mode-switch__button.is-active {
  color: #121212;
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  border-color: rgba(178, 254, 59, 0.72);
  box-shadow:
    0 0 0 3px rgba(178, 254, 59, 0.18),
    0 12px 26px rgba(178, 254, 59, 0.18);
}

.page--home2 .home-sport-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px;
  border: 1px solid rgba(178, 254, 59, 0.95);
  border-radius: 999px;
  background: rgba(17, 16, 16, 0.34);
  backdrop-filter: blur(10px);
}

.page--home2 .home-sport-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1a1c;
  color: #fff;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 22px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.page--home2 .home-sport-pill:hover,
.page--home2 .home-sport-pill:focus-visible {
  transform: translateY(-1px);
}

.page--home2 .home-sport-pill.is-active {
  color: #fff;
  background: linear-gradient(180deg, #2aa9ff 0%, #0aadff 100%);
  border-color: rgba(10, 173, 255, 0.95);
}

.page--home2 .home-sport-pill__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: none;
  color: currentColor;
}

.page--home2 .home-sport-pill__icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.page--home2 .home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
  text-align: center;
}

.page--home2 .home-section-head__copy {
  width: 100%;
}

.page--home2 .home-section-head__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.page--home2 .home-section-head__copy p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.page--home2 .home-section-head--compact {
  margin-top: 0;
}

.page--home2 .home-day-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.page--home2 .home-day-tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1a1c;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  min-height: 32px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.84rem;
}

.page--home2 .home-day-tab.is-active {
  color: #101112;
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  border-color: rgba(178, 254, 59, 0.95);
}

.page--home2 .home-matches {
  margin-top: 0;
  scroll-margin-top: 76px;
}

.page--home2 .home-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.page--home2 .home-filter-panel {
  display: none;
}

.page--home2 .home-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.page--home2 .home-filter-group--sports {
  justify-content: flex-start;
  min-width: 0;
}

.page--home2 .home-filter-group--days {
  justify-content: flex-end;
}

.page--home2 .home-filter-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 28, 0.92);
  color: rgba(247, 241, 234, 0.68);
  border-radius: 999px;
  min-height: 30px;
  padding: 0 12px;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.page--home2 .home-filter-group--sports .home-filter-pill {
  flex: 0 1 auto;
}

.page--home2 .home-filter-pill.is-active {
  color: #101112;
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  border-color: rgba(178, 254, 59, 0.95);
}

.page--home2 .home-filter-pill__icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  flex: none;
}

.page--home2 .home-filter-pill__icon img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.page--home2 .home-match-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

@keyframes homeDataIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page--home2 .home-match-card,
.page--home2 .home-player-card {
  animation: homeDataIn 320ms ease both;
  animation-delay: var(--card-delay, 0s);
}

.page--home2 .home-match-card {
  --match-accent: var(--green);
  --match-surface: #0e2143;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 0 10px;
  min-height: 171px;
  padding: 16px 18px 14px;
  border-radius: 15px;
  border: 0.5px solid #071021;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--match-accent) 7%, transparent), transparent 42%),
    var(--match-surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.page--home2 .home-page--sport-card-theme .home-match-card {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--match-accent) 12%, transparent), transparent 38%),
    var(--match-surface);
}

.color-proof-page {
  padding-bottom: 48px;
}

.page--home2 .home-match-card__top {
  grid-column: 1 / -1;
  display: block;
}

.page--home2 .home-match-card__sport {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  max-width: 100%;
  padding: 6px 10px 6px 7px;
  border-radius: 999px;
  background: #071021;
  color: var(--match-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.page--home2 .home-match-card__sport-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--match-accent);
  flex: none;
}

.page--home2 .home-match-card__sport-icon img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.page--home2 .home-match-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--match-accent, var(--green));
  box-shadow: 0 0 0 4px rgba(178, 254, 59, 0.12);
  flex: none;
}

.page--home2 .home-match-card__zone {
  display: none;
}

.page--home2 .home-match-card__body {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
  align-items: start;
  gap: 12px;
  padding-top: 12px;
}

.page--home2 .home-match-card__when {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.page--home2 .home-match-card__day {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.page--home2 .home-match-card__time {
  color: #fff;
  font-size: 32px;
  line-height: 25px;
  font-weight: 900;
}

.page--home2 .home-match-card__venue {
  color: #b4b4b4;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page--home2 .home-match-card__need {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.25;
  padding-top: 1px;
  white-space: nowrap;
}

.page--home2 .home-match-card__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  align-self: end;
}

.page--home2 .home-match-card__share-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page--home2 .home-match-card__share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 33, 0.44);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.page--home2 .home-match-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid rgba(178, 254, 59, 0.95);
  background: #09332f;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.page--home2 .home-match-card__link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.page--home2 .home-sport-icon-fallback {
  display: inline-grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 999px;
  background: currentColor;
  color: #071021;
  font-size: 0.7em;
  font-weight: 900;
}

.match-listing-page,
.detail-page,
.missing-page,
.registration-page,
.confirmation-page {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-top: clamp(96px, 12vw, 150px);
}

.app-shell--home2 .match-listing-page,
.app-shell--home2 .detail-page,
.app-shell--home2 .missing-page,
.app-shell--home2 .registration-page,
.app-shell--home2 .confirmation-page,
.app-shell--home2 .club-entry-grid,
.app-shell--home2 .club-pick-grid,
.app-shell--home2 .club-public-hero,
.app-shell--home2 .opportunity-grid,
.app-shell--home2 .club-facility-grid,
.app-shell--home2 .club-schedule-grid,
.app-shell--home2 .club-price-grid {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.match-listing-head {
  display: grid;
  justify-items: center;
  text-align: center;
  align-items: center;
}

.match-listing-switch {
  margin: 0 auto 28px;
}

.match-listing-switch .home-mode-switch__button {
  text-decoration: none;
}

.match-listing-head h1,
.detail-page h1,
.missing-page h1,
.confirmation-page h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.match-listing-head h1 {
  font-size: clamp(1.7rem, 2.05vw, 2.35rem);
  letter-spacing: -0.035em;
}

.match-listing-head .lead {
  margin-left: auto;
  margin-right: auto;
}

.app-shell--home2 .section h1,
.app-shell--home2 .section h2 {
  color: var(--warm-white);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.035em;
}

.app-shell--home2 .section-heading-inline {
  gap: 12px;
  align-items: center;
}

.app-shell--home2 .section-heading-inline--tight {
  gap: 10px;
}

.app-shell--home2 .section .lead,
.app-shell--home2 .section small,
.app-shell--home2 .section p {
  color: rgba(247, 241, 234, 0.72);
}

.app-shell--home2 .btn-primary {
  border-color: rgba(178, 254, 59, 0.95);
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  color: #101112;
  box-shadow: 0 14px 28px rgba(178, 254, 59, 0.18);
}

.app-shell--home2 .btn-primary:hover,
.app-shell--home2 .btn-primary:focus-visible {
  background: linear-gradient(180deg, #e8ff7a 0%, var(--green) 100%);
  color: #101112;
}

.app-shell--home2 .btn-secondary,
.app-shell--home2 .btn-ghost {
  border-color: rgba(255, 255, 255, 0.13);
  background: #1e1e22;
  color: var(--warm-white);
}

.app-shell--home2 .btn-secondary:hover,
.app-shell--home2 .btn-secondary:focus-visible,
.app-shell--home2 .btn-ghost:hover,
.app-shell--home2 .btn-ghost:focus-visible {
  border-color: rgba(178, 254, 59, 0.5);
  color: var(--green);
}

.match-listing-head .lead,
.detail-page .lead,
.missing-page .lead,
.registration-page .lead,
.confirmation-page .lead {
  color: rgba(247, 241, 234, 0.72);
  max-width: 760px;
}

.match-listing-filters {
  margin: 28px 0 20px;
}

.page--home2 .match-listing-filters {
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  gap: clamp(18px, 4vw, 58px);
}

.page--home2 .match-listing-filters.home-filter-panel {
  justify-content: initial;
  flex-wrap: wrap;
  gap: 12px;
}

.page--home2 .match-listing-filters .home-filter-group {
  flex-wrap: wrap;
  min-width: 0;
}

.page--home2 .match-listing-filters .home-filter-group--sports {
  justify-content: flex-start;
}

.page--home2 .match-listing-filters .home-filter-group--days {
  justify-content: center;
}

.page--home2 .match-listing-filters .home-filter-group:last-of-type {
  justify-content: flex-end;
}

.page--home2 .match-listing-filters .home-filter-pill {
  font-weight: 650;
  font-size: 0.78rem;
  padding-inline: 10px;
}

.page--home2 .home-filter-group--single-line {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.match-zone-filter {
  display: flex;
  gap: 10px;
  width: min(100%, 440px);
}

.match-zone-filter .input {
  background: rgba(20, 20, 20, 0.76);
  border-color: rgba(255, 255, 255, 0.1);
}

.match-listing-grid {
  margin-top: 18px;
}

.match-empty {
  margin-top: 18px;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.match-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.match-detail-title {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 22px;
  text-align: center;
}

.match-detail-title h1 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
}

.match-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  min-height: 320px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(7, 14, 28, 0.82);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.match-detail-card__body {
  display: grid;
  gap: 4px;
}

.match-detail-line {
  margin: 0;
  color: var(--warm-white) !important;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.match-detail-line a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(178, 254, 59, 0.48);
}

.match-detail-line a:hover,
.match-detail-line a:focus-visible {
  color: var(--green);
}

.match-detail-description {
  margin: 14px 0 0;
  max-width: 700px;
  font-size: 1rem;
}

.match-detail-note {
  margin: 28px 0 0;
  color: rgba(247, 241, 234, 0.68) !important;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
}

.match-detail-card__aside {
  display: grid;
  justify-items: stretch;
  gap: 16px;
}

.match-detail-voy {
  min-height: 52px;
  font-size: 1.2rem;
  border-radius: 999px;
}

.trust-grid--compact {
  margin-top: 16px;
}

.related-matches {
  margin-top: 36px;
}

.related-matches__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.related-matches__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
}

.related-matches__head a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.home-match-grid--related {
  opacity: 0.86;
}

.home-match-card--muted {
  transform: scale(0.985);
}

.match-detail-hero__copy,
.match-detail-panel,
.club-snapshot,
.confirmation-card,
.missing-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(8, 16, 32, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.login-page {
  display: grid;
  min-height: calc(100svh - 150px);
  place-items: start center;
}

.structural-page {
  display: grid;
  gap: 24px;
}

.structural-hero {
  width: min(100%, 880px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 64px) 0 clamp(10px, 2vw, 22px);
  text-align: center;
}

.structural-hero h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.structural-actions {
  justify-content: center;
  margin-top: 8px;
}

.structural-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.structural-card,
.legal-block {
  display: grid;
  gap: 9px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.04), transparent 42%),
    rgba(7, 16, 33, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.structural-card h2,
.legal-block h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.structural-card p,
.legal-block p {
  margin: 0;
  color: rgba(247, 241, 234, 0.72);
  font-weight: 650;
}

.home-faq {
  margin-top: clamp(22px, 4vw, 48px);
}

.home-faq .home-section-head {
  align-items: end;
}

.home-faq__link {
  justify-self: end;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid rgba(178, 254, 59, 0.58);
}

.home-faq__link:hover,
.home-faq__link:focus-visible {
  color: var(--lime);
}

.faq-page {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.faq-hero {
  padding-bottom: clamp(16px, 3vw, 34px);
}

.faq-category-list {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.faq-category {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.045), transparent 44%),
    rgba(7, 16, 33, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.faq-category__head {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-category__head span {
  width: max-content;
  color: var(--lime);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 950;
}

.faq-category__head h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion__item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-accordion__heading {
  margin: 0;
}

.faq-accordion__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  color: var(--cream);
  font: inherit;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.faq-accordion__trigger:hover,
.faq-accordion__trigger:focus-visible {
  background: rgba(255, 255, 255, 0.045);
  outline: none;
}

.faq-accordion__trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(178, 254, 59, 0.72);
}

.faq-accordion__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(178, 254, 59, 0.62);
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.22s ease, opacity 0.22s ease;
}

.faq-accordion__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-accordion__content {
  min-height: 0;
  overflow: hidden;
  padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px);
}

.faq-accordion__content p {
  margin: 0;
  color: rgba(247, 241, 234, 0.72);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.42;
}

.faq-accordion__content p + p {
  margin-top: 8px;
}

.faq-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(178, 254, 59, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.1), rgba(10, 173, 255, 0.06)),
    rgba(7, 16, 33, 0.84);
  box-shadow: var(--shadow-soft);
}

.faq-final-cta h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.faq-final-cta p {
  margin: 8px 0 0;
  color: rgba(247, 241, 234, 0.72);
  font-weight: 700;
}

.faq-page {
  width: min(calc(100% - 24px), 1180px);
  max-width: calc(100vw - 24px);
}

.faq-page .faq-hero {
  max-width: 820px;
  justify-items: start;
  margin: 0;
  padding-top: clamp(26px, 4vw, 48px);
  text-align: left;
}

.faq-page .faq-hero .eyebrow,
.faq-side-card__chip {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(178, 254, 59, 0.06);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
}

.faq-page .faq-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.055em;
}

.faq-page .faq-hero .lead {
  max-width: 680px;
  color: rgba(247, 241, 234, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 550;
  line-height: 1.36;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.faq-side-card {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: #151b28;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.faq-side-card h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.faq-side-card p {
  margin: 0;
  color: rgba(247, 241, 234, 0.66);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.faq-side-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.faq-side-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(247, 241, 234, 0.86);
  background: rgba(9, 9, 11, 0.28);
  font-size: 0.82rem;
  font-weight: 650;
}

.faq-side-card__note {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(9, 9, 11, 0.42);
}

.faq-side-card__note span {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 750;
}

.faq-side-card__note strong {
  color: rgba(247, 241, 234, 0.8);
  font-size: 0.95rem;
  font-weight: 550;
}

.faq-page .faq-category-list {
  gap: 16px;
}

.faq-page .faq-category {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 26px);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(21, 27, 40, 0.72);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.faq-page .faq-category__head {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.faq-page .faq-category__head span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border: 1px solid rgba(178, 254, 59, 0.34);
  border-radius: 999px;
  background: rgba(178, 254, 59, 0.06);
  font-size: 0.75rem;
  font-weight: 850;
}

.faq-page .faq-category__head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0;
}

.faq-page .faq-accordion {
  gap: 14px;
}

.faq-page .faq-accordion__item {
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #151b28;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-page .faq-accordion__item.is-open {
  border-color: rgba(178, 254, 59, 0.18);
  background: #09090b;
}

.faq-page .faq-accordion__trigger {
  grid-template-columns: minmax(0, 1fr) 24px;
  min-height: 78px;
  padding: 22px 24px;
  color: rgba(247, 241, 234, 0.78);
  font-size: clamp(1.06rem, 1.32vw, 1.26rem);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

.faq-page .faq-accordion__trigger[aria-expanded="true"] {
  color: var(--lime);
  font-weight: 750;
}

.faq-page .faq-accordion__trigger:hover,
.faq-page .faq-accordion__trigger:focus-visible {
  background: transparent;
}

.faq-page .faq-accordion__trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(178, 254, 59, 0.54);
}

.faq-page .faq-accordion__icon {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
}

.faq-page .faq-accordion__icon::before,
.faq-page .faq-accordion__icon::after {
  width: 13px;
  height: 3px;
  background: rgba(247, 241, 234, 0.62);
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-page .faq-accordion__icon::before {
  transform: translate(-72%, -50%) rotate(45deg);
}

.faq-page .faq-accordion__icon::after {
  transform: translate(-18%, -50%) rotate(-45deg);
}

.faq-page .faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon::before {
  background: var(--lime);
  transform: translate(-72%, -50%) rotate(-45deg);
}

.faq-page .faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon::after {
  background: var(--lime);
  transform: translate(-18%, -50%) rotate(45deg);
}

.faq-page .faq-accordion__content {
  padding: 0 24px 24px;
}

.faq-page .faq-accordion__content p {
  max-width: 62ch;
  color: rgba(247, 241, 234, 0.66);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.48;
}

.faq-page .faq-final-cta {
  margin-top: clamp(8px, 2vw, 18px);
  border-radius: 28px;
  background: #151b28;
}

.legal-page {
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-block {
  min-height: 0;
}

.status-sample-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.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;
}

.app-shell--auth {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 254, 59, 0.025), transparent 34%),
    radial-gradient(circle at 10% 18%, rgba(66, 210, 255, 0.035), transparent 24%),
    #05090f;
}

.page--auth {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 78px 24px 66px;
}

.auth-modal {
  position: relative;
  width: min(347px, calc(100vw - 24px));
  min-height: min(398px, calc(100svh - 48px));
  padding: 55px 43px 41px;
  border: 1px solid rgba(180, 180, 180, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(24, 27, 31, 0.86) 0%, rgba(14, 17, 21, 0.92) 100%);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.auth-modal,
.auth-modal * {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-modal__body {
  width: min(100%, 260px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.auth-modal h1 {
  width: min(100%, 181px);
  margin: 0 auto 13px;
  color: #fbf6ed;
  font-size: 26px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-align: center;
}

.auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 246, 237, 0.62);
  font-size: 23px;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
}

.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.auth-modal__error {
  margin: 0;
}

.oauth-actions {
  display: grid;
  gap: 10px;
}

.auth-provider-button {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  justify-content: center;
  gap: 12px;
  padding: 0 13px;
  border-radius: 8px;
  border-color: rgba(180, 180, 180, 0.18);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  color: #fbf6ed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.auth-provider-button:hover,
.auth-provider-button:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.auth-provider-button__icon {
  width: 18px;
  height: 18px;
  margin-right: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.auth-provider-button__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.auth-provider-button__icon--google {
  background: transparent;
}

.oauth-button:disabled {
  opacity: 1;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(180, 180, 180, 0.18);
  color: #fbf6ed;
  box-shadow: none;
  cursor: not-allowed;
}

.oauth-button:disabled .auth-provider-button__icon {
  opacity: 1;
}

.auth-modal__separator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 13px 0 10px;
  color: rgba(251, 246, 237, 0.58);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.auth-modal__separator::before,
.auth-modal__separator::after {
  content: "";
  height: 1px;
  background: rgba(180, 180, 180, 0.28);
}

.auth-modal__email {
  display: grid;
  gap: 17px;
}

.auth-modal__email-input {
  min-height: 38px;
  padding-inline: 12px;
  border-radius: 8px;
  border-color: rgba(180, 180, 180, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: #fbf6ed;
  font-size: 13px;
  font-weight: 500;
}

.auth-modal__email-input::placeholder {
  color: rgba(251, 246, 237, 0.58);
}

.auth-modal__email-input:focus {
  background: rgba(255, 255, 255, 0.05);
}

.auth-modal__continue {
  width: 100%;
  min-height: 36px;
  justify-content: center;
  border-radius: 8px;
  background: #b2fe3b;
  color: #1b1a1c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.auth-modal__link {
  justify-self: center;
  text-align: center;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 9, 11, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: authOverlayIn 160ms ease-out both;
}

.auth-overlay.is-closing {
  animation: authOverlayOut 140ms ease-in both;
}

.auth-overlay .auth-modal {
  width: min(420px, calc(100vw - 48px));
  min-height: 0;
  padding: 34px;
  border: 1px solid rgba(180, 180, 180, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(22, 28, 41, 0.88) 0%, rgba(17, 22, 31, 0.9) 100%);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: authModalIn 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-overlay.is-closing .auth-modal {
  animation: authModalOut 140ms ease-in both;
}

.auth-overlay .auth-modal__body {
  width: min(100%, 320px);
  gap: 14px;
}

.auth-overlay .auth-modal h1 {
  width: min(100%, 260px);
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.auth-overlay .auth-modal__close {
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  color: rgba(251, 246, 237, 0.58);
  font-size: 30px;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.auth-overlay .auth-modal__close:hover,
.auth-overlay .auth-modal__close:focus-visible {
  border-color: transparent;
  background: transparent;
  color: #fbf6ed;
}

.auth-overlay .auth-provider-button {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border-color: #3f3f3e;
  background: #11161f;
  color: #fbf6ed;
  font-size: 16px;
  font-weight: 700;
}

.auth-overlay .auth-provider-button__icon {
  width: 22px;
  height: 22px;
}

.auth-overlay .auth-modal__separator {
  gap: 16px;
  margin: 14px 0 10px;
  color: #b4b4b4;
  font-size: 16px;
}

.auth-overlay .auth-modal__email {
  gap: 16px;
}

.auth-overlay .auth-modal__email-input {
  min-height: 52px;
  padding-inline: 16px;
  border-radius: 14px;
  border-color: #3f3f3e;
  background: #11161f;
  color: #fbf6ed;
  font-size: 16px;
  font-weight: 500;
}

.auth-overlay .auth-modal__email-input::placeholder {
  color: #8f8f8f;
}

.auth-overlay .auth-modal__continue {
  min-height: 58px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 800;
}

@keyframes authOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes authOverlayOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes authModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes authModalOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
}

.login-card {
  width: min(100%, 640px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.06), transparent 42%),
    rgba(7, 16, 33, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.auth-page {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-top: clamp(72px, 8vw, 118px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-page h1,
.auth-page h2,
.auth-page h3,
.auth-page h4,
.auth-page h5,
.auth-page h6,
.auth-page p,
.auth-page span,
.auth-page small,
.auth-page label,
.auth-page button,
.auth-page input,
.auth-page select,
.auth-page textarea,
.auth-page a {
  font-family: inherit;
}

.auth-page h1,
.auth-page h2,
.auth-page h3 {
  font-weight: 850;
  letter-spacing: -0.03em;
}

.auth-page__heading {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.auth-shell {
  display: grid;
  gap: 18px;
}

.auth-shell--login {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.auth-shell--registration {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.auth-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.05), transparent 42%),
    rgba(7, 16, 33, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.auth-panel--copy,
.auth-panel--providers {
  align-content: start;
}

.auth-panel--form {
  padding: clamp(20px, 3vw, 30px);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-actions .btn {
  min-width: 0;
}

.auth-hint {
  margin-top: 2px;
}

.auth-notice {
  margin: 0;
}

.login-card h1 {
  margin: 0;
  color: var(--cream);
  font-family: "Archivo", "Arial Black", "Impact", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.login-card__actions,
.missing-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.missing-cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 22px 0 16px;
  padding: 18px;
  border: 1px solid rgba(178, 254, 59, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.07), transparent 44%),
    rgba(7, 16, 33, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.missing-cta-strip p {
  margin: 5px 0 0;
  color: rgba(247, 241, 234, 0.72);
  font-weight: 650;
}

.vacancy-lines {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.vacancy-lines__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.match-detail-hero__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.match-detail-status {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--green);
  font-weight: 900;
}

.btn-join {
  font-size: 1.05rem;
  min-height: 52px;
  padding-inline: 28px;
}

.match-detail-panel {
  padding: 22px;
}

.match-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.match-detail-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.match-detail-list dt {
  color: rgba(247, 241, 234, 0.56);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.match-detail-list dd {
  margin: 0;
  color: var(--cream);
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(178, 254, 59, 0.1);
  border: 1px solid rgba(178, 254, 59, 0.18);
}

.trust-grid strong {
  color: var(--green);
}

.trust-grid span,
.club-snapshot p,
.confirmation-next li {
  color: rgba(247, 241, 234, 0.7);
}

.club-snapshot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
}

.club-snapshot h2,
.confirmation-next h2 {
  margin: 0;
  color: var(--cream);
}

.confirmation-card {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  text-align: left;
}

.confirmation-card h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-align: left;
}

.missing-form-share {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.missing-form-share p {
  margin: 0;
  color: var(--cream);
  font-weight: 800;
}

.missing-form-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.missing-form-share__button {
  gap: 8px;
}

.missing-form-share__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.confirmation-summary {
  margin: -4px 0 4px;
  max-width: 500px;
  color: rgba(247, 241, 234, 0.7) !important;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 650;
}

.confirmation-next {
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.confirmation-next h2 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.confirmation-next ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 18px;
}

.confirmation-warning {
  padding: 16px 18px;
  border: 1px solid rgba(178, 254, 59, 0.28);
  border-radius: 18px;
  background: rgba(178, 254, 59, 0.1);
  color: var(--warm-white);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 800;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
}

.confirmation-actions .btn {
  min-width: 116px;
  justify-content: center;
  text-align: center;
}

.missing-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.publish-match-page .registration-grid {
  align-items: start;
}

.publish-type-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.publish-type-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 16, 29, 0.74);
  color: var(--text);
  text-decoration: none;
}

.publish-type-card.is-active {
  border-color: rgba(178, 254, 59, 0.72);
  background: rgba(178, 254, 59, 0.13);
}

.publish-type-card span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.publish-radio-row {
  margin-top: 0;
}

.publish-match-page .field {
  gap: 10px;
}

.publish-match-page .field-title-inline {
  margin-bottom: 0;
}

.publish-match-page .section {
  gap: 36px;
}

.publish-match-page .section h2 {
  margin-bottom: 0;
}

.publish-match-page .field + .field {
  margin-top: 0;
}

.publish-match-page .field-title-inline + .radio-grid,
.publish-match-page .field-title-inline + .input,
.publish-match-page .field-title-inline + .autocomplete,
.publish-match-page .field-title-inline + .spots-needed-row {
  margin-top: 0;
}

.publish-match-page .registration-details-grid {
  row-gap: 26px;
  align-items: start;
}

.publish-match-page .registration-details-grid > .field {
  min-height: 88px;
}

.publish-match-page .registration-details-grid > .field:nth-child(3) {
  grid-column: 1 / -1;
}

.publish-match-page .registration-details-grid > .field:nth-child(4),
.publish-match-page .registration-details-grid > .field:nth-child(5) {
  grid-column: auto;
}

.publish-match-page .input,
.publish-match-page .select {
  height: 52px;
  min-height: 52px;
  padding-block: 12px;
  border-radius: 14px;
}

.publish-match-page input[type="number"] {
  appearance: textfield;
}

.publish-match-page input[type="number"]::-webkit-outer-spin-button,
.publish-match-page input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.publish-match-page .radio-grid.sport-level-grid .radio span {
  min-height: 52px;
  align-items: center;
}

.publish-format-field {
  gap: 2px;
  margin-top: 16px;
}

.publish-sports-selector .publish-format-field {
  margin-top: 0;
}

.match-when-row {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(120px, 150px) minmax(260px, 1fr);
  gap: 16px;
  align-items: end;
}

.match-when-row .input {
  height: 52px;
  min-height: 52px;
  width: 100%;
}

.shortage-row {
  display: grid;
  grid-template-columns: 150px 220px minmax(190px, auto);
  gap: 16px;
  align-items: end;
}

.shortage-row > .field:nth-child(1) {
  max-width: 150px;
}

.shortage-row > .field:nth-child(2) {
  max-width: 220px;
}

.spots-needed-row {
  display: grid;
  grid-template-columns: 84px auto;
  gap: 10px;
  align-items: center;
}

.spots-ok-button {
  min-height: 52px;
  padding-inline: 18px;
  border-radius: 14px;
}

.spots-needed-row.is-approved .spots-ok-button {
  border-color: rgba(178, 254, 59, 0.7);
  background: rgba(178, 254, 59, 0.16);
  color: var(--brand);
}

.shortage-play-field {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}

.share-link-field {
  margin: 18px 0 6px;
  text-align: left;
}

.confirmed-player-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.add-confirmed-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #20222a;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.confirmed-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.confirmed-slot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.confirmed-slot > strong {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.confirmed-slot.is-vacancy {
  border-color: rgba(178, 254, 59, 0.42);
  color: var(--brand);
}

.confirmed-slot.is-empty {
  color: var(--muted);
}

.confirmed-slot button {
  border: 0;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font-weight: 800;
}

.price-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.price-field-row.has-amount {
  grid-template-columns: minmax(0, auto) minmax(150px, 210px);
  justify-content: start;
  align-items: end;
}

.price-amount-inline {
  display: grid;
  gap: 10px;
  align-self: end;
  color: var(--text);
  font-weight: 400;
}

.price-amount-inline > span:first-child {
  font-weight: 400;
}

.price-field-row + .field {
  margin-top: 24px;
}

.price-amount-control {
  display: inline-grid;
  grid-template-columns: auto 150px;
  align-items: center;
  gap: 4px;
  justify-content: start;
  width: max-content;
}

.price-amount-control b {
  color: var(--brand);
  font-size: 1rem;
}

.price-amount-control .input {
  width: 150px;
}

.publish-preview {
  max-width: 420px;
}

.public-match-page .match-detail-card__aside,
.public-match-page .match-detail-card__aside .btn {
  min-width: 0;
}

.public-match-page .match-detail-card__aside .btn {
  white-space: normal;
  text-align: center;
}

.publish-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.publish-preview__tags span,
.match-reservation-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(178, 254, 59, 0.14);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.match-reservation-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.missing-reserved {
  width: fit-content;
}

.app-shell--home2 .club-entry-hero,
.app-shell--home2 .club-public-url-card,
.app-shell--home2 .club-summary-card,
.app-shell--home2 .club-pick-card,
.app-shell--home2 .club-facility-card,
.app-shell--home2 .club-schedule-card,
.app-shell--home2 .club-price-card,
.app-shell--home2 .club-preview-mini,
.app-shell--home2 .dashboard-card,
.app-shell--home2 .opportunity-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.035), transparent 42%),
    rgba(14, 33, 67, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.app-shell--home2 .club-entry-hero,
.app-shell--home2 .club-pick-card.featured {
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.06), transparent 36%),
    rgba(14, 33, 67, 0.9);
}

.app-shell--home2 .club-public-url-card__url {
  border-color: rgba(178, 254, 59, 0.22);
  background: rgba(178, 254, 59, 0.08);
  color: var(--warm-white);
}

.app-shell--home2 .topbar-button--dark.is-active,
.topbar-link--outline.is-active {
  border-color: var(--green);
  background: rgba(178, 254, 59, 0.14);
  color: var(--green);
}

.club-landing-v2 {
  position: relative;
  display: grid;
  min-height: calc(100svh - 70px);
  background: #050507 url("/images/clubes-bg-poster.jpg") center top / cover no-repeat;
  color: var(--warm-white);
  overflow: hidden;
}

.club-landing-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("/images/clubes-bg-poster.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 1;
}

.club-landing-v2::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(178, 254, 59, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.38) 100%);
}

.club-landing-v2__video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(3px);
}

.club-landing-v2__hero {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: 132px 20px 24px;
  overflow: hidden;
  text-align: center;
}

.club-landing-v2__overlay {
  display: none;
}

.club-landing-v2__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(1280px, 100%);
}

.club-landing-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 16, 33, 0.78);
  color: var(--green);
  font-weight: 900;
}

.club-landing-v2 h1 {
  margin: 0;
  color: var(--warm-white);
  font-family: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.3rem, 3.35vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.club-landing-v2 h1 span,
.club-landing-v2__card-copy h2 span {
  color: var(--green);
}

.club-landing-v2__content p {
  max-width: 656px;
  margin: 0;
  color: rgba(247, 241, 234, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.club-landing-v2__actions,
.club-landing-v2__card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  margin-top: 0;
}

.club-landing-v2__actions .btn,
.club-landing-v2__card-actions .btn {
  min-width: 0;
  min-height: 50px;
  padding-inline: 25px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 800;
}

.club-landing-v2__card-actions .btn {
  width: fit-content;
  max-width: 100%;
  min-height: 31px;
  padding: 7px 19px;
  font-size: 14px;
}

.club-landing-v2__showcase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0 20px 96px;
  margin-top: 0;
  background: transparent;
}

.club-landing-v2__superclub {
  display: grid;
  grid-template-columns: 267px minmax(0, 599px);
  gap: 0;
  align-items: stretch;
  width: min(867px, calc(100% - 32px));
  min-height: 260px;
  padding: 24px 28px;
  border: 0;
  border-radius: 20px;
  background: #161c29;
  box-shadow: none;
  overflow: hidden;
}

.club-landing-v2__media {
  display: block;
  width: 230px;
  height: 230px;
  align-self: center;
  justify-self: center;
  border-radius: 0;
  object-fit: contain;
}

.club-landing-v2__card-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 11px;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
}

.club-landing-v2__card-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.club-landing-v2__card-copy p {
  max-width: 441px;
  margin: 0;
  color: #b4b4b4;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.club-landing-v2__url {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  overflow-wrap: anywhere;
}

.club-landing-v2__card-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.club-landing-v2 .footer-note {
  position: relative;
  z-index: 1;
}

.superclub-page {
  display: grid;
  gap: 46px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 76px;
  color: var(--warm-white);
}

.superclub-page h1,
.superclub-page h2,
.superclub-page h3,
.superclub-page p {
  margin: 0;
}

.superclub-page h1,
.superclub-page h2,
.superclub-page h3 {
  font-family: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.superclub-dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}

.superclub-dashboard-hero h1 {
  margin-top: 8px;
  font-size: clamp(2.35rem, 4.3vw, 4.7rem);
  line-height: 0.95;
}

.superclub-dashboard-hero p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(247, 241, 234, 0.72);
  font-size: 16px;
  line-height: 1.45;
}

.superclub-eyebrow {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.superclub-dashboard-grid,
.superclub-public-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.superclub-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161c29;
  color: var(--warm-white);
}

.superclub-panel h2 {
  font-size: 22px;
  line-height: 1.08;
}

.superclub-panel h3 {
  font-size: 20px;
  line-height: 1.15;
}

.superclub-panel label,
.superclub-help,
.superclub-panel p,
.superclub-court-card p,
.superclub-match-card p {
  color: rgba(247, 241, 234, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.superclub-panel label {
  color: rgba(247, 241, 234, 0.82);
  font-weight: 800;
}

.superclub-field {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a1221;
  color: var(--warm-white);
  font-size: 15px;
  font-weight: 700;
}

.superclub-field--url {
  color: var(--green);
}

.superclub-panel--profile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

.superclub-two-cols,
.superclub-account-grid,
.superclub-hour-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.superclub-chip-row,
.superclub-filter-row,
.superclub-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.superclub-chip-row span,
.superclub-filter,
.superclub-check-grid span,
.superclub-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(178, 254, 59, 0.38);
  background: rgba(178, 254, 59, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.superclub-filter {
  border-color: rgba(255, 255, 255, 0.14);
  background: #242329;
  color: var(--warm-white);
  cursor: default;
}

.superclub-filter.is-active {
  border-color: var(--green);
  background: rgba(178, 254, 59, 0.16);
  color: var(--green);
}

.superclub-account-grid div,
.superclub-hour-blocks div,
.superclub-sport-list div,
.superclub-hours-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 13px;
  background: #0a1221;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.superclub-account-grid small,
.superclub-hour-blocks small,
.superclub-court-card small {
  color: rgba(247, 241, 234, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.superclub-account-grid strong,
.superclub-hour-blocks strong,
.superclub-sport-list strong,
.superclub-hours-card strong,
.superclub-court-card strong {
  color: var(--warm-white);
  font-size: 16px;
}

.superclub-hour-blocks {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.superclub-hour-blocks span,
.superclub-sport-list span,
.superclub-hours-card span {
  color: rgba(247, 241, 234, 0.62);
  font-size: 13px;
}

.superclub-wide-panel {
  width: 100%;
}

.superclub-section {
  display: grid;
  gap: 20px;
}

.superclub-section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.superclub-section-heading h2 {
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 0.98;
}

.superclub-section-heading p {
  max-width: 580px;
  color: rgba(247, 241, 234, 0.64);
  font-size: 16px;
  line-height: 1.45;
}

.superclub-section-action {
  display: flex;
  justify-content: center;
}

.superclub-court-grid,
.superclub-match-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.superclub-match-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.superclub-court-card,
.superclub-match-card {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161c29;
}

.superclub-court-card h3,
.superclub-match-card h3 {
  font-size: 22px;
  line-height: 1.06;
}

.superclub-court-card__bottom {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.superclub-court-card__bottom > span {
  display: grid;
  gap: 2px;
}

.superclub-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 31px;
  padding: 7px 19px;
  border-radius: 999px;
  border: 1px solid var(--green);
  color: var(--warm-white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.superclub-card-button--primary {
  background: var(--green);
  color: #050507;
}

.superclub-match-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.superclub-match-card__meta span {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0a1221;
  color: rgba(247, 241, 234, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.superclub-public-page {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.superclub-public-page > .superclub-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.superclub-public-hero {
  min-height: 483px;
  margin-top: -38px;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.30), rgba(5, 5, 7, 0.72)),
    var(--club-hero-image, none),
    url("/images/clubes-bg-poster.jpg") center 38% / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.superclub-public-hero__inner {
  display: grid;
  place-items: center;
  gap: 26px;
  min-height: 483px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 54px;
  text-align: center;
}

.superclub-wordmark {
  color: var(--green);
  font-family: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.superclub-public-hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 5.3vw, 6rem);
  line-height: 0.95;
}

.club-public-hero-lead {
  max-width: 760px;
  color: rgba(247, 241, 234, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
}

.club-public-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.club-public-logo--placeholder,
.club-public-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: "Archivo", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.club-public-logo--placeholder {
  font-size: 2rem;
}

.club-public-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.club-public-photo-grid figure {
  margin: 0;
  min-width: 0;
}

.club-public-photo-grid img,
.club-public-photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 20%, rgba(178, 254, 59, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(15, 31, 54, 0.96), rgba(9, 18, 32, 0.96));
}

.club-public-photo-placeholder {
  align-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.club-public-photo-placeholder span {
  color: rgba(247, 241, 234, 0.58);
  font-size: 0.86rem;
}

.club-public-photo-placeholder strong {
  color: var(--text);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

.club-public-empty {
  color: rgba(247, 241, 234, 0.66);
  font-weight: 750;
}

.superclub-public-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.superclub-public-info-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr) minmax(240px, 0.7fr);
}

.superclub-panel--map img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.superclub-panel--map .club-public-photo-placeholder {
  border-radius: 14px;
}

.superclub-sport-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 1100px) {
  .superclub-dashboard-grid,
  .superclub-public-info-grid,
  .club-public-photo-grid,
  .superclub-court-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .superclub-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .superclub-hour-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .superclub-dashboard-hero {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .superclub-page,
  .superclub-public-page > .superclub-section {
    width: min(100% - 28px, 1220px);
  }

  .superclub-page {
    gap: 34px;
    padding-bottom: 54px;
  }

  .superclub-dashboard-grid,
  .superclub-public-info-grid,
  .club-public-photo-grid,
  .superclub-court-grid,
  .superclub-match-grid,
  .superclub-hour-blocks,
  .superclub-two-cols,
  .superclub-account-grid,
  .superclub-sport-list {
    grid-template-columns: 1fr;
  }

  .superclub-panel,
  .superclub-court-card,
  .superclub-match-card {
    padding: 18px;
    border-radius: 16px;
  }

  .superclub-public-hero,
  .superclub-public-hero__inner {
    min-height: 420px;
  }

  .superclub-public-hero__inner {
    width: min(100% - 28px, 1220px);
    gap: 20px;
    padding: 58px 0 44px;
  }

  .superclub-public-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .superclub-dashboard-hero h1,
  .superclub-section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .superclub-public-hero__actions,
  .superclub-section-action,
  .superclub-dashboard-hero .btn {
    width: 100%;
  }

  .superclub-public-hero__actions .btn,
  .superclub-section-action .btn,
  .superclub-dashboard-hero .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .club-form-card .field-title-inline {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .club-form-card .field-title-inline > span,
  .club-form-card .field-title-inline > small {
    display: block;
    max-width: calc(100vw - 72px);
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.app-shell--home2 .opportunity-tag,
.app-shell--home2 .club-pick-card__eyebrow,
.app-shell--home2 .eyebrow {
  background: rgba(7, 16, 33, 0.78);
  color: var(--green);
}

.app-shell--home2 .status-pill.active {
  background: rgba(178, 254, 59, 0.14);
  color: var(--green);
}

.app-shell--home2 .opportunity-price {
  background: rgba(178, 254, 59, 0.11);
  color: var(--green);
}

.page--home2 .home-player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.page--home2 .home-player-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 8px 10px;
  min-height: 142px;
  padding: 13px 14px 12px;
  border-radius: 15px;
  border: 0.5px solid #071021;
  background:
    linear-gradient(135deg, rgba(178, 254, 59, 0.08), transparent 38%),
    #10203a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.page--home2 .home-player-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  color: #101112;
  font-size: 17px;
  font-weight: 900;
}

.page--home2 .home-player-card__copy {
  min-width: 0;
}

.page--home2 .home-player-card__copy h3 {
  margin: 1px 0 1px;
  color: #fff;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page--home2 .home-player-card__copy p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.page--home2 .home-player-card__sports {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.page--home2 .home-player-card__sport {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 21px;
  padding: 0 7px 0 5px;
  border-radius: 999px;
  background: #071021;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.page--home2 .home-player-card__sport span:first-child {
  width: 14px;
  height: 14px;
  display: inline-flex;
  flex: none;
}

.page--home2 .home-player-card__sport img {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.page--home2 .home-player-card__meta {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  margin: 0;
}

.page--home2 .home-player-card__meta div {
  display: grid;
  gap: 2px;
}

.page--home2 .home-player-card__meta dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.page--home2 .home-player-card__meta dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
}

.page--home2 .home-player-card__cta {
  grid-column: 1 / -1;
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(178, 254, 59, 0.95);
  background: #09332f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.page--home2 .home-load-more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.page--home2 .home-load-more__button {
  appearance: none;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(178, 254, 59, 0.95);
  background: rgba(9, 51, 47, 0.9);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.page--home2 .home-load-more__button:hover,
.page--home2 .home-load-more__button:focus-visible {
  background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
  color: #101112;
}

.page--home2 .home-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 10px;
  margin-top: 16px;
}

.page--home2 .home-panel {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  border-radius: 14px;
  border: 1px solid #071021;
  background: #0e2143;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.page--home2 .home-panel--copy {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page--home2 .home-panel--copy h2 {
  margin: 0;
  max-width: 13ch;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 900;
  display: grid;
}

.page--home2 .home-panel--copy h2 span:last-child {
  color: var(--green);
}

.page--home2 .home-panel--copy p {
  margin: 12px 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.15;
}

.page--home2 .home-panel--video::after,
.page--home2 .home-sport-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.08) 0%, rgba(7, 8, 10, 0.18) 100%);
  pointer-events: none;
}

.page--home2 .home-panel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.page--home2 .home-sports {
  margin-top: 16px;
}

.page--home2 .home-sport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.page--home2 .home-sport-tile {
  position: relative;
  overflow: hidden;
  height: 166px;
  border-radius: 14px;
  border: 1px solid #071021;
  background: #0e2143;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.page--home2 .home-sport-tile__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.84);
}

.page--home2 .video-background__video {
  filter: blur(16px) brightness(0.5) saturate(1.02) contrast(1.02);
  transform: scale(1.1);
}

.page--home2 .video-background::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.78) 0%, rgba(6, 7, 8, 0.42) 44%, rgba(6, 7, 8, 0.72) 100%),
    radial-gradient(circle at 54% 22%, rgba(178, 254, 59, 0.09), transparent 26rem),
    radial-gradient(circle at 24% 20%, rgba(10, 173, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 80% 66%, rgba(178, 254, 59, 0.06), transparent 24rem);
}

@media (max-width: 1180px) {
  .app-shell--home2 .topbar__nav--home2 {
    gap: 18px;
  }

  .registration-grid,
  .club-entry-grid {
    grid-template-columns: 1fr;
  }

  .structural-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-category {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side-card {
    position: static;
  }

  .missing-cta-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .vacancy-lines__grid {
    grid-template-columns: 1fr;
  }

  .club-pick-grid {
    grid-template-columns: 1fr;
  }

  .page--home2 .home-match-grid,
  .page--home2 .home-player-grid,
  .page--home2 .home-sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--home2 .home-banner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page--home2 .home-banner-grid > :first-child {
    grid-column: 1 / -1;
  }

  .oauth-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-shell--login,
  .auth-shell--registration {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .registration-page,
  .verification-page {
    width: min(100%, calc(100vw - 24px));
    padding-top: 86px;
  }

  .registration-page--edit .registration-grid,
  .registration-page--edit .auth-shell--registration {
    grid-template-columns: 1fr;
  }

  .registration-page--edit .registration-hero {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .registration-page--edit .registration-requirements {
    grid-column: 1;
    grid-row: auto;
  }

  .registration-page--edit .registration-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .registration-page--edit .registration-form,
  .verification-panel,
  .verification-page .hero {
    padding: 18px;
    border-radius: 24px;
  }

  .registration-page--edit .registration-details-grid,
  .registration-page--edit .form-grid.cols-2,
  .registration-page--edit .availability-grid,
  .registration-page--edit .confirmations-grid {
    grid-template-columns: 1fr;
  }

  .registration-page--edit .registration-details-grid > .field:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .registration-page--edit .section-heading-inline {
    display: grid;
    gap: 4px;
  }

  .location-card,
  .location-actions,
  .active-zone-block__selector {
    grid-template-columns: 1fr;
  }

  .active-zone-block__copy {
    display: grid;
    gap: 4px;
    justify-items: center;
    text-align: center;
  }

  .profile-form-footer,
  .profile-form-footer .form-actions,
  .account-danger-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .location-card .btn,
  .location-actions .btn,
  .location-manual-form .btn,
  .profile-form-footer .btn {
    width: 100%;
  }

  .profile-zone-multiselect {
    grid-template-columns: 1fr;
  }

  .registration-page--edit .sports-row,
  .registration-page--edit .radio-grid.mobility-row,
  .registration-page--edit .availability-grid .chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .registration-page--edit .registration-requirement,
  .verification-page .registration-requirement {
    min-height: 54px;
    padding: 10px 12px;
    gap: 10px;
  }

  .registration-requirement__note {
    display: block;
    margin: 3px 0 0;
  }

  .faq-page {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    overflow: hidden;
  }

  .faq-page .faq-hero,
  .faq-layout,
  .faq-page .faq-category-list,
  .faq-side-card,
  .faq-page .faq-category,
  .faq-page .faq-accordion,
  .faq-page .faq-accordion__item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .faq-layout,
  .faq-page .faq-category {
    inline-size: calc(100vw - 24px);
    max-inline-size: calc(100vw - 24px);
  }

  .faq-side-card {
    inline-size: min(330px, calc(100vw - 48px));
    max-inline-size: min(330px, calc(100vw - 48px));
  }

  .page--home2 .container {
    width: min(100%, calc(100% - 24px));
  }

  .app-shell--home2 .topbar > .container {
    width: min(100%, calc(100% - 24px));
  }

  .home-faq .home-section-head {
    align-items: start;
  }

  .home-faq__link {
    justify-self: start;
  }

  .faq-category {
    padding: 12px;
    border-radius: 20px;
  }

  .faq-page .faq-hero {
    padding-top: 18px;
  }

  .faq-page .faq-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    overflow-wrap: break-word;
  }

  .faq-page .faq-hero .lead,
  .faq-side-card h2,
  .faq-side-card p,
  .faq-side-card__note strong {
    max-width: min(280px, calc(100vw - 86px));
    overflow-wrap: break-word;
  }

  .faq-side-card {
    padding: 18px;
    border-radius: 22px;
  }

  .faq-side-card h2 {
    font-size: clamp(1.42rem, 6.5vw, 1.8rem);
    line-height: 1.02;
  }

  .faq-side-card p {
    font-size: 0.94rem;
  }

  .faq-side-card__tags span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .faq-side-card__tags {
    gap: 6px;
  }

  .faq-page .faq-category {
    padding: 14px;
    border-radius: 22px;
  }

  .faq-page .faq-category__head {
    align-items: start;
  }

  .faq-accordion__trigger {
    grid-template-columns: minmax(0, 1fr) 24px;
    padding: 16px;
  }

  .faq-page .faq-accordion__trigger {
    min-height: 76px;
    padding: 18px 16px;
    font-size: 1rem;
  }

  .faq-accordion__content {
    padding: 0 16px 16px;
  }

  .faq-page .faq-accordion__content {
    padding: 0 16px 18px;
  }

  .faq-final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-final-cta .btn {
    width: 100%;
  }

  .app-shell--home2 .topbar__bar--home2 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .app-shell--home2 .topbar__nav--home2 {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .app-shell--home2 .topbar__nav--home2::-webkit-scrollbar {
    display: none;
  }

  .app-shell--home2 .topbar__actions--home2 {
    justify-content: flex-start;
  }

  .page--home2 .home-hero {
    min-height: clamp(520px, calc(80svh - 84px), 620px);
    padding: 42px 0 78px;
  }

  .page--home2 .home-hero__title {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    max-width: 11ch;
  }

  .page--home2 .home-mode-switch {
    width: 100%;
  }

  .page--home2 .home-hero__mode-switch {
    margin-top: 24px;
    margin-bottom: 34px;
    position: sticky;
    top: 68px;
    z-index: 12;
    scroll-margin-top: 78px;
  }

  .page--home2 .home-mode-switch__button {
    min-width: min(100%, 220px);
    min-height: 46px;
  }

  .page--home2 .home-sport-switcher {
    width: 100%;
  }

  .page--home2 .home-sport-pill {
    min-height: 46px;
    padding: 0 16px 0 14px;
    font-size: 0.92rem;
  }

  .page--home2 .home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page--home2 .home-day-tabs {
    justify-content: flex-start;
  }

  .registration-grid,
  .club-entry-grid {
    grid-template-columns: 1fr;
  }

  .club-pick-grid {
    grid-template-columns: 1fr;
  }

  .oauth-card {
    grid-template-columns: 1fr;
  }

  .oauth-actions {
    justify-content: flex-start;
  }

  .oauth-card__providers {
    grid-template-columns: 1fr 1fr;
  }

  .page--auth {
    padding: 12px;
  }

  .auth-modal {
    width: 100%;
    padding: 28px 18px 22px;
    border-radius: 26px;
  }

  .auth-modal__body {
    gap: 18px;
  }

  .auth-modal h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .auth-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }

  .auth-provider-button {
    width: 100%;
    min-height: 60px;
    padding-inline: 18px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .auth-provider-button__icon {
    width: 34px;
    height: 34px;
    margin-right: 0;
    font-size: 0.98rem;
  }

  .auth-modal__separator {
    gap: 12px;
    font-size: 1rem;
  }

  .auth-modal__email-input {
    min-height: 60px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .auth-modal__continue {
    min-height: 64px;
    border-radius: 18px;
    font-size: 1.03rem;
  }

  .registration-form,
  .registration-trust-card,
  .club-entry-login-card,
  .missing-page__intro {
    padding: 16px;
  }

  .page--home2 .home-match-grid,
  .page--home2 .home-player-grid,
  .page--home2 .home-banner-grid,
  .page--home2 .home-sport-grid {
    grid-template-columns: 1fr;
  }

  .page--home2 .home-panel,
  .page--home2 .home-sport-tile {
    min-height: 172px;
  }

  .page--home2 .home-match-card__time {
    font-size: 1.9rem;
  }

  .match-listing-page,
  .detail-page,
  .missing-page,
  .confirmation-page {
    width: min(100%, calc(100% - 24px));
    padding-top: 92px;
  }

  .app-shell--home2 .page--home2 > .section:not(.home-page),
  .app-shell--home2 .page--home2 > .match-listing-page,
  .app-shell--home2 .page--home2 > .detail-page,
  .app-shell--home2 .page--home2 > .missing-page,
  .app-shell--home2 .page--home2 > .confirmation-page {
    width: min(100%, calc(100% - 24px));
  }

  .match-listing-head {
    align-items: start;
  }

  .match-zone-filter,
  .club-snapshot {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-page {
    padding-top: 56px;
  }

  .auth-panel {
    border-radius: 24px;
  }

  .match-detail-hero,
  .match-detail-card,
  .trust-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .match-detail-card {
    min-height: 0;
  }

  .match-detail-line {
    font-size: 1.28rem;
  }

  .related-matches__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-detail-panel,
  .match-detail-hero__copy,
  .club-snapshot,
  .confirmation-card,
  .missing-form {
    border-radius: 20px;
  }

  .confirmed-player-add {
    grid-template-columns: 1fr;
  }

  .shortage-row,
  .match-when-row,
  .confirmed-slots,
  .price-field-row.has-amount {
    grid-template-columns: 1fr;
  }

  .publish-preview {
    max-width: none;
  }
}

@media (max-width: 920px) {
  body.mobile-filter-open .page--home2 .home-matches {
    z-index: 130;
  }

  .page--home2 .home-filter-row {
    display: none;
  }

  .page--home2 .home-filter-panel {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .page--home2 .home-filter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 78px;
    padding: 14px 14px 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(178, 254, 59, 0.05), transparent 38%),
      rgba(7, 12, 20, 0.8);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  .page--home2 .home-filter-card__title {
    margin: 0;
    color: var(--warm-white);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.03rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .page--home2 .home-filter-panel__summary {
    margin: 7px 0 0;
    color: rgba(247, 241, 234, 0.68);
    font-size: 0.86rem;
    font-weight: 760;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }

  .page--home2 .home-filter-toggle {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(178, 254, 59, 0.24);
    background: rgba(178, 254, 59, 0.08);
    color: var(--green);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 900;
  }

  .page--home2 .home-filter-sheet {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    align-items: end;
    pointer-events: none;
    visibility: hidden;
  }

  .page--home2 .home-filter-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .page--home2 .home-filter-sheet__backdrop {
    appearance: none;
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .page--home2 .home-filter-sheet.is-open .home-filter-sheet__backdrop {
    opacity: 1;
  }

  .page--home2 .home-filter-sheet__panel {
    position: relative;
    min-height: min(620px, 78dvh);
    max-height: min(82dvh, 680px);
    padding: 10px 18px calc(18px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-width: 1px 1px 0;
    border-radius: 28px 28px 0 0;
    background:
      radial-gradient(circle at 18% 0%, rgba(178, 254, 59, 0.11), transparent 34%),
      linear-gradient(180deg, rgba(12, 20, 32, 0.96), rgba(5, 9, 16, 0.98));
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.42);
    overflow-y: auto;
    transform: translateY(105%);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .page--home2 .home-filter-sheet.is-open .home-filter-sheet__panel {
    transform: translateY(0);
  }

  .page--home2 .home-filter-sheet__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
  }

  .page--home2 .home-filter-sheet__head h3 {
    margin: 0;
    color: var(--warm-white);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .page--home2 .home-filter-sheet__head p {
    margin: 8px 0 0;
    color: rgba(247, 241, 234, 0.64);
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.3;
  }

  .page--home2 .home-filter-sheet__body {
    display: grid;
    gap: 20px;
    margin-top: 22px;
  }

  .page--home2 .home-filter-field {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .page--home2 .home-filter-field__label {
    color: rgba(247, 241, 234, 0.52);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .page--home2 .home-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    min-width: 0;
  }

  .page--home2 .match-listing-filters .home-filter-group {
    flex-wrap: wrap;
  }

  .page--home2 .home-filter-pill {
    min-height: 44px;
    padding: 0 15px;
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.065);
    color: rgba(247, 241, 234, 0.78);
    font-size: 0.88rem;
    font-weight: 850;
  }

  .page--home2 .home-filter-sheet__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 22px;
  }

  .page--home2 .home-filter-sheet__primary,
  .page--home2 .home-filter-sheet__secondary {
    appearance: none;
    min-height: 48px;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
  }

  .page--home2 .home-filter-sheet__primary {
    border: 1px solid rgba(178, 254, 59, 0.95);
    background: linear-gradient(180deg, #dbff4f 0%, var(--green) 100%);
    color: #101112;
    box-shadow: 0 14px 30px rgba(178, 254, 59, 0.17);
  }

  .page--home2 .home-filter-sheet__secondary {
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(247, 241, 234, 0.78);
  }

  .topbar {
    padding: 12px 0;
  }

  .app-shell--home2 .topbar > .container {
    overflow: visible;
  }

  .topbar__bar,
  .topbar__bar--home,
  .app-shell--home2 .topbar__bar--home2 {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0;
  }

  .topbar__nav,
  .topbar__actions,
  .app-shell--home2 .topbar__nav--home2,
  .app-shell--home2 .topbar__actions--home2 {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    order: -1;
    grid-column: 1;
    justify-self: start;
  }

  .mobile-menu {
    display: block;
  }

  .brand,
  .brand--home {
    min-width: 0;
    grid-column: 2;
    justify-self: center;
  }

  .brand--home .logo-img,
  .app-shell--home2 .brand--home .logo-img,
  .logo-img {
    width: min(218px, calc(100vw - 132px));
  }
}

@media (max-width: 760px) {
  .club-landing-v2__hero {
    min-height: auto;
    padding: 96px 12px 48px;
  }

  .club-landing-v2 h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .club-landing-v2__content {
    gap: 18px;
  }

  .club-landing-v2__content p {
    font-size: 1rem;
    line-height: 1.32;
  }

  .club-landing-v2__actions,
  .club-landing-v2__card-actions {
    width: min(100%, 340px);
  }

  .club-landing-v2__actions .btn,
  .club-landing-v2__card-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .club-landing-v2__showcase {
    padding: 0 12px 54px;
    margin-top: 0;
  }

  .club-landing-v2__superclub {
    border-radius: 24px;
    background: #102447;
  }

  .club-landing-v2__media {
    width: min(230px, 70vw);
    height: min(230px, 70vw);
    border-radius: 0;
  }

  .club-landing-v2__card-copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .publish-match-page .sports-row,
  .publish-match-page .radio-grid.sport-level-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    min-width: 0;
    max-width: 100%;
  }

  .publish-match-page .sport-chip,
  .publish-match-page .radio-grid.sport-level-grid .radio {
    flex: 0 1 auto;
  }

  .publish-match-page .radio-grid.sport-level-grid .radio span {
    white-space: normal;
  }

  .shortage-play-field {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .container,
  .app-shell--home2 .topbar > .container {
    width: min(100%, calc(100% - 20px));
  }

  .mobile-menu__panel {
    width: 84vw;
    border-radius: 0 22px 22px 0;
  }

  .mobile-menu__nav a {
    min-height: 52px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-button,
  .mobile-menu-button span,
  .mobile-menu__backdrop,
  .mobile-menu__panel,
  .mobile-menu__nav a,
  .mobile-menu__club-link,
  .mobile-menu__close,
  .page--home2 .home-filter-sheet__backdrop,
  .page--home2 .home-filter-sheet__panel,
  .page--home2 .home-hero__scroll {
    animation: none;
    transition: none;
  }
}

/* HOME official Figma frame: Oi7TqwSbJYtTHkA0bJhEbj / HOME */
.page--home2 {
  --figma-bg: #09090b;
  --figma-field: #11161f;
  --figma-card: #161c29;
  --figma-line: #3f3f3e;
  --figma-green: #b2fe3b;
  --figma-muted: #b4b4b4;
  --figma-ink: #1b1a1c;
}

.page--home2 .container,
.app-shell--home2 .topbar > .container,
.app-shell--home2 .footer-note > .container {
  width: min(1360px, calc(100% - 40px));
}

.app-shell--home2 .topbar {
  background: var(--figma-bg, #09090b);
  border-bottom: 0;
}

.app-shell--home2 .topbar__bar--home2 {
  min-height: 70px;
  gap: 28px;
}

.app-shell--home2 .brand--home .logo-img {
  width: min(301px, 26vw);
}

.app-shell--home2 .topbar__nav--home2 {
  gap: 32px;
}

.app-shell--home2 .topbar__nav--home2 a {
  color: var(--figma-muted, #b4b4b4);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app-shell--home2 .topbar__nav--home2 a:first-child {
  color: #fff;
}

.app-shell--home2 .topbar-button {
  min-height: 34px;
  padding: 0 19px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app-shell--home2 .topbar-button--dark {
  background: #09332f;
  border-color: var(--figma-green, #b2fe3b);
  color: #fff;
}

.app-shell--home2 .topbar-button--lime {
  background: var(--figma-green, #b2fe3b) !important;
  color: var(--figma-ink, #1b1a1c) !important;
  border-color: var(--figma-green, #b2fe3b) !important;
  box-shadow: none !important;
}

.app-shell--home2 .topbar-button--dark.is-active {
  background: rgba(178, 254, 59, 0.14);
  border-color: var(--figma-green, #b2fe3b);
  color: var(--figma-green, #b2fe3b);
}

.page--home2 .home-page {
  padding-bottom: 0;
}

.page--home2 .home-hero {
  min-height: 0;
  padding: clamp(116px, 7.4vw, 145px) 0 32px;
}

.page--home2 .home-hero__copy {
  width: min(820px, 100%);
  gap: 21px;
}

.page--home2 .home-hero__title {
  font-size: clamp(4rem, 4.95vw, 71px);
  line-height: 80px;
  letter-spacing: -3.55px;
}

.page--home2 .home-hero__title-accent {
  color: var(--figma-green, #b2fe3b);
  font-style: normal;
}

.page--home2 .home-hero__lede {
  margin: 0;
  color: var(--figma-muted, #b4b4b4);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.page--home2 .home-hero__mode-switch {
  width: 369px;
  min-height: 66px;
  margin: 0 auto 58px;
  padding: 8px;
  gap: 0;
  border: 0;
  background: var(--figma-card, #161c29);
  box-shadow: none;
  backdrop-filter: none;
}

.page--home2 .home-mode-switch__button {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--figma-muted, #b4b4b4);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.page--home2 .home-mode-switch__button.is-active {
  background: var(--figma-green, #b2fe3b);
  color: var(--figma-ink, #1b1a1c);
  border-color: var(--figma-green, #b2fe3b);
  box-shadow: none;
}

.page--home2 .home-mode-switch__button--secondary {
  background: #0f2e1c;
  color: #fff;
  border-color: var(--figma-green, #b2fe3b);
}

.page--home2 .home-matches {
  margin-top: 0;
  scroll-margin-top: 92px;
}

.page--home2 .home-section-head__copy h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page--home2 .home-section-head__copy p {
  margin-top: 2px;
  color: var(--figma-muted, #b4b4b4);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.page--home2 .home-filter-row--figma {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.page--home2 .home-filter-group {
  gap: 5px;
  flex-wrap: nowrap;
}

.page--home2 .home-filter-pill {
  min-height: 30px;
  padding: 0 9px;
  border: 0.5px solid var(--figma-line, #3f3f3e);
  background: var(--figma-card, #161c29);
  color: var(--figma-muted, #b4b4b4);
  font-size: 11px;
  font-weight: 800;
}

.page--home2 .home-filter-pill.is-active {
  background: var(--figma-green, #b2fe3b);
  border-color: var(--figma-green, #b2fe3b);
  color: var(--figma-card, #161c29);
}

.page--home2 .home-filter-pill__icon {
  width: 14px;
  height: 14px;
}

.page--home2 .home-match-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 23px;
}

.page--home2 .home-match-card {
  min-height: 202px;
  padding: 16px 19px 17px;
  border-radius: 20px;
  border: 0.5px solid #071021;
  background: linear-gradient(118.592deg, var(--match-surface) 0%, var(--figma-card, #161c29) 50%);
  box-shadow: none;
}

.page--home2 .home-match-card__sport {
  min-height: 30px;
  padding: 6px 10px;
  gap: 6px;
  background: #071021;
  color: var(--match-accent);
  font-size: 14px;
  font-weight: 700;
}

.page--home2 .home-match-card__sport-icon {
  width: 18px;
  height: 18px;
}

.page--home2 .home-match-card__body {
  padding-top: 22px;
}

.page--home2 .home-match-card__day {
  font-size: 18px;
  font-weight: 800;
}

.page--home2 .home-match-card__time {
  font-size: 32px;
  line-height: 25px;
  font-weight: 900;
}

.page--home2 .home-match-card__venue {
  color: var(--figma-muted, #b4b4b4);
  font-size: 14px;
  font-weight: 500;
}

.page--home2 .home-match-card__need {
  color: var(--figma-green, #b2fe3b);
  font-size: 18px;
  font-weight: 800;
}

.page--home2 .home-match-card__cta {
  min-height: 33px;
  padding: 0 19px;
  border-color: var(--figma-green, #b2fe3b);
  background: #09332f;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.page--home2 .home-load-more {
  margin-top: 28px;
}

.page--home2 .home-load-more__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 38px;
  padding: 0 25px;
  border: 1px solid var(--figma-green, #b2fe3b);
  border-radius: 100px;
  background: #09332f;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.page--home2 .home-how {
  margin-top: 144px;
  padding-bottom: 96px;
  scroll-margin-top: 92px;
}

.page--home2 .home-how__head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.page--home2 .home-how__head h2 {
  margin: 0;
  max-width: 890px;
  font-family: Archivo, Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.7rem, 3.35vw, 48px);
  line-height: 52px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page--home2 .home-how__head p {
  margin: 0;
  max-width: 820px;
  color: var(--figma-muted, #b4b4b4);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.page--home2 .home-how__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 100px;
  background: var(--figma-green, #b2fe3b);
  color: var(--figma-ink, #1b1a1c);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.page--home2 .home-how__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.page--home2 .home-how-card {
  min-height: 167px;
  padding: 22px 24px;
  border: 0.5px solid #3a383c;
  border-radius: 15px;
  background: var(--figma-card, #161c29);
}

.page--home2 .home-how-card h3 {
  margin: 0 0 14px;
  color: var(--figma-green, #b2fe3b);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page--home2 .home-how-card p {
  margin: 0;
  color: var(--figma-muted, #b4b4b4);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.page--home2 .home-how__faq {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 22px;
  margin: 34px auto 0;
  border: 1px solid var(--figma-green, #b2fe3b);
  border-radius: 100px;
  background: #09332f;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.app-shell--home2 .footer-note {
  position: relative;
  z-index: 1;
  min-height: 71px;
  padding: 0;
  display: flex;
  align-items: center;
  background: var(--figma-field, #11161f);
}

.app-shell--home2 .footer-note__inner {
  padding: 0;
  color: var(--figma-muted, #b4b4b4);
}

.app-shell--home2 .footer-note__links a,
.app-shell--home2 .footer-note span {
  color: var(--figma-muted, #b4b4b4);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .page--home2 .home-filter-row--figma {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page--home2 .match-listing-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .page--home2 .match-listing-filters .home-filter-group,
  .page--home2 .home-filter-row--figma .home-filter-group {
    flex: 0 1 auto;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
  }

  .page--home2 .home-filter-group--single-line {
    flex-wrap: wrap;
    white-space: normal;
  }

  .publish-match-page .registration-grid,
  .publish-match-page .auth-shell--registration {
    grid-template-columns: 1fr;
  }

  .publish-match-page .registration-summary,
  .publish-match-page .registration-form {
    min-width: 0;
  }

  .club-landing-v2__superclub {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .club-landing-v2__media {
    width: min(240px, 74vw);
    height: min(240px, 74vw);
  }

  .page--home2 .home-match-grid--featured,
  .page--home2 .home-how__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page--home2 .container,
  .app-shell--home2 .topbar > .container,
  .app-shell--home2 .footer-note > .container {
    width: min(100%, calc(100% - 24px));
  }

  .app-shell--home2 .topbar__bar--home2 {
    min-height: 56px;
  }

  .app-shell--home2 .brand--home .logo-img {
    width: min(218px, calc(100vw - 132px));
  }

  .page--home2 .home-hero {
    padding: 78px 0 26px;
  }

  .page--home2 .home-hero__title {
    max-width: 11ch;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .page--home2 .home-hero__title span {
    white-space: normal;
  }

  .page--home2 .home-hero__lede {
    font-size: 16px;
    line-height: 22px;
  }

  .page--home2 .home-hero__mode-switch {
    position: static;
    width: 100%;
    margin-bottom: 42px;
  }

  .page--home2 .home-mode-switch__button {
    min-height: 48px;
    font-size: 15px;
  }

  .page--home2 .home-section-head__copy h2 {
    font-size: 28px;
  }

  .page--home2 .home-section-head__copy p,
  .page--home2 .home-how__head p,
  .page--home2 .home-how-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .page--home2 .home-filter-row--figma {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 26px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .page--home2 .home-filter-row--figma::-webkit-scrollbar {
    display: none;
  }

  .page--home2 .home-filter-group {
    flex: 0 0 auto;
  }

  .page--home2 .home-match-grid--featured,
  .page--home2 .home-how__cards {
    grid-template-columns: 1fr;
  }

  .page--home2 .home-match-card__actions {
    justify-content: flex-start;
  }

  .page--home2 .home-match-card__share-actions {
    flex-wrap: wrap;
  }

  .page--home2 .home-how {
    margin-top: 86px;
    padding-bottom: 60px;
  }

  .page--home2 .home-how__head h2 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .page--home2 .home-how__cards {
    margin-top: 38px;
  }

  .page--home2 .home-how-card h3 {
    font-size: 26px;
  }

  .app-shell--home2 .footer-note__inner {
    justify-content: center;
  }
}

/* Locked product rule: this switch style applies everywhere and should not be changed. */
.page--home2 .home-mode-switch,
.mobile-menu__mode-switch {
  padding: 6px !important;
  gap: 6px !important;
  border: 1px solid rgba(17, 24, 30, 0.95) !important;
  border-radius: 999px !important;
  background: rgba(5, 10, 14, 0.94) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 12px 28px rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: none !important;
}

.page--home2 .home-mode-switch__button,
.mobile-menu__mode-button {
  border: 1px solid transparent !important;
  background: #1b1f22 !important;
  color: rgba(251, 246, 237, 0.68) !important;
  box-shadow: none !important;
}

.page--home2 .home-mode-switch__button.is-active,
.mobile-menu__mode-button.is-active {
  border-color: rgba(178, 254, 59, 0.72) !important;
  background: #b2fe3b !important;
  color: #1b1a1c !important;
  box-shadow:
    0 0 0 3px rgba(178, 254, 59, 0.18),
    0 0 18px rgba(178, 254, 59, 0.2) !important;
}

@media (max-width: 759px) {
  .page--home2 .home-hero__mode-switch {
    width: calc(100vw - 32px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .page--home2 .home-mode-switch__button {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 4px !important;
    font-size: 12px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }
}
