:root {
  --pitch-black: #030509;
  --black: #07090d;
  --ink: #f8f8f6;
  --muted: #a9adb7;
  --panel: rgba(8, 11, 17, .88);
  --panel-2: rgba(15, 18, 26, .94);
  --blood: #d71920;
  --blood-dark: #7f070b;
  --ice: #dfe8ef;
  --line: rgba(255, 255, 255, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .62);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 25, 32, .28), transparent 24rem),
    linear-gradient(180deg, #05070c 0%, #090a0d 48%, #040506 100%);
  font-family: "Arial Narrow", Impact, Haettenschweiler, "Segoe UI Condensed", sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .22;
}

.wolf-bg::after {
  position: fixed;
  right: -90px;
  top: 60px;
  z-index: -1;
  width: min(54vw, 680px);
  aspect-ratio: 1;
  content: "";
  background: url("blazers-logo.jpg") center / contain no-repeat;
  filter: grayscale(.35) contrast(1.1);
  opacity: .12;
  pointer-events: none;
}

a { color: inherit; }

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

.inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(2, 4, 8, .92);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img,
.crest-img {
  border-radius: 5px;
  object-fit: cover;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 950;
  line-height: .8;
  overflow-wrap: anywhere;
  word-break: normal;
}

.brand strong::first-line {
  color: #fff;
}

.brand span {
  display: block;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 950;
}

.navlinks a {
  position: relative;
  padding: 28px 0 24px;
  text-decoration: none;
  white-space: nowrap;
}

.navlinks a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  content: "";
  background: transparent;
}

.navlinks a[aria-current="page"] {
  color: #fff;
}

.navlinks a[aria-current="page"]::after {
  background: var(--blood);
}

.social-mini {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.social-widget {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.social-widget:hover,
.social-widget:focus-visible {
  border-color: rgba(215,25,32,.8);
  background: rgba(215,25,32,.92);
  transform: translateY(-1px);
}

.social-widget img {
  width: 18px;
  height: 18px;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  min-height: 650px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2,4,8,.98) 0%, rgba(2,4,8,.85) 42%, rgba(2,4,8,.25) 100%),
    radial-gradient(circle at 76% 45%, rgba(215,25,32,.46), transparent 26rem),
    linear-gradient(135deg, rgba(255,255,255,.07), transparent 28%);
}

.ice-scratch::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    repeating-linear-gradient(112deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px),
    radial-gradient(circle at 50% 115%, rgba(218,232,242,.18), transparent 30rem);
  mix-blend-mode: screen;
  opacity: .45;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .78fr);
  gap: 36px;
  align-items: center;
  padding: 70px 0 86px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0 0 16px;
  font-size: clamp(60px, 8vw, 104px);
  font-style: italic;
  line-height: .88;
  text-shadow: 0 8px 32px rgba(0,0,0,.8);
}

