    :root {
      --itv-page-background: #ebebeb;
      --itv-white: #ffffff;
      --itv-light-grey: #f4f4f4;
      --itv-dark-grey: #eaeaea;
      --itv-black: #1a1a1a;
      --itv-sport-green: #004226;
      --itv-sport-highlight-grey: #99b1ae;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      font-family: "ITV Text Sans VF", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      background: var(--itv-sport-green);
      overscroll-behavior: none;
      touch-action: none;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .screen {
      position: relative;
      width: 100%;
      max-width: 375px;
      height: 100vh;
      height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .home-content {
      width: 100%;
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      z-index: 1;
    }

    .home-logo {
      width: 141px;
      height: 77px;
    }

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

    .home-actions {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .flow-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-family: inherit;
      font-size: 14px;
      font-weight: 512;
      line-height: 20px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
    }
