.public-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #050508;
  width: 100%;
  max-width: none;
}

.public-page .grain {
  z-index: 1;
}

.orb {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: floaty 12s ease-in-out infinite;
}

.orb-a {
  top: -12%;
  left: -8%;
  background: #bf00ff;
}

.orb-b {
  right: -10%;
  bottom: -18%;
  background: #00bfff;
  animation-delay: -4s;
}

@keyframes floaty {
  50% { transform: translate(4%, 6%) scale(1.08); }
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0.85rem clamp(1rem, 4vw, 2.4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 10, 0.78);
  backdrop-filter: blur(22px);
}

.public-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.public-nav a:hover {
  color: #fff;
}

.public-header .btn.active {
  border-color: var(--protv-cyan);
}

.public-header .account-chip {
  max-width: min(240px, 42vw);
}

.public-header .account-copy strong,
.public-header .account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.btn-lg {
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}

.btn-pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  50% { box-shadow: 0 0 0 6px rgba(191, 0, 255, 0.18), var(--glow); }
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(191, 0, 255, 0.18), rgba(0, 191, 255, 0.12));
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  padding: 0.55rem 0;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #fff;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.hero-kto,
.home-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-kto {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3.4rem 0 2.4rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 80, 80, 0.45);
  background: rgba(255, 40, 70, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b5c;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.25; }
}

.hero-kto h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin: 0.7rem 0 0.8rem;
}

.hero-kto h1 span {
  background: var(--protv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}

.hero-stats {
  display: flex;
  gap: 1.6rem;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.hero-logo {
  width: min(280px, 70%);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: spinGlow 10s linear infinite;
  box-shadow: 0 0 0 1px rgba(191, 0, 255, 0.45), 0 20px 80px rgba(0, 191, 255, 0.25);
}

.hero-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #bf00ff, #00bfff, #bf00ff);
  filter: blur(40px);
  opacity: 0.55;
  animation: spinGlow 8s linear infinite reverse;
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

.hero-logo {
  animation: logoFloat 4.5s ease-in-out infinite;
}

@keyframes logoFloat {
  50% { transform: translateY(-10px); }
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.home-section {
  padding: 1.6rem 0 3rem;
}

.home-section h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.calendar-card {
  padding: 1.1rem;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.year-tabs {
  display: flex;
  gap: 0.5rem;
}

.year-tabs .btn.active {
  background: var(--protv-gradient);
  border-color: transparent;
  color: #fff;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.month-card h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  color: var(--protv-cyan);
}

.cal-week,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.18rem;
}

.cal-week span {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 7px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
}

.cal-day.mute {
  opacity: 0.28;
}

.cal-day.filled {
  border-color: rgba(0, 191, 255, 0.55);
  background: linear-gradient(180deg, rgba(191, 0, 255, 0.28), rgba(0, 191, 255, 0.12));
  box-shadow: 0 0 16px rgba(191, 0, 255, 0.2);
}

.cal-day.selected {
  outline: 2px solid #00bfff;
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.82rem;
}

.cal-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--protv-gradient);
}

.day-banner {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--protv-cyan);
}

.broadcast-list {
  display: grid;
  gap: 0.8rem;
}

.broadcast-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.broadcast-card:hover {
  transform: translateY(-4px);
  border-color: var(--protv-cyan);
}

.broadcast-card time {
  font-family: var(--font-display);
  color: var(--protv-cyan);
  font-size: 1.4rem;
}