.hero-copy h1 span {
  display: block;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-copy h1 strong {
  display: block;
  color: var(--blood);
  font-weight: 950;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-crest {
  display: grid;
  place-items: center;
  min-height: 480px;
  padding: 20px;
}

.hero-crest img {
  width: min(450px, 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 25px 80px rgba(0,0,0,.68);
}

.hero-crest p,
.page-motto {
  margin: 32px 0 0;
  max-width: 100%;
  color: rgba(215,25,32,.9);
  font-size: clamp(30px, 5vw, 58px);
  font-style: italic;
  font-weight: 950;
  line-height: .9;
  text-align: center;
  transform: rotate(-3deg);
  transform-origin: center;
}

.fixture-list + .page-motto {
  margin-top: 46px;
}

.red-swipe {
  background:
    linear-gradient(135deg, transparent 0 62%, rgba(215,25,32,.24) 62% 74%, transparent 74%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
}

.kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--blood);
  font-size: 13px;
  font-style: italic;
  font-weight: 950;
}

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

.title-safe,
h1,
h2,
h3,
.panel-title,
.kicker,
.team-lockup span,
.match-line span,
.brand strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

h1,
h2 {
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0;
  line-height: .92;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(58px, 10vw, 112px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5.5vw, 62px);
}

h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
  font-style: italic;
  font-weight: 950;
  line-height: 1.06;
}

p {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
}

.lead {
  max-width: 560px;
  margin-bottom: 24px;
  color: #fff;
  font-family: inherit;
  font-size: 23px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.button,
button,
.match-card a,
.panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  background: linear-gradient(180deg, #ef252a, #a8080d);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary,
.panel a,
.match-card a {
  background: rgba(0,0,0,.5);
}

.section {
  padding: 64px 0;
}

.section.tight {
  padding: 34px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head > a {
  justify-self: end;
  max-width: 100%;
  white-space: nowrap;
}

.compact-head h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.card,
.match-card,
.news-card,
.sponsor-card,
.player {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(17,21,31,.94), rgba(5,7,11,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow);
}

.panel {
  padding: 22px;
}

.panel-title {
  margin-bottom: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

.split-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, .68fr);
  gap: 14px;
}

.match-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.match-line div,
.team-lockup {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.match-line img,
.team-lockup img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
}

.score {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-style: italic;
  font-weight: 950;
  white-space: nowrap;
}

.quick-access {
  display: grid;
  gap: 8px;
}

.quick-access a {
  justify-content: space-between;
  min-height: 31px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: transparent;
}

.quick-access a::after {
  content: ">";
  color: var(--blood);
}

.news-grid {
  align-items: stretch;
}

.news-card {
  display: grid;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.news-card > div,
.player-image,
.ice-rink-visual {
  min-height: 145px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.82)),
    radial-gradient(circle at 45% 20%, rgba(215,25,32,.35), transparent 8rem),
    url("blazers-logo.jpg") center / cover no-repeat;
  filter: grayscale(.25);
}

.news-card p,
.news-card h3,
.news-card a {
  margin-left: 16px;
  margin-right: 16px;
}

.news-card h3 {
  min-height: 2.25em;
}

.news-card p {
  margin-top: 14px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.news-card a {
  margin-bottom: 16px;
  color: var(--blood);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

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

.sponsor-card {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 20px;
}

.sponsor-card img {
  width: min(230px, 100%);
}

.page-hero {
  padding: 54px 0 28px;
  background:
    linear-gradient(90deg, rgba(2,4,8,.98), rgba(2,4,8,.78), rgba(215,25,32,.16)),
    radial-gradient(circle at 85% 10%, rgba(215,25,32,.32), transparent 19rem);
}

.fixture-list {
  display: grid;
  gap: 14px;
}

.fixture-row,
.result-row {
  display: grid;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.fixture-row {
  grid-template-columns: 78px 76px minmax(96px, 1fr) 34px minmax(96px, 1fr) minmax(128px, .76fr);
}

.result-row {
  grid-template-columns: 48px minmax(130px, 1fr) auto minmax(130px, 1fr) auto;
}

.date-box,
.result-badge {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: linear-gradient(180deg, #ef252a, #92070b);
  color: #fff;
  font-weight: 950;
  text-align: center;
}

.date-box span {
  display: block;
  font-size: 28px;
  line-height: .9;
}

.date-box small {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
}

.time,
.fixture-row b,
.match-status {
  color: #fff;
  font-size: 17px;
}

.match-meta {
  display: grid;
  gap: 6px;
  justify-items: start;
  text-transform: uppercase;
}

.fixture-row .team-lockup span,
.result-row .team-lockup span {
  line-height: 1.08;
  text-align: center;
}

.match-meta span,
.match-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.03);
  font-weight: 950;
  letter-spacing: .04em;
}

.match-status {
  text-transform: uppercase;
}

.result-badge {
  width: 42px;
  min-height: 58px;
  font-size: 26px;
}

.result-row.win .result-badge {
  background: linear-gradient(180deg, #3cad4f, #116e26);
}

.team-layout,
.sponsor-page {
  display: grid;
  gap: 16px;
}

.wide-panel {
  max-width: 780px;
}

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

.arena-card,
.join-panel,
.become-sponsor,
.sponsor-banner,
.cta-row {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(260px, 1fr);
  gap: 20px;
  align-items: center;
}

.join-panel,
.become-sponsor,
.cta-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ice-rink-visual {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.24) 0 2px, transparent 2px 24px),
    linear-gradient(135deg, #dfe8ef, #6c7788);
}

.map-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,0,0,.55)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 1px, transparent 1px 18px);
}

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

.player {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.player span {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #08090d;
  font-weight: 950;
}

.player-image {
  min-height: 230px;
}

.player-number {
  display: block;
  margin: 14px 16px 4px;
  color: #fff;
  font-size: 34px;
  font-style: italic;
  font-weight: 950;
  line-height: .9;
  text-shadow: 0 4px 18px rgba(0,0,0,.9);
}

.player h3,
.player p {
  margin-left: 16px;
  margin-right: 16px;
}

.player h3 {
  margin-top: 8px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.player p {
  color: var(--blood);
  font-weight: 800;
}

.sponsor-banner img {
  width: min(340px, 100%);
  justify-self: center;
}

.red-cta,
.become-sponsor,
.join-panel {
  background:
    linear-gradient(90deg, rgba(215,25,32,.88), rgba(75,4,7,.82)),
    linear-gradient(135deg, rgba(255,255,255,.1), transparent);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 18px;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  background: rgba(2,4,8,.72);
  color: var(--ink);
  padding: 11px;
  font: 14px "Segoe UI", Arial, sans-serif;
  text-transform: none;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.club-info b {
  color: #fff;
}

.club-info a {
  color: #fff;
  font-weight: 800;
}

.contact-map {
  display: grid;
  gap: 6px;
  min-height: 128px;
  padding: 28px;
  color: #111;
  background:
    radial-gradient(circle at 50% 50%, rgba(215,25,32,.95) 0 6px, transparent 7px),
    repeating-linear-gradient(35deg, rgba(0,0,0,.08) 0 1px, transparent 1px 24px),
    #e6ebef;
}

.contact-map span {
  color: #333;
  font-family: "Segoe UI", Arial, sans-serif;
  text-transform: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: #020305;
  font: 12px "Segoe UI", Arial, sans-serif;
  text-transform: none;
}

.mobile-quick-links {
  display: none;
}

@media (max-width: 980px) {
  .site-nav,
  .hero-grid,
  .split-overview,
  .section-head,
  .arena-card,
  .join-panel,
  .become-sponsor,
  .sponsor-banner,
  .cta-row,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .navlinks {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .section-head > a {
    justify-self: start;
  }

  .navlinks a {
    padding: 0 0 10px;
  }

  .navlinks a::after {
    bottom: 4px;
  }

  .grid.three,
  .grid.two,
  .sponsor-grid,
  .stats-grid,
  .roster-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fixture-row,
  .result-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .match-meta {
    justify-items: center;
  }
}

@media (max-width: 760px) {
  .inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .site-nav {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 42px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 70px);
    line-height: .9;
  }

  .page-hero {
    padding: 40px 0 24px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

  h3 {
    font-size: 20px;
  }

  .hero-crest {
    min-height: auto;
  }

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

  .grid.three,
  .grid.two,
  .sponsor-grid,
  .stats-grid,
  .roster-list {
    grid-template-columns: 1fr;
  }

  .player {
    min-height: 330px;
  }

  .mobile-quick-links {
    position: static;
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 8, .98);
  }

  .mobile-quick-links a {
    padding: 13px 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
}
