:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5e6974;
  --line: #d9dee3;
  --paper: #f6f7f8;
  --white: #ffffff;
  --red: #c83a35;
  --green: #0f8a63;
  --blue: #1464b4;
  --gold: #f2b84b;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.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: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  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(10, 15, 24, 0.9) 0%, rgba(10, 15, 24, 0.7) 42%, rgba(10, 15, 24, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0.12) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: calc(100% - 36px);
  max-width: 1120px;
  min-height: 88vh;
  margin: 0 auto;
  padding: 120px 0 48px;
  flex-direction: column;
  justify-content: flex-end;
}

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

.eyebrow.dark {
  color: var(--blue);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(42px, 9vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.countdown-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: 100%;
  max-width: 920px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.countdown-panel > *,
.countdown-grid,
.match-card > * {
  min-width: 0;
}

.panel-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.05;
}

.countdown-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 78px);
  gap: 10px;
}

.countdown-grid div {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.countdown-grid strong,
.countdown-grid span {
  display: block;
}

.countdown-grid strong {
  font-size: 30px;
}

.countdown-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.toolbar-band {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.toolbar {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.field {
  display: grid;
  width: 100%;
  max-width: 420px;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-transform: none;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--white);
}

.note {
  width: 100%;
  max-width: 1120px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.schedule-section {
  width: calc(100% - 36px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 0 72px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p:last-child {
  color: var(--muted);
  font-weight: 800;
}

.match-list {
  display: grid;
  gap: 10px;
}

.match-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.match-time {
  color: var(--blue);
  font-weight: 850;
}

.match-stage,
.match-venue {
  color: var(--muted);
  font-size: 14px;
}

.match-title {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 850;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 14px;
}

.signature-badge {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 50;
  overflow: hidden;
  border-top: 1px solid rgba(242, 184, 75, 0.34);
  border-left: 1px solid rgba(242, 184, 75, 0.34);
  border-radius: 8px 0 0;
  background: rgba(16, 24, 32, 0.94);
  box-shadow: 0 -8px 28px rgba(16, 24, 32, 0.18);
  backdrop-filter: blur(14px);
}

.signature-badge a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.signature-badge a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.signature-badge a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100vw - 36px);
    min-height: 94vh;
    padding-top: 104px;
  }

  .hero-copy,
  .countdown-panel {
    max-width: calc(100vw - 36px);
  }

  .countdown-panel,
  .toolbar,
  .section-heading,
  .match-card {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .countdown-grid div {
    flex: 1 1 calc(50% - 8px);
    min-height: 70px;
  }

  .countdown-grid strong {
    font-size: 24px;
  }

  .toolbar {
    align-items: stretch;
  }

  .field {
    max-width: none;
  }

  .actions,
  .button {
    width: 100%;
  }

  .match-card {
    gap: 8px;
  }

  .signature-badge a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }
}
