:root {
  --bg: #101411;
  --panel: #f3f5ee;
  --ink: #f8fbf4;
  --text: #18201a;
  --muted: #64706a;
  --line: rgba(248, 251, 244, 0.22);
  --lime: #c7ff46;
  --cyan: #39d4ff;
  --coral: #ff6b59;
  --charcoal: #171b18;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(16, 20, 17, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 52px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  align-items: center;
  background: var(--lime);
  border-radius: 8px;
  color: #121711;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a,
.nav-toggle {
  border-radius: 8px;
  color: rgba(248, 251, 244, 0.86);
  font: inherit;
  padding: 10px 13px;
}

.site-nav a:hover,
.nav-toggle:hover {
  background: rgba(248, 251, 244, 0.1);
}

.nav-cta {
  border: 1px solid var(--line);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  display: none;
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.94), rgba(16, 20, 17, 0.5) 56%, rgba(16, 20, 17, 0.2)),
    linear-gradient(0deg, rgba(16, 20, 17, 0.86), rgba(16, 20, 17, 0.08) 42%);
}

.hero-content {
  max-width: 740px;
  padding: 164px clamp(18px, 6vw, 82px) 92px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.1rem, 9vw, 6.8rem);
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.hero-content p:not(.eyebrow) {
  color: rgba(248, 251, 244, 0.84);
  font-size: 1.2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

.button-primary {
  background: var(--lime);
  color: #121711;
}

.button-secondary {
  background: rgba(248, 251, 244, 0.12);
  border: 1px solid var(--line);
}

.ticker {
  background: var(--lime);
  color: #121711;
  display: grid;
  font-weight: 800;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.ticker span {
  border-right: 1px solid rgba(18, 23, 17, 0.18);
  padding: 15px clamp(14px, 2vw, 28px);
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 82px);
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
}

.split p:not(.eyebrow),
.contact p,
.community-band p,
.section-heading {
  color: rgba(248, 251, 244, 0.72);
  max-width: 620px;
}

.text-link {
  border-bottom: 2px solid var(--cyan);
  color: var(--cyan);
  display: inline-flex;
  font-weight: 800;
  margin-top: 12px;
}

.match-board {
  display: grid;
  gap: 14px;
}

.match-board article {
  background: var(--panel);
  border-left: 8px solid var(--coral);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
}

.match-board span,
.game-card span {
  color: #536055;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.match-board strong {
  font-size: 1.45rem;
}

.match-board time {
  color: var(--muted);
}

.match-board.is-loading article {
  opacity: 0.72;
}

.games {
  background: #e9ece4;
  color: var(--text);
}

.games .eyebrow {
  color: #25645f;
}

.games .section-heading {
  color: #4d574f;
}

.game-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.game-card {
  background: #ffffff;
  border: 1px solid rgba(24, 32, 26, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 32, 26, 0.12);
  min-width: 0;
  overflow: hidden;
}

.game-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.game-card div {
  padding: 20px;
}

.game-card p {
  color: #536055;
  margin-bottom: 0;
}

.guides {
  background: var(--charcoal);
}

.guide-list {
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.guide-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr minmax(170px, 0.42fr);
  padding: 24px 0;
}

.guide-list a:hover strong {
  color: var(--lime);
}

.guide-list span {
  color: var(--cyan);
  font-weight: 800;
}

.guide-list small {
  color: rgba(248, 251, 244, 0.62);
  font-size: 0.95rem;
}

.community-band {
  align-items: stretch;
  background: #f2f4ee;
  color: var(--text);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.community-band img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.community-band div {
  align-self: center;
  padding: clamp(42px, 6vw, 82px);
}

.community-band .eyebrow {
  color: #25645f;
}

.community-band p {
  color: #4d574f;
}

.contact {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: rgba(248, 251, 244, 0.75);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(248, 251, 244, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  outline: 2px solid rgba(199, 255, 70, 0.26);
}

.contact-form select option {
  color: var(--text);
}

.form-note {
  color: var(--lime);
  min-height: 24px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(248, 251, 244, 0.68);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(18px, 6vw, 82px);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(16, 20, 17, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 67px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 128px;
  }

  .ticker,
  .split,
  .game-grid,
  .community-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-bottom: 1px solid rgba(18, 23, 17, 0.18);
    border-right: 0;
  }

  .guide-list a {
    align-items: start;
    grid-template-columns: 42px 1fr;
  }

  .guide-list small {
    grid-column: 2;
  }

  .community-band img {
    min-height: 300px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 142px;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 3rem;
  }

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