.broadcast-card time small {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.broadcast-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.broadcast-matchup img {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.3rem;
  object-fit: contain;
}

.vs {
  font-family: var(--font-display);
  color: var(--protv-cyan);
  letter-spacing: 0.2em;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.story-card,
.cta-side {
  padding: 1.4rem;
}

.story-card p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.cta-side {
  background:
    linear-gradient(160deg, rgba(191, 0, 255, 0.2), rgba(0, 191, 255, 0.08)),
    var(--panel);
}

.cta-side h3 {
  margin: 0.4rem 0 0.7rem;
}

.cta-side .btn {
  margin-top: 1rem;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

#staff .talent-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
}

.partners-home {
  padding-top: 3.2rem;
  padding-bottom: 3.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(191, 0, 255, 0.18);
}

.partners-home > .eyebrow {
  margin-bottom: 0.35rem;
}

.partners-home > h2 {
  margin: 0 0 0.55rem;
}

.partners-home-intro {
  margin: 0 0 1.4rem;
  max-width: 44rem;
  line-height: 1.55;
  font-size: 1.05rem;
}

.partners-home-panel {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.75rem 2rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 0.4rem;
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 229, 136, 0.28);
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 229, 136, 0.16), transparent 42%),
    radial-gradient(circle at 92% 80%, rgba(191, 0, 255, 0.18), transparent 44%),
    radial-gradient(circle at 50% 0%, rgba(0, 200, 255, 0.1), transparent 40%),
    linear-gradient(145deg, rgba(10, 12, 22, 0.98), rgba(6, 6, 14, 0.96));
  box-shadow:
    0 0 40px rgba(0, 229, 136, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.35);
}

.partners-home-visual {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
}

.partners-home-photo {
  width: min(100%, 280px);
  max-width: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 1px solid rgba(0, 200, 255, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.partners-home-logo {
  width: min(100%, 200px);
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 229, 136, 0.4));
}

.partners-home-copy {
  min-width: 0;
  width: 100%;
}

.partners-home-copy h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: Orbitron, var(--font-display), sans-serif;
  letter-spacing: 0.03em;
}

.partners-home-lead {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.partners-home-lead--secondary {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  margin-bottom: 1.15rem;
}

.partners-home-lead strong {
  color: #fff;
}

.partners-home-points {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.partners-home-points li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.45;
}

.partners-home-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e588, #00c8ff);
  box-shadow: 0 0 10px rgba(0, 229, 136, 0.55);
}

.partners-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.partners-home-actions .btn-primary {
  box-shadow: 0 0 22px rgba(191, 0, 255, 0.35);
}

