:root {
  --hub-ink: #0d0f13;
  --hub-panel: #161a22;
  --hub-panel-deep: #10131a;
  --hub-line: #2a3140;
  --hub-text: #f5f6fb;
  --hub-muted: #a6b0c4;
  --hub-gold: #edba25;
  --hub-sky: #71b9ff;
  --hub-coral: #ff998d;
}

.sports-hub {
  min-width: 320px;
  min-height: 100vh;
  color: var(--hub-text);
  background: var(--hub-ink);
}

.sports-hub__notice {
  padding: 10px 20px;
  color: var(--hub-gold);
  border-bottom: 1px solid rgba(237,186,37,.28);
  background: #18150d;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.sports-hub__header,
.sports-hub__hero,
.sports-hub__footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sports-hub__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  gap: 28px;
}

.sports-hub__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.sports-hub__brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--hub-gold);
  border: 1px solid #3a4354;
  border-radius: 12px;
  background: #202633;
}

.sports-hub__brand-icon svg {
  width: 25px;
  height: 25px;
}

.sports-hub__brand strong,
.sports-hub__brand small {
  display: block;
}

.sports-hub__brand strong {
  color: var(--hub-text);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.sports-hub__brand strong span {
  color: var(--hub-gold);
}

.sports-hub__brand small {
  margin-top: 3px;
  color: var(--hub-muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sports-hub__header nav {
  display: flex;
  gap: 9px;
}

.sports-hub__header nav a {
  padding: 10px 15px;
  color: var(--hub-muted);
  border: 1px solid var(--hub-line);
  border-radius: 9px;
  background: var(--hub-panel-deep);
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
}

.sports-hub__header nav a:hover {
  color: #18140a;
  border-color: var(--hub-gold);
  background: var(--hub-gold);
}

.sports-hub__hero {
  padding: 92px 0 84px;
}

.sports-hub__intro {
  max-width: 650px;
}

.sports-hub__intro h1 {
  max-width: 620px;
  margin: 0;
  color: var(--hub-text);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: .92;
}

.sports-hub__intro p {
  max-width: 530px;
  margin: 24px 0 0;
  color: var(--hub-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.sports-hub__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.sports-choice {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 408px;
  overflow: hidden;
  color: var(--hub-text);
  border: 1px solid var(--hub-line);
  border-radius: 14px;
  background: var(--hub-panel);
  text-decoration: none;
}

.sports-choice::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 58%;
  content: "";
  border: 1px solid currentColor;
  border-bottom: 0;
  border-right: 0;
  border-radius: 100% 0 0;
  opacity: .22;
}

.sports-choice--basketball {
  color: var(--hub-sky);
}

.sports-choice--baseball {
  color: var(--hub-coral);
}

.sports-choice__copy {
  z-index: 2;
  display: flex;
  flex: 1 1 62%;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 35px;
}

.sports-choice__copy > span {
  color: currentColor;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sports-choice h2 {
  margin: 18px 0 13px;
  color: var(--hub-text);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: 0;
  line-height: .95;
}

.sports-choice p {
  max-width: 280px;
  margin: 0;
  color: var(--hub-muted);
  font-size: .92rem;
  line-height: 1.55;
}

.sports-choice b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--hub-text);
  font-size: .92rem;
}

.sports-choice b svg {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.sports-choice img {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: 0;
  width: 57%;
  height: 83%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-16px 14px 28px rgba(0,0,0,.43));
  transition: transform .25s ease;
}

.sports-choice--baseball img {
  width: 62%;
  height: 88%;
  object-position: 63% bottom;
}

.sports-choice:hover {
  border-color: currentColor;
  background: #1a1f2a;
}

.sports-choice:hover img {
  transform: translateY(-6px) scale(1.03);
}

.sports-hub__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 38px;
  color: var(--hub-muted);
  border-top: 1px solid var(--hub-line);
  font-size: .78rem;
}

.sports-hub__footer span {
  color: var(--hub-text);
  font-weight: 800;
}

.sports-hub__footer p {
  max-width: 500px;
  margin: 0;
  text-align: right;
}

@media (max-width: 780px) {
  .sports-hub__header,
  .sports-hub__hero,
  .sports-hub__footer {
    width: min(100% - 32px, 1180px);
  }

  .sports-hub__header {
    min-height: 82px;
  }

  .sports-hub__brand-icon {
    width: 42px;
    height: 42px;
  }

  .sports-hub__brand strong {
    font-size: 1.16rem;
  }

  .sports-hub__brand small {
    font-size: .54rem;
  }

  .sports-hub__header nav a {
    padding: 9px 11px;
    font-size: .76rem;
  }

  .sports-hub__hero {
    padding: 56px 0 56px;
  }

  .sports-hub__intro p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .sports-hub__choices {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .sports-choice {
    min-height: 352px;
  }
}

@media (max-width: 470px) {
  .sports-hub__notice {
    padding: 9px 16px;
    font-size: .62rem;
  }

  .sports-hub__header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 18px 0;
  }

  .sports-hub__header nav {
    width: 100%;
  }

  .sports-hub__header nav a {
    flex: 1;
    text-align: center;
  }

  .sports-choice__copy {
    padding: 26px;
  }

  .sports-choice p {
    max-width: 55%;
  }

  .sports-choice img {
    width: 63%;
    opacity: .84;
  }

  .sports-hub__footer {
    display: grid;
  }

  .sports-hub__footer p {
    text-align: left;
  }
}
