:root {
    --color-primary: #7c6ff6;
    --color-secondary: #4da8ff;
    --color-accent: #6ee7b7;
    --color-dark: #0b1b5c;
    --color-background: #f5f7fb;
    --color-white: #ffffff;
    --color-text: #1c2541;
    --color-text-light: #536078;
  
    --color-border: rgba(11, 27, 92, 0.1);
    --color-shadow: rgba(11, 27, 92, 0.1);
  
    --container-width: 1120px;
  }
  
  
  /* =========================
     BASE
  ========================= */
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family:
      Inter,
      Arial,
      Helvetica,
      sans-serif;
  
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
  }
  
  
  /* =========================
     HEADER
  ========================= */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
  }
  
  .site-header .container {
    min-height: 72px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    gap: 32px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
  }

  .brand-logo {
    display: block;
    width: auto;
    height: 40px;
    max-width: 180px;
    object-fit: contain;
  }

  .site-header nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
  }
  
  .site-header nav a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 600;
  
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }
  
  .site-header nav a:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
  }
  
  
  /* =========================
     HERO
  ========================= */
  
  .hero {
    min-height: 680px;
  
    display: flex;
    align-items: center;
  
    color: var(--color-white);
  
    background:
      radial-gradient(
        circle at 85% 20%,
        rgba(110, 231, 183, 0.2),
        transparent 25%
      ),
      radial-gradient(
        circle at 10% 80%,
        rgba(77, 168, 255, 0.25),
        transparent 30%
      ),
      linear-gradient(
        135deg,
        var(--color-dark) 0%,
        #3f3ba6 50%,
        var(--color-primary) 100%
      );
  }
  
  .hero .container {
    padding-block: 104px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-logo {
    margin-bottom: 28px;
  }
  
  .hero-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 100px;
    object-fit: contain;
  }
  
  .eyebrow {
    margin: 0 0 14px;
  
    color: var(--color-accent);
  
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  h1 {
    max-width: 820px;
  
    margin: 0 0 24px;
  
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  
  .hero-description {
    max-width: 650px;
  
    margin: 0 0 34px;
  
    color: rgba(255, 255, 255, 0.86);
  
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
  }
  
  .hero-note {
    margin: 18px 0 0;
  
    color: rgba(255, 255, 255, 0.68);
  
    font-size: 0.9rem;
  }
  
  
  /* =========================
     BUTTON
  ========================= */
  
  .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    min-height: 52px;
  
    padding: 14px 26px;
  
    color: var(--color-dark);
    background: var(--color-accent);
  
    border-radius: 12px;
  
    font-weight: 800;
  
    box-shadow: 0 10px 30px rgba(110, 231, 183, 0.18);
  
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      opacity 0.2s ease;
  }
  
  .primary-button:hover {
    transform: translateY(-2px);
  
    box-shadow: 0 14px 36px rgba(110, 231, 183, 0.28);
  }
  
  .primary-button:active {
    transform: translateY(0);
  }
  
  
  /* =========================
     GENERIC SECTIONS
  ========================= */
  
  .section {
    padding-block: 96px;
  }
  
  .section:nth-of-type(odd) {
    background: var(--color-white);
  }
  
  .section h2 {
    max-width: 760px;
  
    margin: 0 0 24px;
  
    color: var(--color-dark);
  
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }
  
  .section p {
    max-width: 760px;
  
    color: var(--color-text-light);
  
    font-size: 1.08rem;
    line-height: 1.75;
  }
  
  
  /* =========================
     PLAY OPTIONS
  ========================= */
  
  .play-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  
    gap: 24px;
  
    margin-top: 48px;
  }
  
  .play-option {
    padding: 36px;
  
    background: var(--color-white);
  
    border: 1px solid var(--color-border);
    border-radius: 20px;
  
    box-shadow:
      0 16px 40px rgba(11, 27, 92, 0.07);
  
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }
  
  .play-option:hover {
    transform: translateY(-4px);
  
    box-shadow:
      0 22px 50px rgba(11, 27, 92, 0.11);
  }
  
  .play-option h3 {
    margin: 0 0 14px;
  
    color: var(--color-dark);
  
    font-size: 1.5rem;
    line-height: 1.25;
  }
  
  .play-option p {
    margin: 0;
  
    font-size: 1rem;
  }
  
  
  /* =========================
     FANTASY SECTION
  ========================= */
  
  .fantasy-section {
    color: var(--color-white);
  
    background:
      radial-gradient(
        circle at 90% 50%,
        rgba(110, 231, 183, 0.14),
        transparent 30%
      ),
      linear-gradient(
        135deg,
        var(--color-dark),
        #302c82
      );
  }
  
  .fantasy-section h2 {
    color: var(--color-white);
  }
  
  .fantasy-section p {
    color: rgba(255, 255, 255, 0.76);
  }
  
  
  /* =========================
     DOWNLOAD
  ========================= */
  
  .download-section {
    text-align: center;
  }
  
  .download-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .download-section h2,
  .download-section p {
    margin-inline: auto;
  }
  
  .download-section .primary-button {
    margin-top: 18px;
  }
  
  
  /* =========================
     FOOTER
  ========================= */
  
  .site-footer {
    padding-block: 48px;
  
    color: var(--color-white);
    background: var(--color-dark);
  }
  
  .footer-content {
    display: grid;
  
    grid-template-columns:
      minmax(180px, 1fr)
      auto;
  
    align-items: center;
  
    gap: 32px;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
    gap: 12px;
  }
  
  .footer-logo {
    display: block;
    width: auto;
    height: 38px;
    max-width: 170px;
    object-fit: contain;
  }
  
  .footer-brand p {
    margin: 0;
  
    color: rgba(255, 255, 255, 0.68);
  
    font-size: 0.9rem;
  }
  
  .site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  
    gap: 14px 24px;
  }
  
  .site-footer nav a {
    color: rgba(255, 255, 255, 0.78);
  
    font-size: 0.9rem;
  
    transition: color 0.2s ease;
  }
  
  .site-footer nav a:hover {
    color: var(--color-accent);
  }
  
  .copyright {
    grid-column: 1 / -1;
  
    margin: 8px 0 0;
  
    color: rgba(255, 255, 255, 0.45);
  
    font-size: 0.82rem;
  }
  
  
  /* =========================
     ACCOUNT DELETION
  ========================= */
  
  .account-deletion-form {
    margin-top: 40px;
  }
  
  .account-deletion-form iframe {
    display: block;
  
    width: 100%;
    min-height: 1250px;
  
    border: 0;
    border-radius: 12px;
  
    background: var(--color-background);
  }
  
  
  /* =========================
     RESPONSIVE
  ========================= */
  
  @media (max-width: 820px) {
    .play-options {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .site-footer nav {
      justify-content: flex-start;
    }
  }
  
  
  @media (max-width: 720px) {
  
    .site-header .container {
      min-height: 64px;
    }
  
    .brand-logo {
      height: 36px;
    }
  
    .site-header nav {
      gap: 14px;
    }
  
    .site-header nav a {
      font-size: 0.85rem;
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero .container {
      padding-block: 72px;
    }
  
    .hero-logo {
      margin-bottom: 22px;
    }
  
    .section {
      padding-block: 72px;
    }
  
    .play-option {
      padding: 28px;
    }
  
    .footer-content {
      align-items: flex-start;
    }
  }
  
  
  @media (max-width: 520px) {
  
    .container {
      width: min(100% - 24px, var(--container-width));
    }
  
    .site-header .container {
      flex-direction: column;
      align-items: flex-start;
  
      padding-block: 14px;
  
      gap: 12px;
    }
  
    .site-header nav {
      width: 100%;
  
      gap: 10px 18px;
    }
  
    .hero .container {
      padding-block: 60px;
    }
  
    h1 {
      font-size: clamp(2.5rem, 13vw, 4rem);
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .primary-button {
      width: 100%;
    }
  
    .section {
      padding-block: 60px;
    }
  
    .section h2 {
      font-size: 2.2rem;
    }
  
    .play-option {
      padding: 24px;
      border-radius: 16px;
    }
  
    .account-deletion-form iframe {
      min-height: 1700px;
    }
  }