:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #d7dee8;
  --ice: #f3f8fb;
  --white: #ffffff;
  --navy: #102a43;
  --blue: #1769aa;
  --red: #d62839;
  --gold: #ffb703;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ice);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.84), rgba(7, 21, 36, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(5, 18, 32, 0.18);
}

.brand-mark img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 3vw, 32px);
  font-weight: 700;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.main-nav a:hover {
  border-color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.92) 0%, rgba(5, 18, 32, 0.68) 42%, rgba(5, 18, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 18, 32, 0.55), rgba(5, 18, 32, 0.05));
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 74px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-button {
  margin-top: 4px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 12px 20px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

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

.next-game {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  display: grid;
  gap: 6px;
  width: min(300px, calc(100% - 36px));
  border-left: 4px solid var(--gold);
  padding: 18px;
  background: rgba(5, 18, 32, 0.76);
  backdrop-filter: blur(12px);
}

.next-game span,
.next-game small {
  color: rgba(255, 255, 255, 0.72);
}

.next-game strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 26px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  display: grid;
  gap: 6px;
  min-height: 128px;
  place-items: center;
  background: var(--white);
  text-align: center;
}

.stats-band strong {
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 42px;
}

.section {
  padding: 76px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.section-heading p:not(.kicker),
.contact-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  padding: 18px;
  background: var(--white);
}

.schedule-item time {
  color: var(--navy);
  font-weight: 800;
}

.schedule-item h3,
.news-card h3,
.info-grid h3 {
  margin: 0 0 6px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
}

.schedule-item p,
.news-card p,
.info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tag {
  min-width: 56px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.tag.home {
  background: var(--red);
}

.tag.away {
  background: var(--blue);
}

.tag.practice {
  background: var(--navy);
}

.summer-schedule-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(23, 105, 170, 0.16) 0 120px, transparent 122px),
    radial-gradient(circle at 72% 6%, rgba(23, 105, 170, 0.12) 0 150px, transparent 152px),
    linear-gradient(135deg, #eaf5fb, #ffffff);
}

.news-update-panel {
  margin-top: 28px;
  padding: 32px;
}

.summer-schedule-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.summer-note h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.summer-note p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.summer-note a {
  color: var(--blue);
  font-weight: 800;
}

.cost-callout {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  border-left: 6px solid var(--red);
  padding: 16px 18px;
  background: var(--white);
}

.cost-callout span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-callout strong {
  color: var(--navy);
  font-size: 38px;
}

.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.summer-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 17px;
}

.summer-table th,
.summer-table td {
  border: 1px solid #1f2937;
  padding: 9px 10px;
  text-align: left;
}

.summer-table th {
  color: var(--navy);
  background: #f8fafc;
  font-size: 18px;
}

.summer-table td:first-child,
.summer-table td:nth-child(2),
.summer-table td:nth-child(4),
.summer-table td:nth-child(5) {
  text-align: center;
  white-space: nowrap;
}

.summer-table td:nth-child(3) {
  min-width: 240px;
}

.off-row {
  color: var(--muted);
  background: #f1f5f9;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  background: var(--white);
}

.info-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-grid article,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

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

.players-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 105, 170, 0.16) 0 84px, transparent 86px),
    radial-gradient(circle at 97% 27%, rgba(23, 105, 170, 0.12) 0 84px, transparent 86px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 241, 249, 0.88));
}

.players-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.42) 43% 44%, transparent 45%),
    linear-gradient(155deg, transparent 0 58%, rgba(16, 42, 67, 0.08) 59% 60%, transparent 61%);
  opacity: 0.7;
}

.players-section > * {
  position: relative;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.player-card {
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.player-photo {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border: 2px dashed rgba(23, 105, 170, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(23, 105, 170, 0.08), rgba(214, 40, 57, 0.08)),
    repeating-linear-gradient(45deg, rgba(16, 42, 67, 0.04) 0 8px, transparent 8px 16px);
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-photo span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: rgba(16, 42, 67, 0.62);
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.player-card h3 {
  min-height: 48px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.news-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 60px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--navy);
}

.contact-band .kicker {
  color: var(--gold);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--white);
}

.inner-header {
  background: rgba(7, 21, 36, 0.94);
}

.page-hero {
  display: grid;
  min-height: 460px;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 64px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.92), rgba(5, 18, 32, 0.54)),
    url("assets/team-hero.jpg") center / cover;
}

.players-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.9), rgba(5, 18, 32, 0.48)),
    url("assets/team-hero.jpg") center / cover;
}

.team-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.9), rgba(5, 18, 32, 0.48)),
    url("assets/team-hero.jpg") center / cover;
}

.volunteers-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.92), rgba(5, 18, 32, 0.5)),
    url("assets/team-hero.jpg") center / cover;
}

.sponsorship-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.92), rgba(5, 18, 32, 0.5)),
    url("assets/team-hero.jpg") center / cover;
}

.media-hero {
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.9), rgba(5, 18, 32, 0.48)),
    url("assets/team-hero.jpg") center / cover;
}

.page-hero > div {
  max-width: 780px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.page-hero p:not(.kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.65;
}

.coach-section {
  background: var(--white);
}

.support-section {
  background: var(--white);
}

.media-section {
  background: var(--white);
}

.video-section {
  background: var(--ice);
}

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

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

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

.photo-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.photo-card h3,
.video-card h3 {
  margin: 0;
  padding: 16px 16px 6px;
  color: var(--navy);
  font-size: 22px;
}

.video-card p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.photo-placeholder,
.video-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 105, 170, 0.12), rgba(214, 40, 57, 0.1)),
    repeating-linear-gradient(45deg, rgba(16, 42, 67, 0.05) 0 8px, transparent 8px 16px);
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
}

.photo-placeholder span,
.video-placeholder span {
  display: grid;
  min-width: 78px;
  min-height: 78px;
  place-items: center;
  border-radius: 50%;
  color: rgba(16, 42, 67, 0.64);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.support-card,
.sponsor-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--ice);
}

.support-card h3,
.sponsor-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.support-card p,
.sponsor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.sponsor-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-sponsor {
  border-left: 6px solid var(--gold);
  background: #fffaf0;
}

.featured-role {
  border-left: 6px solid var(--red);
}

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

.checklist-section {
  background: var(--ice);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.checklist article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.checklist strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.checklist p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.roster-page-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 105, 170, 0.16) 0 84px, transparent 86px),
    radial-gradient(circle at 97% 27%, rgba(23, 105, 170, 0.12) 0 84px, transparent 86px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 241, 249, 0.88));
}

.roster-page-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.coach-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--ice);
}

.coach-card.head-coach {
  grid-column: 1 / -1;
  border-left: 6px solid var(--red);
}

.coach-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.coach-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
}

.coach-title p {
  margin: 4px 0 0;
  color: var(--red);
  font-weight: 800;
}

.coach-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 18, 32, 0.86), rgba(5, 18, 32, 0.28) 52%, rgba(5, 18, 32, 0.86));
  }

  .hero-content {
    align-self: end;
    margin: 0 18px 172px;
    padding-top: 120px;
  }

  .next-game {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .stats-band,
  .split,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .summer-schedule-layout {
    grid-template-columns: 1fr;
  }

  .tag {
    width: max-content;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .support-grid,
  .sponsor-grid,
  .photo-grid,
  .video-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .coach-card.head-coach {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 44px;
  }

  .stats-band,
  .info-grid,
  .players-grid {
    grid-template-columns: 1fr;
  }
}