@media (max-width: 860px) {
  .partners-home-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partners-home-lead,
  .partners-home-points {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .partners-home-actions {
    justify-content: center;
  }
}

.talent-card {
  padding: 1.3rem 1.1rem 1.2rem;
  text-align: center;
  transition: transform 0.25s var(--ease);
}

.talent-card:hover {
  transform: translateY(-6px);
}

.talent-avatar {
  width: 118px;
  height: 118px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--protv-gradient-diag);
  border: 2px solid color-mix(in srgb, var(--protv-cyan) 55%, #fff);
  box-shadow: var(--glow);
}

.talent-avatar-jeshow {
  object-position: center 12%;
}

.talent-avatar-helio,
.talent-avatar-matheus,
.talent-avatar-thales,
.talent-avatar-suellen,
.talent-avatar-mythe {
  object-position: center 12%;
}

.talent-avatar-logo {
  object-fit: contain;
  object-position: center;
  padding: 0.85rem;
  background: #08060f;
}

.talent-card p {
  color: var(--muted);
}

.talent-card span {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--protv-cyan);
  font-size: 0.85rem;
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 1rem 2.4rem;
  text-align: center;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.home-footer img {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.club-card {
  padding: 0 0 1rem;
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}

.club-card:hover {
  transform: translateY(-6px);
}

.club-banner {
  height: 140px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.club-banner img,
.club-hero-logo,
.club-id-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.club-card h3,
.club-card p {
  padding: 0 1rem;
}

.club-link {
  display: inline-block;
  margin: 0.7rem 1rem 0;
  color: var(--protv-cyan);
  font-size: 0.85rem;
}

.club-hero {
  min-height: 280px;
  display: flex;
  align-items: end;
  gap: 1.2rem;
  padding: 2.4rem clamp(1rem, 4vw, 2.4rem) 2rem;
  position: relative;
  z-index: 2;
}

.club-hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.5rem;
}

.club-id-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.club-id-card {
  text-align: center;
  padding: 1rem;
}

.club-id-card img {
  margin: 0 auto 0.7rem;
}

.color-swatches {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.color-swatches span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.public-pitch {
  margin-top: 1rem;
  min-height: 560px;
}

.public-nav a.active {
  color: #fff;
}

.closed-nights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
}

.night-card {
  text-align: left;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 14, 0.72);
  color: #fff;
  cursor: pointer;
}

.night-card span,
.night-card small {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
}

.night-card.on {
  border-color: var(--protv-cyan);
  box-shadow: var(--glow);
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.slot-mini {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: var(--muted);
}

.slot-mini.on {
  color: #fff;
  border-color: var(--protv-cyan);
  background: rgba(0, 191, 255, 0.12);
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.night-section {
  padding-top: 2.2rem;
}

.night-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.night-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.night-date-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.night-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.night-date-copy {
  text-align: right;
  min-width: 180px;
}

.night-date-copy strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.night-date-copy span {
  color: var(--protv-cyan);
  font-size: 0.88rem;
}

.night-list {
  display: grid;
  gap: 0.85rem;
}

.night-card-game {
  display: grid;
  grid-template-columns: 92px minmax(140px, 1.1fr) minmax(110px, 0.8fr) minmax(140px, 1.1fr) 148px;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(191, 0, 255, 0.32);
  background:
    linear-gradient(90deg, rgba(191, 0, 255, 0.08), rgba(0, 191, 255, 0.05)),
    rgba(8, 8, 16, 0.86);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.night-time strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.night-time span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.night-side {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.night-side-away {
  justify-content: flex-end;
  text-align: right;
}

.night-side strong,
.night-side small {
  display: block;
}

.night-side strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.night-side small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.night-crest {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.night-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.night-crest-fallback {
  background:
    linear-gradient(160deg, rgba(191, 0, 255, 0.25), rgba(0, 191, 255, 0.12));
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.night-crest-fallback.is-unknown {
  border-color: rgba(255, 255, 255, 0.2);
  color: #cfd3dc;
}

.night-mid {
  text-align: center;
}

.night-champ {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.night-champ img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.night-vs {
  display: block;
  font-family: var(--font-display);
  background: var(--protv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.22em;
  font-size: 1.15rem;
}

.night-watch {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 191, 255, 0.35);
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.night-watch small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.night-watch strong {
  color: var(--protv-cyan);
  font-size: 0.82rem;
}

.night-play {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 0.15rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.18);
}

.night-watch:hover {
  transform: translateY(-2px);
  border-color: var(--protv-cyan);
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.22);
}

.night-watch.is-off {
  opacity: 0.45;
  cursor: default;
}

.night-empty {
  text-align: center;
  padding: 2.4rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(191, 0, 255, 0.25);
  background: rgba(8, 8, 16, 0.72);
}

.night-empty-ico {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.night-empty h3 {
  margin-bottom: 0.45rem;
}

.night-empty p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto;
}

.night-skel {
  height: 108px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  background-size: 200% 100%;
  animation: nightPulse 1.2s ease-in-out infinite;
}

@keyframes nightPulse {
  50% { background-position: 100% 0; }
}

.night-foot {
  margin-top: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

@media (max-width: 960px) {
  .public-nav { display: none; }
  .hero-kto,
  .story-grid,
  .talent-grid,
  .broadcast-card,
  .broadcast-matchup,
  .year-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual { min-height: 240px; }

  .night-card-game {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "time time"
      "champ champ"
      "home away"
      "watch watch";
    text-align: center;
  }

  .night-time { grid-area: time; }
  .night-mid { grid-area: champ; }
  .night-side { grid-area: home; justify-content: center; flex-direction: column; text-align: center; }
  .night-side-away { grid-area: away; justify-content: center; text-align: center; flex-direction: column-reverse; }
  .night-watch { grid-area: watch; }
  .night-date-copy { text-align: left; }
}

@media (max-width: 640px) {
  .year-grid,
  .talent-grid,
  .story-grid,
  .club-grid,
  .demo-teams,
  .club-id-row {
    grid-template-columns: 1fr;
  }
}
