    :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);
      --font-itv: "ITV Text Sans VF", Inter, Arial, Helvetica, sans-serif;
    }

    html {
      margin: 0;
      min-height: 100%;
      background: var(--itv-page-background);
      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;
    }

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

    .content {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px 16px 0;
    }

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

    .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);
    }

    .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;
    }

    .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%;
    }

    .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;
    }

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

    .enter-button {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 72px;
      width: 72px;
      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;
    }

    .done-bar {
      position: relative;
      z-index: 20;
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 60px;
      padding: 8px 16px;
      border-top: 1px solid transparent;
      background: transparent;
    }

    .done-bar.is-fixed {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      margin-top: 0;
      width: 100vw;
      border-top-color: var(--itv-light-grey);
      background: var(--itv-white);
    }

    .done-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 343px;
      height: 44px;
      padding: 12px 16px;
      border: 0;
      border-radius: 8px;
      background: var(--itv-sport-green);
      color: var(--itv-white);
      cursor: pointer;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      text-align: center;
      text-decoration: none;
      white-space: nowrap;
    }

    @media (max-width: 767px) {
      .screen {
        width: 100%;
        flex: 1 1 auto;
      }

      .done-bar.is-fixed {
        width: 100vw;
      }

      .done-button {
        width: 100%;
        max-width: 343px;
      }
    }

    .page-header {
      border-bottom: 1px solid var(--itv-light-grey);
    }
