    :root {
      --itv-page-background: #fafafa;
      --itv-white: #ffffff;
      --itv-light-grey: #f4f4f4;
      --itv-dark-grey: #eaeaea;
      --itv-black: #1a1a1a;
      --itv-sport-green: #004226;
      --itv-sport-highlight-grey: #99b1ae;
      --itv-gold: #e3bb3b;
      --itv-disabled-text: #adadad;
      --itv-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
      --itv-featured-gradient-top: #164e3a;
      --itv-featured-gradient-bottom: #093d2b;
      --itv-tab-inactive: rgba(255, 255, 255, 0.6);
      --itv-tab-border: rgba(255, 255, 255, 0.2);
      --font-itv: "ITV Text Sans VF", Inter, Arial, Helvetica, sans-serif;
    }

    html {
      margin: 0;
      min-height: 100%;
      background: var(--itv-sport-green);
      color: var(--itv-black);
      font-family: var(--font-itv);
      touch-action: manipulation;
    }

    body {
      margin: 0;
      width: 100%;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      background: var(--itv-page-background);
      touch-action: manipulation;
    }

    button {
      appearance: none;
      font: inherit;
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 0;
      color: inherit;
      touch-action: manipulation;
    }

    a {
      color: inherit;
      touch-action: manipulation;
    }

    .matches-screen {
      position: relative;
      width: 375px;
      flex: 0 0 375px;
      min-height: 100vh;
      padding-top: calc(40px + env(safe-area-inset-top) + 48px);
      padding-bottom: 77px;
      background: var(--itv-page-background);
    }

    /* ============ Top Nav Bar ============ */
    .nav-bar {
      display: flex;
      width: 100vw;
      left: 0;
      right: 0;
      justify-content: center;
      background: var(--itv-sport-green);
      position: fixed;
      top: calc(40px + env(safe-area-inset-top));
      z-index: 10;
    }

    .nav-tab {
      flex: 0 0 187.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 16px;
      color: var(--itv-tab-inactive);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      border-bottom: 1px solid var(--itv-tab-border);
      background: var(--itv-sport-green);
      cursor: pointer;
    }

    .nav-tab.is-active {
      color: var(--itv-white);
      border-bottom: 2px solid var(--itv-white);
    }

    /* ============ Content Wrapper ============ */
    .content {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 24px 16px 0;
    }

    .section-heading {
      margin: 0;
      font-size: 16px;
      font-weight: 650;
      line-height: 24px;
      color: var(--itv-black);
    }

    .hero-block {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    /* ============ Not Entered (pick carousel) ============ */
    .not-entered {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .pick-track {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 16px;
      scrollbar-width: none;
      padding: 12px 16px;
      margin: -12px -16px;
    }

    .pick-track::-webkit-scrollbar {
      display: none;
    }

    .pick-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 0 0 144px;
      width: 144px;
      padding: 16px;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
      scroll-snap-align: start;
    }

    .pick-header {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .pick-date {
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      color: var(--itv-black);
    }

    .pick-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .pick-teams {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .pick-team {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      width: 100%;
    }

    .pick-header .jackpot-tag {
      display: flex;
      width: 100%;
    }

    .pick-team-name {
      display: flex;
      align-items: center;
      height: 24px;
      font-size: 16px;
      font-weight: 650;
      line-height: 24px;
      color: var(--itv-black);
      white-space: nowrap;
    }

    /* Reused .shirt pattern (same as existing page) */
    .shirt {
      position: relative;
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      overflow: visible;
    }

    .shirt img {
      position: absolute;
      left: -3.75px;
      top: -3.75px;
      width: 27.5px;
      height: 27.5px;
      object-fit: cover;
      filter: drop-shadow(0 2.5px 6.25px rgba(0, 0, 0, 0.2));
      pointer-events: none;
    }

    /* Reused .jackpot-tag / .jackpot-shimmer */
    .jackpot-tag {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 24px;
      overflow: hidden;
      padding: 4px 8px;
      border-radius: 4px;
      background: var(--itv-gold) url("../images/Jackpot Tag.svg") center / 100% 100% no-repeat;
      color: var(--itv-black);
      font-size: 14px;
      font-weight: 650;
      line-height: 20px;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    /* Small outline button used in pick cards */
    .outline-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 44px;
      padding: 12px 16px;
      border: 2px solid var(--itv-sport-green);
      border-radius: 8px;
      background: var(--itv-white);
      color: var(--itv-sport-green);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      text-align: center;
    }

    /* Page control dots */
    .page-control {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: center;
      height: 24px;
      padding: 8px 12px;
      width: 100%;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50px;
      background: var(--itv-sport-highlight-grey);
      opacity: 0.3;
    }

    .dot.is-active {
      background: var(--itv-sport-green);
      opacity: 1;
    }

    /* ============ Featured Match ============ */
    .featured-card {
      width: 100%;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      box-shadow: var(--itv-shadow);
      background: var(--itv-white);
    }

    .featured-header {
      position: relative;
      height: 202px;
      width: 100%;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
      background: var(--itv-sport-green);
    }

    .featured-header-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-text {
      position: absolute;
      left: 16px;
      top: 40px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--itv-white);
      z-index: 1;
    }

    .featured-prize-lead {
      margin: 0;
      font-size: 16px;
      font-weight: 900;
      line-height: 24px;
      text-transform: uppercase;
    }

    .featured-prize {
      margin: 0;
      font-size: 48px;
      font-weight: 900;
      line-height: 48px;
    }

    .featured-subtitle {
      margin: 0;
      font-size: 16px;
      font-weight: 512;
      line-height: 24px;
      width: 219px;
    }

    .featured-body {
      display: flex;
      gap: 24px;
      align-items: center;
      justify-content: flex-end;
      padding: 24px 16px 0;
    }

    .featured-teams {
      display: flex;
      flex: 1 1 0;
      flex-direction: column;
      gap: 16px;
      min-width: 0;
    }

    .featured-team {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .featured-shirt {
      position: relative;
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      overflow: visible;
    }

    .featured-shirt img {
      position: absolute;
      left: -6px;
      top: -6px;
      width: 44px;
      height: 44px;
      object-fit: cover;
      filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
      pointer-events: none;
    }

    .featured-team-name {
      display: flex;
      align-items: center;
      height: 24px;
      font-size: 16px;
      font-weight: 650;
      line-height: 24px;
      color: var(--itv-black);
    }

    .featured-time {
      text-align: center;
      font-size: 12px;
      font-weight: 315;
      line-height: 16px;
      color: #000000;
    }

    .featured-time p {
      margin: 0;
    }

    .featured-actions {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 16px;
      width: 100%;
    }

    .primary-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 44px;
      padding: 12px 16px;
      border-radius: 8px;
      background: var(--itv-sport-green);
      color: var(--itv-white);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
    }

    .tncs-note {
      margin: 0;
      text-align: center;
      font-size: 12px;
      font-weight: 512;
      line-height: 16px;
      color: var(--itv-black);
    }

    .tncs-note a {
      color: var(--itv-sport-green);
      text-decoration: underline;
    }

    /* ============ Upcoming Matches ============ */
    .upcoming {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .upcoming-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .upcoming-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      padding: 16px;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
    }

    .upcoming-header {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
    }

    .upcoming-key-info {
      display: flex;
      flex: 1 1 0;
      gap: 8px;
      align-items: center;
      height: 20px;
      min-width: 0;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      color: var(--itv-black);
      white-space: nowrap;
    }

    .upcoming-divider {
      width: 1px;
      height: 12px;
      flex: 0 0 1px;
      background: var(--itv-sport-highlight-grey);
    }

    .upcoming-body {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      background: var(--itv-white);
    }

    .upcoming-teams {
      display: flex;
      flex: 1 1 0;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
      height: 52px;
      min-width: 0;
    }

    .upcoming-team {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
    }

    .upcoming-team-name {
      display: flex;
      align-items: center;
      height: 20px;
      font-size: 14px;
      font-weight: 650;
      line-height: 20px;
      color: var(--itv-black);
    }

    .edit-button {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 65px;
      width: 65px;
      height: 44px;
      padding: 12px 16px;
      border: 2px solid var(--itv-sport-green);
      border-radius: 8px;
      background: var(--itv-white);
      color: var(--itv-sport-green);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
    }

    /* ============ How to win + Links ============ */
    .how-to-section {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .htw-card {
      width: 100%;
      overflow: hidden;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: none;
    }

    .htw-header {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 48px;
      padding: 8px 16px;
      border: 0;
      border-radius: 8px 8px 0 0;
      background: var(--itv-white);
      width: 100%;
      cursor: pointer;
      box-shadow: none;
    }

    .htw-header-left {
      display: flex;
      flex: 1 1 0;
      align-items: center;
      gap: 6px;
      min-width: 0;
    }

    .htw-trophy {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    .htw-title {
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      color: var(--itv-black);
    }

    .htw-chevron {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      transform: rotate(180deg);
      transition: transform 180ms ease;
    }

    .htw-card.is-open .htw-chevron {
      transform: rotate(0deg);
    }

    .htw-body {
      display: none;
      flex-direction: column;
      gap: 16px;
      padding: 12px 16px;
      border-top: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
    }

    .htw-card.is-open .htw-body {
      display: flex;
    }

    .htw-steps {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .htw-step {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .htw-step-num {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      position: relative;
    }

    .htw-step-num span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      padding-top: 2px;
      border-radius: 24px;
      background: var(--itv-sport-green);
      color: var(--itv-white);
      font-size: 12px;
      font-weight: 512;
      line-height: 16px;
    }

    .htw-step-text {
      flex: 1 1 0;
      min-width: 0;
      font-size: 14px;
      font-weight: 315;
      line-height: 20px;
      color: var(--itv-black);
    }

    .htw-note {
      margin: 0;
      font-size: 12px;
      font-weight: 315;
      line-height: 16px;
      color: var(--itv-black);
    }

    .link-card {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      height: 48px;
      padding: 12px 16px;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      color: var(--itv-black);
      text-decoration: none;
    }

    .link-card span {
      flex: 1 1 0;
      min-width: 0;
    }

    .link-card img {
      width: 18px;
      height: 18px;
    }

    /* ============ Bottom Tab Bar ============ */
    .tab-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      background: var(--itv-white);
      z-index: 20;
    }

    .tab-bar-inner {
      display: flex;
      width: 375px;
      max-width: 100%;
    }

    .tab-item {
      display: flex;
      flex: 1 1 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      height: 56px;
      padding: 5px 0;
      border-top: 1px solid var(--itv-light-grey);
      color: var(--itv-sport-highlight-grey);
      font-size: 12px;
      font-weight: 512;
      line-height: 16px;
      background: var(--itv-white);
      cursor: pointer;
    }

    .tab-item.is-active {
      color: var(--itv-sport-green);
    }

    .tab-item img {
      width: 24px;
      height: 24px;
    }

    .home-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 21px;
      background: var(--itv-white);
    }

    .home-indicator-bar {
      width: 139px;
      height: 5px;
      border-radius: 100px;
      background: var(--itv-black);
    }

    /* ============ Mobile Breakpoint ============ */
    @media (max-width: 767px) {
      .matches-screen {
        width: 100%;
        flex: 1 1 auto;
      }

      .nav-bar {
        width: 100%;
        margin-left: 0;
      }

      .nav-tab {
        flex: 1 1 0;
      }

      .tab-bar-inner {
        width: 100%;
      }
    }
