:root {
  --green: #043927;
  --gold: #c4b581;
  --navy: #0b1220;
  --navy-2: #111827;
  --navy-3: #162235;
  --cream: #f4efe7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 181, 129, 0.2);
}

.site-header .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: start;
  gap: 12px;
}

.logo-mark {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.logo-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.logo-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.8);
}

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

.cta-button {
  padding: 10px 18px;
  background: var(--gold);
  color: #1b1b1b;
  border-radius: 999px;
  font-weight: 600;
}

.cta-button:hover {
  background: #e0d2a8;
}

.hero {
  padding: 56px 0 70px;
  background: radial-gradient(circle at top, rgba(4, 57, 39, 0.35), transparent 55%),
              radial-gradient(circle at bottom, rgba(196, 181, 129, 0.2), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin: 12px 0 16px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.primary-button,
.ghost-button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: start;
  justify-content: center;
}

.primary-button {
  background: var(--gold);
  color: #1b1b1b;
}

.primary-button:hover {
  background: #e0d2a8;
}

.ghost-button {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.ghost-button:hover {
  background: rgba(196, 181, 129, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.stat-label {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
}

.photo-frame {
  border: 2px solid rgba(196, 181, 129, 0.4);
  padding: 10px;
  border-radius: 24px;
  background: var(--navy-2);
}

.photo-frame img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.accent-card {
  background: var(--navy-2);
  border: 1px solid rgba(196, 181, 129, 0.3);
  padding: 18px;
  border-radius: 16px;
  margin-top: auto;
}

.accent-title {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--gold);
}

.section {
  padding: 70px 0;
}

.section.dark {
  background: var(--navy-2);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  margin: 0;
}

.section-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--navy-3);
  border: 1px solid rgba(196, 181, 129, 0.3);
  padding: 24px;
  border-radius: 18px;
  color: var(--white);
}

.card h3 {
  margin-top: 0;
  font-weight: 700;
  color: var(--white);
}

.card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.card.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(196, 181, 129, 0.18);
}

.schedule-frame {
  border: 1px solid rgba(196, 181, 129, 0.4);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-2);
}

.schedule-frame iframe {
  width: 100%;
  height: 520px;
  border: none;
}

.schedule-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.image-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.image-grid img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.merch {
  text-align: left;
}

.merch-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.merch-card {
  background: var(--navy-3);
  border: 1px solid var(--gold);
  padding: 24px;
  border-radius: 18px;
}

.embed-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.social-media-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.social-icon:hover {
  color: var(--white);
}

footer {
  background: #060a12;
  border-top: 1px solid rgba(196, 181, 129, 0.2);
  padding: 24px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-note {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .cta-button {
    width: 100%;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


.schedule-list {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--navy-2);
}

.schedule-card {
  background: var(--navy-3);
  border: 1px solid rgba(196, 181, 129, 0.5);
  border-radius: 16px;
  padding: 16px 18px;
}

.schedule-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.schedule-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.schedule-meta {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-loading {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: 0;
}


.logo-image {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}


.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(196, 181, 129, 0.18);
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.schedule-detail {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.schedule-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.schedule-location {
  color: rgba(255, 255, 255, 0.7);
}

.schedule-link {
  color: #111827;
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.schedule-link:hover {
  background: #e0d2a8;
  color: #111827;
}


.schedule-card.is-alt {
  background: rgba(22, 34, 53, 0.75);
}

.schedule-card.is-next {
  border-color: rgba(196, 181, 129, 0.9);
  box-shadow: 0 0 24px rgba(196, 181, 129, 0.35);
}

.schedule-card.is-next .schedule-badge {
  background: rgba(196, 181, 129, 0.35);
  color: #f5e6c8;
}


.schedule-next {
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(196, 181, 129, 0.25);
  color: #f5e6c8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}


.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  gap: 24px;
  align-items: center;
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 129, 0.35);
  background: var(--navy-3);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


.schedule-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  gap: 24px;
  align-items: start;
}

.schedule-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 129, 0.35);
  background: var(--navy-3);
}

.schedule-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .schedule-layout {
    grid-template-columns: 1fr;
  }
}

.image-grid a {
  display: block;
  aspect-ratio: 3 / 4;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.schedule-when {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.schedule-stream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(196, 181, 129, 0.2);
  color: var(--gold);
  border: 1px solid rgba(196, 181, 129, 0.5);
}

.schedule-stream:hover {
  background: rgba(196, 181, 129, 0.35);
}

.schedule-stream .material-symbols-outlined {
  font-size: 20px;
}


.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.result-badge.win {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.result-badge.loss {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.result-badge.tie {
  background: rgba(234, 179, 8, 0.2);
  color: #fde68a;
  border: 1px solid rgba(234, 179, 8, 0.5);
}






.schedule-result {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-result.win {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.schedule-result.loss {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.schedule-result.tie {
  background: rgba(234, 179, 8, 0.2);
  color: #fde68a;
  border: 1px solid rgba(234, 179, 8, 0.5);
}

.schedule-spacer {
  height: 1px;
}


.schedule-left {
  display: flex;
  align-items: center;
  gap: 10px;
}


.schedule-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}
