    :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,
    body {
      margin: 0;
      min-height: 100%;
      background: var(--itv-page-background);
      color: var(--itv-black);
      font-family: var(--font-itv);
      touch-action: manipulation;
    }

    body {
      width: 100%;
      min-height: 100vh;
      display: flex;
      justify-content: center;
    }

    button {
      appearance: none;
      font: inherit;
      touch-action: manipulation;
    }

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

    .content {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 343px;
      margin: 24px 0 0;
      border-radius: 8px;
    }

    .my-picks {
      width: 343px;
      overflow: hidden;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
    }

    .match-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 343px;
      padding: 16px;
      border-top: 1px solid var(--itv-light-grey);
      border-right: 1px solid var(--itv-light-grey);
      border-left: 1px solid var(--itv-light-grey);
      border-radius: 8px 8px 0 0;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
    }

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

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

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

    .jackpot-tag {
      position: relative;
      display: flex;
      flex: 0 0 auto;
      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;
    }

    .match-info-row {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: space-between;
      width: 100%;
      background: var(--itv-white);
    }

    .teams {
      display: flex;
      flex: 1 1 0;
      min-width: 0;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
    }

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

    .team-home {
      flex: 0 1 auto;
      min-width: 0;
      justify-content: flex-end;
    }

    .team-away {
      flex: 0 1 auto;
      min-width: 0;
      justify-content: flex-start;
    }

    .team-name {
      display: flex;
      align-items: center;
      height: 20px;
      line-height: 20px;
    }

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

    .table-header {
      display: flex;
      align-items: center;
      width: 100%;
      height: 32px;
      padding: 8px 16px;
      background: var(--itv-light-grey);
      color: var(--itv-black);
      font-size: 12px;
      font-weight: 512;
      line-height: 16px;
    }

    .table-row {
      display: flex;
      align-items: center;
      gap: 4px;
      width: 343px;
      overflow: hidden;
      padding: 10px 16px;
      border-bottom: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
      color: var(--itv-black);
    }

    .table-row-value {
      flex: 0 1 auto;
      min-width: 0;
      overflow: hidden;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .table-row-label {
      flex: 1 1 0;
      min-width: 0;
      overflow: hidden;
      font-size: 12px;
      font-weight: 315;
      line-height: 16px;
      text-align: right;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .acca-card {
      display: flex;
      flex-direction: column;
      width: 343px;
      min-height: 580px;
      overflow: hidden;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
    }

    .acca-header {
      display: flex;
      flex: 0 0 48px;
      align-items: center;
      gap: 8px;
      width: 100%;
      height: 48px;
      padding: 14px 16px;
      border-bottom: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
    }

    .header-icon {
      display: block;
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    .header-icon img,
    .chevron img,
    .select-button img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .acca-title {
      flex: 1 1 0;
      min-width: 0;
      margin: 0;
      color: var(--itv-black);
      font-size: 14px;
      font-weight: 650;
      line-height: 20px;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .header-logo {
      display: block;
      width: 54.667px;
      height: 16px;
      flex: 0 0 54.667px;
    }

    .header-logo img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .acca-summary {
      display: flex;
      flex-direction: column;
      flex: 0 0 auto;
      gap: 8px;
      width: 100%;
      padding: 12px 16px;
      border-bottom: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
    }

    .acca-summary-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
      width: 100%;
      color: var(--itv-black);
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
    }

    .acca-summary-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
    }

    .acca-summary-row span:last-child {
      flex: 0 0 auto;
      white-space: nowrap;
    }

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

    .acca-body {
      flex: 0 0 336px;
      width: 100%;
      height: 336px;
      overflow: hidden;
      background: var(--itv-white);
    }

    .acca-row {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      min-height: 56px;
      padding: 8px 16px;
      border-bottom: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
    }

    .acca-row.is-open-row {
      border-bottom: 0;
      background: var(--itv-white);
    }

    .market-button {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      flex: 0 1 auto;
      height: 32px;
      padding: 8px 10px 8px 14px;
      border: 1px solid var(--itv-dark-grey);
      border-radius: 9999px;
      background: var(--itv-white);
      color: var(--itv-black);
      cursor: pointer;
    }

    .market-button.no-dropdown {
      height: auto;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: default;
    }

    .market-button.no-dropdown .market-label {
      max-width: none;
    }

    .acca-row.is-unselected .market-button.no-dropdown {
      color: var(--itv-disabled-text);
    }

    .market-button[aria-expanded="true"] {
      border-color: transparent;
      background: var(--itv-dark-grey);
    }

    .market-button.is-disabled {
      border-color: var(--itv-light-grey);
      background: var(--itv-white);
      color: var(--itv-disabled-text);
      cursor: default;
      pointer-events: none;
      -webkit-tap-highlight-color: transparent;
    }

    .market-button.is-disabled img {
      opacity: 0.32;
    }

    .market-label {
      max-width: 148px;
      overflow: hidden;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      letter-spacing: 0;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .chevron {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 12px;
      height: 12px;
      flex: 0 0 12px;
    }

    .market-button[aria-expanded="true"] .chevron {
      transform: rotate(180deg);
    }

    .pick-block {
      display: flex;
      flex: 1 1 0;
      margin-left: auto;
      min-width: 0;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      font-weight: 512;
      text-align: right;
    }

    .pick-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .odds {
      display: flex;
      justify-content: center;
      color: var(--itv-sport-green);
      font-size: 14px;
      font-weight: 650;
      line-height: 20px;
      white-space: nowrap;
    }

    .selection-label {
      width: 100%;
      overflow: hidden;
      color: var(--itv-black);
      font-size: 12px;
      font-weight: 512;
      line-height: 16px;
      text-align: right;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .select-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      border: 0;
      border-radius: 9999px;
      background: transparent;
      color: var(--itv-white);
      cursor: pointer;
      padding: 0;
    }

    .select-button img {
      width: 20px;
      height: 20px;
    }

    .acca-row.is-open-row .pick-row {
      display: none;
    }

    .acca-row.is-open-row .selection-label {
      line-height: 16px;
    }

    .acca-row.is-unselected .select-button {
      border: 0;
      background: transparent;
    }

    .acca-row.is-unselected .odds,
    .acca-row.is-unselected .selection-label {
      color: var(--itv-disabled-text);
    }

    .dropdown-slot {
      display: none;
      width: 100%;
      padding: 4px 16px 16px;
      border-bottom: 0;
      background: var(--itv-white);
    }

    .dropdown-slot.is-open {
      display: flex;
      flex-direction: column;
      height: 280px;
    }

    .dropdown-list {
      width: 100%;
      height: calc((var(--option-count) * 52px) + 2px);
      flex: 0 0 auto;
      overflow: hidden;
      border: 1px solid var(--itv-light-grey);
      border-radius: 8px;
      background: var(--itv-white);
      box-shadow: var(--itv-shadow);
      transform-origin: top center;
      will-change: opacity, transform;
    }

    .dropdown-list.is-opening {
      animation: dropdown-in 240ms cubic-bezier(0.2, 0.9, 0.24, 1.12) both;
    }

    .dropdown-list.is-closing {
      animation: dropdown-out 160ms ease-in both;
    }

    @keyframes dropdown-in {
      0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
      }

      72% {
        opacity: 1;
        transform: translateY(2px) scale(1.002);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes dropdown-out {
      from {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      to {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
      }
    }

    .dropdown-row {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      height: 52px;
      min-height: 52px;
      flex: 0 0 52px;
      padding: 10px 16px;
      border: 0;
      border-bottom: 1px solid var(--itv-light-grey);
      background: var(--itv-white);
      color: var(--itv-black);
      cursor: pointer;
      text-align: left;
    }

    .dropdown-row:last-child {
      border-bottom: 0;
    }

    .dropdown-option-label {
      flex: 1 1 0;
      min-width: 0;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
    }

    .dropdown-odds {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 32px;
      flex: 0 0 64px;
      padding: 12px 8px;
      overflow: hidden;
      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;
    }

    .dropdown-row[aria-selected="true"] .dropdown-odds {
      border-color: transparent;
      background: var(--itv-sport-green);
      color: var(--itv-white);
    }

    .acca-footer {
      flex: 0 0 76px;
      width: 100%;
      height: 76px;
      padding: 16px;
      background: var(--itv-white);
    }

    .cta {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-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;
      letter-spacing: 0;
      text-align: center;
      white-space: nowrap;
    }

    .cta:disabled {
      background: var(--itv-dark-grey);
      color: var(--itv-disabled-text);
      cursor: default;
      transform: none;
      filter: none;
    }

    .done-bar {
      position: relative;
      z-index: 20;
      margin-top: 16px;
      margin-left: 0;
      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;
      margin-left: 0;
      width: 100vw;
      border-top-color: var(--itv-light-grey);
      background: var(--itv-white);
    }

    .screen:has(.done-bar.is-fixed) {
      padding-bottom: 84px;
    }

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

      .content {
        width: 100%;
        padding: 0 16px;
      }

      .my-picks,
      .match-card,
      .table-row,
      .acca-card {
        width: 100%;
      }

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

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

      .done-button {
        width: 100%;
      }
    }

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