* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #14161A;
  background: #F5F3EF;
  margin: 0;
}

.text-accent {
  color: #F2A93B !important;
}

.ironclad-nav {
  background: #1A1D21;
  padding: 1rem 0;
}
.ironclad-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ironclad-nav .navbar-brand .brand-mark {
  background: #F2A93B;
  color: #1A1D21;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  line-height: 1;
}
.ironclad-nav .navbar-brand .brand-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F5F3EF;
  font-size: 1.05rem;
}
.ironclad-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: rgba(245, 243, 239, 0.8);
  padding: 0.5rem 1rem !important;
}
.ironclad-nav .nav-link:hover {
  color: #F2A93B;
}

.hero {
  background: linear-gradient(155deg, #1A1D21 0%, #2E4057 100%);
  min-height: 88vh;
  color: #F5F3EF;
}
.hero .hero-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2A93B;
  margin-bottom: 1.25rem;
}
.hero .hero-headline {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero .hero-sub {
  font-size: 1.15rem;
  color: rgba(245, 243, 239, 0.78);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.btn-accent {
  background: #F2A93B;
  border-color: #F2A93B;
  color: #1A1D21;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
}
.btn-accent:hover {
  background: rgb(239.4622009569, 152.2114832536, 20.7377990431);
  border-color: rgb(239.4622009569, 152.2114832536, 20.7377990431);
  color: #1A1D21;
}

.btn-outline-light {
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
}

.stat-card {
  background: rgba(245, 243, 239, 0.06);
  border: 1px solid rgba(245, 243, 239, 0.18);
  border-radius: 6px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.stat-card .stat-card-header {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2A93B;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.stat-card .stat-block {
  padding: 1rem 0 1.5rem;
  position: relative;
}
.stat-card .stat-block.stat-block-mid {
  border-left: 1px solid rgba(245, 243, 239, 0.18);
  border-right: 1px solid rgba(245, 243, 239, 0.18);
}
.stat-card .stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
}
.stat-card .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.65);
  margin-top: 0.35rem;
}
.stat-card .stat-card-footer {
  background: rgba(20, 22, 26, 0.35);
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.65rem;
  color: #F2A93B;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-strip {
  background: #F2A93B;
  color: #1A1D21;
  overflow: hidden;
  white-space: nowrap;
  transform: skewY(-1deg);
  margin: -1px 0;
}
.ticker-strip.ticker-strip-alt {
  background: #3F6C6B;
  color: #F5F3EF;
}
.ticker-strip .ticker-track {
  display: inline-flex;
  animation: ticker-scroll 22s linear infinite;
  transform: skewY(1deg);
  padding: 0.6rem 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.ticker-strip .ticker-track.ticker-track-reverse {
  animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}
.section-light {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #F5F3EF;
}

.section-dark {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #1A1D21;
  color: #F5F3EF;
}

.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3F6C6B;
  margin-bottom: 0.5rem;
}
.section-eyebrow.section-eyebrow-light {
  color: #F2A93B;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0;
}
.section-title.section-title-light {
  color: #F5F3EF;
}

.player-card {
  background: white;
  border: 1px solid rgba(20, 22, 26, 0.08);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(20, 22, 26, 0.08);
}
.player-card .player-number {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2A93B;
  -webkit-text-stroke: 1.5px #1A1D21;
}
.player-card .player-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0.5rem 0 0.15rem;
}
.player-card .player-pos {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3F6C6B;
  margin: 0;
}

.section-news {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: white;
}

.news-card {
  border-top: 3px solid #F2A93B;
  padding-top: 1.25rem;
  height: 100%;
}
.news-card .news-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3F6C6B;
  margin-bottom: 0.6rem;
}
.news-card .news-headline {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.news-card .news-excerpt {
  color: rgba(20, 22, 26, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.news-card .news-date {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 22, 26, 0.45);
  font-size: 0.72rem;
}

.section-sponsors {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #F5F3EF;
  border-top: 1px solid rgba(20, 22, 26, 0.08);
  border-bottom: 1px solid rgba(20, 22, 26, 0.08);
}
.section-sponsors .sponsors-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3F6C6B;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-sponsors .sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.section-sponsors .sponsor-name {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(20, 22, 26, 0.4);
  transition: color 0.2s ease;
}
.section-sponsors .sponsor-name:hover {
  color: #2E4057;
}

.schedule-list {
  border-top: 1px solid rgba(245, 243, 239, 0.15);
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245, 243, 239, 0.15);
  flex-wrap: wrap;
}
.schedule-row .schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4.5rem;
  flex-shrink: 0;
}
.schedule-row .schedule-date .schedule-day {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2A93B;
  font-size: 0.7rem;
}
.schedule-row .schedule-date .schedule-num {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.schedule-row .schedule-date .schedule-mon {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.55);
  font-size: 0.7rem;
}
.schedule-row .schedule-match {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  flex: 1;
  min-width: 14rem;
}
.schedule-row .schedule-venue {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.6);
  font-size: 0.78rem;
}

.section-cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3F6C6B;
  color: #F5F3EF;
}
.section-cta .cta-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}
.section-cta .cta-sub {
  font-size: 1.1rem;
  color: rgba(245, 243, 239, 0.85);
  margin-bottom: 1.5rem;
}

.ironclad-footer {
  background: #14161A;
  color: rgba(245, 243, 239, 0.7);
  padding: 1.75rem 0;
  font-size: 0.85rem;
}
.ironclad-footer .brand-mark {
  background: #F2A93B;
  color: #1A1D21;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.4rem;
}
.ironclad-footer .brand-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #F5F3EF;
}
