
    :root {
      --bg: #0b0d10;
      --panel: #15191f;
      --panel-2: #1b2028;
      --text: #ffffff;
      --muted: #9ca6b4;
      --border: rgba(255,255,255,.08);
      --shadow: 0 16px 40px rgba(0,0,0,.28);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,.055), transparent 30%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    .page-shell {
      width: min(1500px, calc(100% - 32px));
      margin: 0 auto;
      padding: 36px 0 60px;
    }

    header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .eyebrow {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .75rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    h1 {
      margin: 0;
      font-size: clamp(2rem, 5vw, 4.5rem);
      line-height: .95;
      letter-spacing: -.045em;
    }

    .subhead {
      margin: 12px 0 0;
      max-width: 650px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.55;
    }

    .toolbar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .search {
      position: relative;
      min-width: min(330px, 80vw);
    }

    .search input {
      width: 100%;
      border: 1px solid var(--border);
      background: var(--panel);
      color: var(--text);
      border-radius: 999px;
      padding: 13px 18px 13px 42px;
      outline: none;
      font-size: .95rem;
      transition: .2s ease;
    }

    .search input:focus {
      border-color: rgba(255,255,255,.3);
      box-shadow: 0 0 0 4px rgba(255,255,255,.04);
    }

    .search span {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
    }

    .count {
      color: var(--muted);
      font-size: .9rem;
      white-space: nowrap;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .video-card {
      background: linear-gradient(180deg, var(--panel-2), var(--panel));
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .18s ease, border-color .18s ease;
    }

    .video-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,.16);
    }

    .video-wrap {
      position: relative;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: #050607;
      cursor: pointer;
    }

    .video-wrap video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #050607;
    }

    .play-overlay {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.32));
      pointer-events: auto;
      opacity: 1;
      transition: opacity .2s ease;
    }

    .video-card:hover .play-overlay {
      opacity: 1;
    }

    .play-button {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,.92);
      color: #111;
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }

    .card-body {
      padding: 14px 15px 16px;
    }

    .video-number {
      color: var(--muted);
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 5px;
    }

    .video-title {
      margin: 0;
      font-size: .98rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .video-meta {
      margin-top: 6px;
      color: var(--muted);
      font-size: .82rem;
    }

    .empty-state {
      display: none;
      border: 1px dashed var(--border);
      color: var(--muted);
      border-radius: 18px;
      text-align: center;
      padding: 50px 20px;
      margin-top: 20px;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.86);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 1000;
    }

    .modal.open { display: flex; }

    .modal-inner {
      width: min(1100px, 96vw);
      max-height: 86vh;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .modal-video {
      width: auto;
      height: auto;
      max-width: 96vw;
      max-height: 82vh;
      display: block;
      object-fit: contain;
      background: #000;
      border-radius: 18px;
      box-shadow: 0 30px 100px rgba(0,0,0,.6);
    }

    .modal-caption {
      margin-top: 14px;
      font-size: 1rem;
      color: #fff;
    }

    .close {
      position: absolute;
      right: 0;
      top: -50px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,.2);
      background: rgba(255,255,255,.08);
      color: #fff;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
    }

    footer {
      margin-top: 42px;
      border-top: 1px solid var(--border);
      padding-top: 20px;
      color: var(--muted);
      font-size: .85rem;
    }

    @media (max-width: 1100px) {
      .video-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    @media (max-width: 780px) {
      .page-shell { width: min(100% - 22px, 1500px); padding-top: 24px; }
      .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
      .video-card { border-radius: 14px; }
      .search { min-width: 100%; }
      .toolbar { width: 100%; }
    }

    @media (max-width: 520px) {
      .video-grid { grid-template-columns: 1fr; }
      header { margin-bottom: 22px; }
    }
  
  .season-welcome {
    padding: 64px 24px;
    background: linear-gradient(135deg, #071a2f 0%, #0b3558 100%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
  }

  .season-welcome__content {
    max-width: 100%;
    margin: 0 auto;
  }

  .season-welcome__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .season-welcome h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
  }

  .season-welcome p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .season-welcome__highlight {
    margin: 34px 0;
    padding: 28px;
    border-left: 5px solid #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 8px;
  }

  .season-welcome__highlight h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4rem;
  }

  .season-welcome__highlight p {
    margin-bottom: 0;
  }

  .season-welcome__motto {
    margin-top: 30px;
    font-size: 1.35rem !important;
    line-height: 1.5 !important;
  }

  .season-welcome__cta {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 24px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
  }
  
    .season-hero {
      margin-bottom: 34px;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .season-hero h2 {
      margin: 0 0 12px;
      font-size: clamp(1.65rem, 3vw, 2.6rem);
      letter-spacing: -.025em;
    }

    .season-hero p {
      margin: 0;
      max-width: 100%;
      color: var(--muted);
      line-height: 1.7;
      font-size: 1rem;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin: 38px 0 18px;
      flex-wrap: wrap;
    }

    .section-heading h2 {
      margin: 0;
      font-size: clamp(1.45rem, 2.5vw, 2.1rem);
      letter-spacing: -.025em;
    }

    .section-heading p {
      margin: 6px 0 0;
      color: var(--muted);
      max-width: 720px;
      line-height: 1.5;
    }

    .media-feature-grid {
      display: grid;
      grid-template-columns: 1.05fr 1.95fr;
      gap: 18px;
      margin-bottom: 32px;
    }

    .photo-panel, .weekly-panel {
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--panel);
      overflow: hidden;
    }

    .photo-placeholder {
      min-height: 320px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 30px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
      color: var(--muted);
    }

    .photo-placeholder strong {
      display: block;
      color: var(--text);
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .weekly-panel {
      padding: 18px;
    }

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

    .game-card {
      border: 1px solid var(--border);
      background: var(--panel-2);
      border-radius: 18px;
      padding: 16px;
    }

    .game-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .game-title {
      margin: 0;
      font-size: 1.05rem;
    }

    .game-score {
      font-weight: 800;
      font-size: 1.05rem;
    }

    .game-details {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
      margin-bottom: 12px;
    }

    .game-detail {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.45;
    }

    .game-detail strong {
      display: block;
      color: var(--text);
      font-size: .76rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 2px;
    }

    .wrapup {
      border-top: 1px solid var(--border);
      padding-top: 12px;
      color: var(--muted);
      line-height: 1.55;
      font-size: .9rem;
    }

    .wrapup strong {
      color: var(--text);
    }

    .video-wrap.auto-ratio {
      aspect-ratio: auto;
      background: #050607;
    }

    .video-wrap.auto-ratio video {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .video-card.portrait .video-wrap {
      aspect-ratio: 9 / 16;
    }

    .video-card.landscape .video-wrap {
      aspect-ratio: 16 / 9;
    }

    .video-card.square .video-wrap {
      aspect-ratio: 1 / 1;
    }

    .video-description {
      margin-top: 8px;
      color: var(--muted);
      font-size: .85rem;
      line-height: 1.45;
    }

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

      .game-details {
        grid-template-columns: 1fr;
      }
    }

  
    .practice-section {
      margin-top: 44px;
    }

    .practice-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
      gap: 18px;
      width: 100%;
    }

    .practice-grid > .practice-card:only-child {
      grid-column: 1 / -1;
      width: 100%;
    }

    .practice-card {
      border: 1px solid var(--border);
      background: var(--panel);
      border-radius: 20px;
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .practice-card h3 {
      margin: 0 0 6px;
      font-size: 1.15rem;
    }

    .practice-focus {
      color: var(--muted);
      font-size: .88rem;
      margin-bottom: 14px;
    }

    .practice-block {
      margin-top: 12px;
    }

    .practice-block strong {
      display: block;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 4px;
    }

    .practice-block p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
      font-size: .9rem;
    }

    .daily-routine {
      margin-top: 22px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)), var(--panel);
      padding: 22px;
    }

    .daily-routine h3 {
      margin-top: 0;
    }

    .daily-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 14px;
    }

    .daily-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px;
      background: var(--panel-2);
    }

    .daily-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: .9rem;
    }

    .daily-item span {
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.4;
    }

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

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

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

  
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 110px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1200;
      width: 100%;
      border-bottom: 1px solid var(--border);
      background: rgba(11, 13, 16, .94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .site-header-inner {
      width: min(1500px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      color: var(--text);
      text-decoration: none;
    }

    .site-brand img {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      object-fit: cover;
      background: #fff;
      border: 1px solid var(--border);
    }

    .site-brand-copy {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .site-brand-copy strong {
      font-size: 1rem;
      letter-spacing: -.01em;
    }

    .site-brand-copy span {
      margin-top: 4px;
      color: var(--muted);
      font-size: .76rem;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .site-nav a {
      color: var(--muted);
      text-decoration: none;
      padding: 9px 11px;
      border-radius: 999px;
      font-size: .82rem;
      white-space: nowrap;
      transition: color .18s ease, background .18s ease;
    }

    .site-nav a:hover,
    .site-nav a.active {
      color: var(--text);
      background: var(--panel);
    }

    .section-anchor {
      scroll-margin-top: 110px;
    }

    .section-top-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
    }

    .back-to-top {
      color: var(--muted);
      text-decoration: none;
      font-size: .8rem;
      white-space: nowrap;
      padding: 8px 10px;
      border: 1px solid var(--border);
      border-radius: 999px;
      transition: .18s ease;
    }

    .back-to-top:hover {
      color: var(--text);
      background: var(--panel);
    }

    .mobile-nav-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--panel);
      color: var(--text);
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 1.15rem;
    }

    @media (max-width: 980px) {
      .site-header-inner {
        min-height: 70px;
        gap: 12px;
      }

      .mobile-nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
      }

      .site-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 12px 16px 16px;
        background: rgba(11, 13, 16, .98);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }

      .site-nav.open {
        display: flex;
      }

      .site-nav a {
        border-radius: 12px;
        padding: 12px 14px;
      }

      .site-brand-copy span {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .site-header-inner {
        width: min(100% - 20px, 1500px);
      }

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

      .site-brand-copy strong {
        font-size: .9rem;
      }

      .section-top-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .back-to-top {
        align-self: flex-end;
      }

      .page-shell {
        width: min(100% - 20px, 1500px);
      }
    }

  
    .season-photo-section {
      margin-top: 28px;
    }

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

    .season-photo-slot,
    .game-photo-slot {
      position: relative;
      overflow: hidden;
      border: 1px dashed rgba(255,255,255,.16);
      border-radius: 16px;
      background: var(--panel);
      min-height: 180px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--muted);
      padding: 18px;
    }

    .season-photo-slot {
      aspect-ratio: 4 / 3;
    }

    .season-photo-slot img,
    .game-photo-slot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }

    .photo-slot-label strong {
      color: var(--text);
      display: block;
      margin-bottom: 5px;
    }

    .game-photo-area {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }

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

    .game-photo-heading strong {
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

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

    .game-photo-slot {
      min-height: 120px;
      aspect-ratio: 4 / 3;
      background: rgba(255,255,255,.025);
      font-size: .78rem;
    }

    @media (max-width: 900px) {
      .season-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

    @media (max-width: 520px) {
      .season-photo-grid,
      .game-photo-grid {
        grid-template-columns: 1fr;
      }
    }

  
    .practice-video-area {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }

    .practice-video-area > strong {
      display: block;
      margin-bottom: 10px;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

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

    .practice-video-slot {
      border: 1px dashed rgba(255,255,255,.16);
      border-radius: 15px;
      background: rgba(255,255,255,.025);
      overflow: hidden;
    }

    .practice-video-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #050607;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: .8rem;
      text-align: center;
      overflow: hidden;
      cursor: pointer;
    }

    .practice-video-slot.portrait .practice-video-frame {
      aspect-ratio: 9 / 16;
    }

    .practice-video-slot.landscape .practice-video-frame {
      aspect-ratio: 16 / 9;
    }

    .practice-video-slot.square .practice-video-frame {
      aspect-ratio: 1 / 1;
    }

    .practice-video-frame video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #000;
    }

    .practice-play-overlay {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.32));
      pointer-events: auto;
    }

    .practice-play-button {
      width: 54px;
      height: 54px;
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.92);
      color: #111;
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
      cursor: pointer;
    }

    .practice-video-copy {
      padding: 10px 11px 12px;
    }

    .practice-video-copy strong {
      display: block;
      font-size: .86rem;
      margin-bottom: 4px;
    }

    .practice-video-copy span {
      color: var(--muted);
      font-size: .78rem;
      line-height: 1.4;
    }

    @media (max-width: 620px) {
      .practice-video-grid {
        grid-template-columns: 1fr;
      }
    }

  
    .modal-inner {
      position: relative;
      width: fit-content;
      max-width: 96vw;
      max-height: 86vh;
    }

    .close {
      position: absolute;
      top: 40px;
      right: 12px;
      z-index: 2005;
      min-width: 92px;
      height: 40px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      border: 1px solid rgba(255,255,255,.75);
      background: rgba(0,0,0,.72);
      color: #fff;
      border-radius: 999px;
      font-size: .85rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(0,0,0,.35);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: background .15s ease, transform .15s ease;
    }

    .close:hover,
    .close:focus-visible {
      background: rgba(0,0,0,.94);
      transform: scale(1.03);
      outline: none;
    }

    .close .close-x {
      font-size: 1.25rem;
      font-weight: 400;
      line-height: 1;
      margin-top: -1px;
    }

    @media (max-width: 600px) {
      .close {
        top: 40px;
        right: 10px;
        min-width: 84px;
        height: 38px;
        padding: 0 10px;
        font-size: .8rem;
      }

      .close .close-x {
        font-size: 1.15rem;
      }
    }

  
    body.video-open .site-header {
      display: none !important;
    }

  
    .game-schedule {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px 16px;
      flex-wrap: wrap;
      margin-top: 6px;
      color: var(--muted);
      font-size: .82rem;
    }

    .game-schedule strong {
      color: var(--text);
      font-weight: 700;
    }

    .game-location-link {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px dashed rgba(255,255,255,.45);
      transition: border-color .18s ease, opacity .18s ease;
    }

    .game-location-link:hover,
    .game-location-link:focus-visible {
      border-bottom-color: #fff;
      opacity: .88;
      outline: none;
    }

    @media (max-width: 600px) {
      .game-schedule {
        width: 100%;
        justify-content: flex-start;
      }
    }

  
    .team-roster {
      margin-top: 10px;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.6;
      max-width: 100%;
    }

    .team-roster strong {
      color: var(--text);
      font-weight: 700;
      margin-right: 5px;
    }

    @media (max-width: 600px) {
      .team-roster {
        font-size: .74rem;
        line-height: 1.7;
      }
    }

  
    .practice-schedule-line {
      display: flex;
      align-items: center;
      gap: 8px 14px;
      flex-wrap: wrap;
      margin: 7px 0 9px;
      color: var(--muted);
      font-size: .82rem;
    }

    .practice-schedule-line strong {
      display: inline;
      color: var(--text);
      font-size: inherit;
      text-transform: none;
      letter-spacing: 0;
      margin: 0;
    }

    .next-practice {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 2px solid #f9c20d;
      border-radius: 999px;
      background: #223e91;
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(0,0,0,.16);
      font-size: .85rem;
      line-height: 1.2;
    }

    .next-practice-label {
      color: #f9c20d;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .next-practice-value {
      color: #ffffff;
      font-weight: 800;
    }

    @media (max-width: 600px) {
      .practice-schedule-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
      }

      .next-practice {
        border-radius: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }
    }

  
    .header-reminders {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .next-game {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 2px solid #f9c20d;
      border-radius: 999px;
      background: #223e91;
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(0,0,0,.16);
      font-size: .85rem;
      line-height: 1.2;
    }

    .next-game-label {
      color: #f9c20d;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .next-game-value {
      color: #ffffff;
      font-weight: 800;
    }

    @media (max-width: 600px) {
      .header-reminders {
        align-items: stretch;
        flex-direction: column;
      }

      .next-game,
      .next-practice {
        width: 100%;
        border-radius: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }
    }

  
    /* Align header reminder boxes */
    .header-reminders {
      align-items: stretch;
    }

    .next-practice,
    .next-game {
      min-height: 46px;
      margin-top: 0;
      align-self: stretch;
    }

    /* Sharks gold headings across the page */
    h1,
    h2,
    h3,
    .eyebrow,
    .game-title,
    .practice-card h3,
    .season-welcome h2,
    .season-welcome__highlight h3,
    .section-heading h2,
    .weekly-panel h3,
    .daily-routine h3,
    .practice-block > strong,
    .game-detail > strong,
    .game-photo-heading > strong,
    .practice-video-area > strong,
    .video-title,
    .video-number {
      color: #f9c20d;
    }

    /* Keep reminder labels gold and values white */
    .next-practice-label,
    .next-game-label {
      color: #f9c20d;
    }

    .next-practice-value,
    .next-game-value {
      color: #ffffff;
    }

    @media (max-width: 600px) {
      .next-practice,
      .next-game {
        min-height: auto;
      }
    }

  
    /* Next Game featured style */
    .next-game {
      background: #f9c20d;
      border-color: #f9c20d;
      color: #000000;
    }

    .next-game-label,
    .next-game-value {
      color: #000000;
    }

  
    /* Next Game: gold fill with Sharks blue border/accent */
    .next-game {
      background: #f9c20d;
      border-color: #223e91;
      color: #000000;
      box-shadow: 0 0 0 2px rgba(34,62,145,.18), 0 8px 24px rgba(0,0,0,.16);
    }

    .next-game-label {
      color: #223e91;
    }

    .next-game-value {
      color: #000000;
    }

  
    .next-practice,
    .next-game {
      flex-wrap: wrap;
    }

    .next-practice-location,
    .next-game-location {
      font-size: .78rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .next-practice-location {
      color: #ffffff;
      opacity: .9;
    }

    .next-game-location {
      color: #223e91;
    }

    @media (max-width: 600px) {
      .next-practice-location,
      .next-game-location {
        white-space: normal;
      }
    }

  
    /* Alternating roster colors */
    .team-roster .roster-name-white {
      color: #ffffff;
    }

    .team-roster .roster-name-gold {
      color: #f9c20d;
    }

    /* Back to Top buttons */
    .back-to-top {
      background: #223e91;
      color: #ffffff;
      border-color: #223e91;
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
      background: #1b3277;
      color: #ffffff;
      border-color: #1b3277;
      outline: none;
    }

    /* Section background controls — change these values independently */
    :root {
      --season-section-bg: transparent;
      --games-section-bg: transparent;
      --practice-section-bg: transparent;
      --daily-section-bg: transparent;
      --videos-section-bg: transparent;
      --photos-section-bg: transparent;
    }

    #season {
      background: var(--season-section-bg);
    }

    #games {
      background: var(--games-section-bg);
    }

    #practice {
      background: var(--practice-section-bg);
    }

    #daily {
      background: var(--daily-section-bg);
    }

    #videos {
      background: var(--videos-section-bg);
    }

    #photos {
      background: var(--photos-section-bg);
    }

    #season,
    #games,
    #practice,
    #daily,
    #videos,
    #photos {
      transition: background .2s ease;
    }

    /* Collapsible weekly training cards */
    .practice-card {
      padding: 0;
      overflow: hidden;
    }

    .practice-week-toggle {
      width: 100%;
      border: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
    }

    .practice-week-toggle:hover,
    .practice-week-toggle:focus-visible {
      background: rgba(255,255,255,.035);
      outline: none;
    }

    .practice-week-toggle h3 {
      margin: 0;
    }

    .practice-week-toggle-icon {
      color: #f9c20d;
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1;
      transition: transform .2s ease;
      flex: 0 0 auto;
    }

    .practice-card.open .practice-week-toggle-icon {
      transform: rotate(180deg);
    }

    .practice-week-content {
      display: none;
      padding: 0 20px 20px;
    }

    .practice-card.open .practice-week-content {
      display: block;
    }

    @media (max-width: 600px) {
      .practice-week-toggle {
        padding: 16px;
      }

      .practice-week-content {
        padding: 0 16px 16px;
      }
    }

  
    /* Restore original practice video dimensions */
    .practice-video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .practice-video-slot {
      border: 1px dashed rgba(255,255,255,.16);
      border-radius: 15px;
      background: rgba(255,255,255,.025);
      overflow: hidden;
    }

    .practice-video-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #050607;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: .8rem;
      text-align: center;
      overflow: hidden;
      cursor: pointer;
    }

    .practice-video-slot.portrait .practice-video-frame {
      aspect-ratio: 9 / 16;
    }

    .practice-video-slot.landscape .practice-video-frame {
      aspect-ratio: 16 / 9;
    }

    .practice-video-slot.square .practice-video-frame {
      aspect-ratio: 1 / 1;
    }

    .practice-video-frame video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #000;
    }

    @media (max-width: 620px) {
      .practice-video-grid {
        grid-template-columns: 1fr;
      }
    }

  
    /* Collapsible Game Recaps */
    .game-card {
      padding: 0;
      overflow: hidden;
    }

    .game-summary-toggle {
      width: 100%;
      border: 0;
      background: transparent;
      color: inherit;
      padding: 16px;
      text-align: left;
      cursor: pointer;
      display: block;
    }

    .game-summary-toggle:hover,
    .game-summary-toggle:focus-visible {
      background: rgba(255,255,255,.035);
      outline: none;
    }

    .game-summary-toggle .game-top {
      margin-bottom: 0;
      align-items: center;
    }

    .game-summary-main {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .game-toggle-icon {
      color: #f9c20d;
      font-size: 1.15rem;
      font-weight: 900;
      transition: transform .2s ease;
      flex: 0 0 auto;
    }

    .game-card.open .game-toggle-icon {
      transform: rotate(180deg);
    }

    .game-card-content {
      display: none;
      padding: 0 16px 16px;
    }

    .game-card.open .game-card-content {
      display: block;
    }

    /* Score accent treatment */
    .game-score {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #223e91;
      color: #ffffff;
      border: 2px solid #f9c20d;
      box-shadow: 0 4px 14px rgba(0,0,0,.18);
    }

    .game-score .score-opponent,
    .game-score .score-sharks {
      font-weight: 900;
    }

    .game-score .score-opponent {
      color: #ffffff;
    }

    .game-score .score-sharks {
      color: #f9c20d;
    }

    .game-score .score-divider {
      color: #ffffff;
      opacity: .75;
      font-weight: 700;
    }

    .game-summary-toggle .game-schedule {
      margin-top: 7px;
    }

    @media (max-width: 600px) {
      .game-summary-toggle {
        padding: 14px;
      }

      .game-card-content {
        padding: 0 14px 14px;
      }

      .game-summary-toggle .game-top {
        align-items: flex-start;
      }

      .game-summary-main {
        width: 100%;
      }
    }

  
    /* Uniform two-card practice video layout for every training week */
    .practice-card .practice-video-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: start;
    }

    .practice-card .practice-video-slot {
      width: 100%;
    }

    @media (max-width: 620px) {
      .practice-card .practice-video-grid {
        grid-template-columns: 1fr;
      }
    }

  
    /* Practice plan collapses ONLY by two-week intervals */
    .practice-pair-grid {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 18px;
      width: 100%;
    }

    .practice-pair-group {
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255,255,255,.018);
      box-shadow: var(--shadow);
    }

    .practice-pair-toggle {
      width: 100%;
      border: 0;
      padding: 17px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: #223e91;
      color: #f9c20d;
      cursor: pointer;
      text-align: left;
      font: inherit;
    }

    .practice-pair-title {
      font-weight: 900;
      font-size: 1.05rem;
    }

    .practice-pair-toggle-icon {
      font-size: 1.25rem;
      font-weight: 900;
      line-height: 1;
      transition: transform .2s ease;
    }

    .practice-pair-group.open .practice-pair-toggle-icon {
      transform: rotate(180deg);
    }

    .practice-pair-content {
      display: none;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      padding: 18px;
    }

    .practice-pair-group.open > .practice-pair-content {
      display: grid;
    }

    /* Individual weeks are always fully open inside the pair */
    .practice-pair-content > .practice-card {
      display: block;
      width: 100%;
      padding: 0;
    }

    .practice-pair-content .practice-week-toggle {
      pointer-events: none !important;
      cursor: default !important;
    }

    .practice-pair-content .practice-week-toggle-icon {
      display: none !important;
    }

    .practice-pair-content .practice-week-content {
      display: block !important;
    }

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

    @media (max-width: 600px) {
      .practice-pair-toggle {
        padding: 14px 16px;
      }

      .practice-pair-content {
        padding: 14px;
      }
    }

  