:root {
  --color-ink: #111111;
  --color-muted: #5a5a5a;
  --color-paper: #ffffff;
  --color-sand: #e8c878;
  --color-clay: #c9962f;
  --color-field: #8b1a1a;
  --color-field-dark: #1a0f0a;
  --color-line: #e6e6e6;
  --color-alert: #8b1a1a;
  --color-gold: #c9962f;
  --color-gold-soft: #e8b856;
  --color-flame: #e85d2f;
  --shadow-soft: 0 18px 50px rgba(17, 17, 17, 0.12);
  --content-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

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

.brand-text {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-field);
}

.section,
.section-band {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 56px);
}

.section > *,
.section-band > * {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-paper);
  isolation: isolate;
}

.hero-media {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-alert);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 11vw, 7.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 220px);
  min-height: 56px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
}

.button-primary {
  background: var(--color-field);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border-color: var(--color-field);
  color: var(--color-field-dark);
}

.button-live {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
  font-size: 1rem;
  gap: 8px;
}

.button-live:hover,
.button-live:focus-visible {
  background: #cc0000;
  border-color: #cc0000;
}

.trash-talk-youtube {
  margin: 12px 0 4px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.photo-strip {
  padding: 18px 0 34px;
  overflow: hidden;
  background: #fff;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 32px);
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(720px, calc(100% - 32px));
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(6px);
}

.floating-cta .button {
  flex: 1 1 240px;
  min-width: 0;
  min-height: 52px;
  padding: 12px 28px;
  font-size: 1rem;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee 28s linear infinite;
}

.slide {
  flex: 0 0 auto;
  height: clamp(180px, 24vw, 300px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.placeholder-media {
  display: grid;
  place-items: center;
  min-height: 120px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 14px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 900;
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.section-copy {
  margin: 0;
  font-size: clamp(1.18rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.7;
}

.event-summary {
  display: grid;
  gap: 16px;
  margin: 0;
}

.event-summary div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}

.event-summary dt {
  color: var(--color-field);
  font-weight: 900;
}

.event-summary dd {
  margin: 0;
}

.event-map {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.1);
}

.section-muted {
  background: #f5f5f5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.team-card {
  --team-color: var(--color-field);
  --team-label-fg: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  height: 100%;
  padding: 28px 22px 22px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-top: 8px solid var(--team-color);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(26, 15, 10, 0.1);
}

.team-card p {
  margin: 0;
}

.team-card h3 {
  width: 100%;
  min-height: calc(1.35rem * 1.35 * 2);
  display: flex;
  align-items: flex-start;
}

.team-photo-wrap {
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 4px;
}

.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--team-color);
  color: var(--team-label-fg);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.team-card.color-red { --team-color: #d3262d; }
.team-card.color-yellow { --team-color: #f1c40f; --team-label-fg: #2a1d00; }
.team-card.color-blue { --team-color: #2569d6; }
.team-card.color-green { --team-color: #27a83a; }
.team-card.color-pink { --team-color: #f472b6; }

.trash-talk {
  display: grid;
  gap: 18px;
  margin-top: clamp(36px, 6vw, 60px);
  padding: clamp(28px, 5vw, 44px);
  background: var(--color-field-dark);
  color: #fff;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.trash-talk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: #f1c75a;
  line-height: 1.5;
}

.trash-talk-verdict {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trash-talk-live {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 6px auto 0;
  font-weight: 700;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--color-field);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.live-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

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

.schedule-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
}

.schedule-item {
  display: grid;
  grid-template-columns: 160px 200px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-left: 6px solid var(--color-field);
  border-radius: 6px;
  font-weight: 700;
}

.schedule-time {
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.schedule-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.schedule-tag.league {
  background: var(--color-field);
  color: #fff;
}

.schedule-tag.exhibition {
  background: var(--color-gold);
  color: var(--color-field-dark);
}

.schedule-tag.ceremony {
  background: var(--color-ink);
  color: #fff;
}

.schedule-match {
  color: var(--color-muted);
  font-size: 1rem;
}

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

.rule-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.rule-number {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-field);
  line-height: 1;
}

.rule-card h3 {
  font-size: 1.15rem;
  line-height: 1.4;
}

.rule-note {
  display: inline-block;
  margin-left: 6px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.rule-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.rule-card li + li {
  margin-top: 4px;
}

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

.logo-placeholder {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  background: #fff;
  border: 1px dashed #c0c0c0;
  color: var(--color-muted);
  font-weight: 900;
}

.logo-sponsor {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.logo-sponsor img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.sponsor-banner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, #8b1a1a, #5a0f0f);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.24);
}

.sponsor-banner-text {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.sponsor-banner-text .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.sponsor-banner-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.sponsor-banner-text p {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.sponsor-banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  background: #fff;
  color: var(--color-field);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.section-cta {
  background: var(--color-field-dark);
  color: #fff;
}

.cta-panel {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.cta-panel p {
  max-width: 700px;
  margin: 0;
}

.cta-panel .button-primary {
  background: #fff;
  color: var(--color-field-dark);
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--color-line);
}

.event-thumb {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.event-item time {
  display: block;
  color: var(--color-alert);
  font-weight: 900;
}

.event-item p {
  margin: 8px 0 0;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--color-line);
  background: #fff;
}

.accordion-trigger {
  width: 100%;
  min-height: 64px;
  padding: 18px 56px 18px 22px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger::after {
  float: right;
  margin-right: -34px;
  content: "+";
  color: var(--color-field);
  font-size: 1.4rem;
  line-height: 1;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.accordion-panel p {
  margin: 0;
}

.site-footer {
  padding: 32px 20px;
  background: var(--color-ink);
  color: #fff;
  text-align: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .two-column,
  .team-grid,
  .logo-grid,
  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-item {
    grid-template-columns: 130px 1fr;
    grid-template-areas:
      "time tag"
      "time match";
    gap: 6px 18px;
  }

  .schedule-time { grid-area: time; align-self: center; }
  .schedule-tag { grid-area: tag; justify-self: start; }
  .schedule-match { grid-area: match; }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .nav {
    gap: 6px 14px;
    font-size: 0.86rem;
  }

  .floating-cta {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 12px 16px;
    border-radius: 16px;
  }

  .floating-cta .button {
    flex: 1 1 0;
  }

  .two-column,
  .team-grid,
  .logo-grid,
  .event-item,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .event-summary div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "time"
      "tag"
      "match";
    padding: 16px 18px;
  }

  .schedule-tag {
    justify-self: start;
  }
}
