/* v3.20.3.23.80 — HBCU Hour Crown Players of the Week */
:root {
  color-scheme: dark;
  --potw-gold: #f2ca58;
  --potw-red: #d33a2f;
  --potw-green: #2fa166;
  --potw-ink: #05070b;
  --potw-panel: #11151c;
  --potw-text: #f8fafc;
  --potw-muted: #c3c9d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 58, 47, .19), transparent 32rem),
    radial-gradient(circle at 88% 0%, rgba(47, 161, 102, .18), transparent 32rem),
    var(--potw-ink);
  color: var(--potw-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--potw-gold);
  outline-offset: 3px;
}

.potw-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: .65rem clamp(1rem, 3vw, 2.3rem);
  background: rgba(4, 7, 11, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.potw-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  color: var(--potw-text);
  font-weight: 950;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.potw-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.potw-nav {
  display: flex;
  min-width: 0;
  gap: .45rem;
  flex-wrap: wrap;
}

.potw-nav a {
  padding: .6rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.potw-nav a:hover,
.potw-nav a.active {
  background: rgba(242, 202, 88, .12);
  color: var(--potw-gold);
}

.potw-hero {
  padding: clamp(3rem, 7vw, 6.5rem) 1rem clamp(2.3rem, 5vw, 4rem);
  text-align: center;
  border-bottom: 1px solid rgba(242, 202, 88, .2);
}

.potw-kicker,
.potw-division-kicker {
  margin: 0 0 .6rem;
  color: var(--potw-gold);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.potw-hero h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 6vw, 5rem);
  line-height: .98;
  text-wrap: balance;
  text-transform: uppercase;
}

.potw-hero > p:not(.potw-kicker) {
  max-width: 780px;
  margin: 1rem auto 0;
  color: var(--potw-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.potw-weekbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin: 1.5rem auto 0;
}

.potw-weekbar button,
.potw-weekbar span {
  min-height: 42px;
  padding: .65rem .95rem;
  border: 1px solid rgba(242, 202, 88, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--potw-text);
  font-weight: 900;
}

.potw-weekbar button:disabled {
  opacity: .4;
}

.potw-main {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(.85rem, 2.5vw, 2rem) 4rem;
}

.potw-division {
  --division-color: var(--potw-red);
  position: relative;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  overflow: hidden;
  scroll-margin-top: 94px;
  border: 1px solid color-mix(in srgb, var(--division-color) 60%, transparent);
  border-radius: 26px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--division-color) 17%, transparent), transparent 48%),
    rgba(13, 17, 23, .93);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.potw-division + .potw-division {
  margin-top: clamp(1.4rem, 3vw, 2.5rem);
}

.potw-division-dii {
  --division-color: var(--potw-green);
  background:
    linear-gradient(135deg, rgba(47, 161, 102, .24), transparent 52%),
    linear-gradient(180deg, rgba(11, 42, 27, .56), rgba(9, 20, 15, .94));
}

.potw-division-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 520px);
  align-items: end;
  gap: .25rem 2rem;
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--division-color) 55%, transparent);
}

.potw-division-header .potw-division-kicker {
  grid-column: 1 / -1;
  color: color-mix(in srgb, var(--division-color) 68%, white);
}

.potw-division-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.potw-division-header > p:last-child {
  margin: 0;
  color: var(--potw-muted);
  line-height: 1.5;
  text-align: right;
}

.potw-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.potw-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--division-color) 64%, transparent);
  border-radius: 19px;
  background: linear-gradient(180deg, #171b22, #0b0e13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

.potw-card-green {
  background: linear-gradient(180deg, rgba(21, 52, 36, .95), rgba(7, 20, 13, .98));
}

.potw-art {
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #030405;
  border-bottom: 1px solid color-mix(in srgb, var(--division-color) 54%, transparent);
}

.potw-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.potw-copy {
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.potw-label {
  margin: 0 0 .45rem;
  color: color-mix(in srgb, var(--division-color) 62%, white);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.potw-player {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.potw-school {
  margin: .55rem 0 1rem;
  color: var(--potw-muted);
  font-weight: 800;
}

.potw-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  margin: 0;
}

.potw-stat {
  min-width: 0;
  padding: .7rem .55rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.potw-stat-label {
  min-height: 2.4em;
  color: var(--potw-muted);
  font-size: clamp(.62rem, 1vw, .72rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.potw-stat-value {
  margin: .35rem 0 0;
  color: var(--potw-text);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 950;
}

.potw-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: var(--potw-muted);
  text-align: center;
}

.potw-status-error {
  border-color: rgba(242, 202, 88, .38);
  color: var(--potw-text);
}

.potw-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--potw-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .potw-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .potw-nav {
    width: 100%;
    padding-bottom: .2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
  }

  .potw-division {
    scroll-margin-top: 1rem;
  }

  .potw-division-header {
    grid-template-columns: 1fr;
  }

  .potw-division-header .potw-division-kicker {
    grid-column: auto;
  }

  .potw-division-header > p:last-child {
    margin-top: .45rem;
    text-align: left;
  }
}

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

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

@media (max-width: 420px) {
  .potw-header,
  .potw-main {
    padding-right: .7rem;
    padding-left: .7rem;
  }

  .potw-brand img {
    width: 44px;
    height: 44px;
  }

  .potw-brand span {
    font-size: .88rem;
  }

  .potw-hero {
    padding-right: .7rem;
    padding-left: .7rem;
  }

  .potw-division {
    padding: .75rem;
    border-radius: 19px;
  }

  .potw-card {
    border-radius: 14px;
  }
}
