* { box-sizing: border-box; image-rendering: pixelated; }

    :root {
      --bg: #06060a;
      --panel: rgba(18, 18, 26, 0.88);
      --text: #edf0f7;
      --muted: #aeb4c8;
      --accent: #b77cff;
      --line: rgba(255,255,255,0.10);
      --shadow: 0 24px 70px rgba(0,0,0,0.58);
    }

    html, body { min-height: 100%; }

    body {
      margin: 0;
      min-height: 100vh;
      padding: 54px 20px 0;
      color: var(--text);
      background: var(--bg);
      font-family: 'Inter', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: -5%;
      background: url('../../../bg.png') center/cover no-repeat;
      filter: blur(5px) brightness(0.50) saturate(1.22);
      transform: scale(1.06);
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6,6,10,0.16), rgba(6,6,10,0.78)),
        radial-gradient(circle at 50% 12%, rgba(183,124,255,0.18), transparent 34%);
      pointer-events: none;
      z-index: -1;
    }

    .shell {
      width: min(860px, 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .title-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 26px;
    }

    .title-wrap::before {
      content: "";
      position: absolute;
      width: min(460px, 86vw);
      height: 130px;
      background: radial-gradient(circle, rgba(183,124,255,0.28) 0%, rgba(183,124,255,0.12) 42%, transparent 75%);
      filter: blur(26px);
      z-index: 0;
      pointer-events: none;
    }

    .logo {
      position: relative;
      z-index: 1;
      width: min(560px, 92vw);
      filter:
        drop-shadow(0 10px 0 rgba(0,0,0,0.9))
        drop-shadow(0 18px 35px rgba(0,0,0,0.55))
        drop-shadow(0 0 18px rgba(183,124,255,0.35));
    }

    .home-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
      cursor: pointer;
      transform-origin: center;
      transition: transform 0.22s ease, filter 0.22s ease;
    }

    .home-link:hover,
    .home-link:focus-visible {
      transform: scale(1.035);
      filter: brightness(1.04);
    }

    .home-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 8px;
      border-radius: 12px;
    }

    .policy-card {
      width: 100%;
      padding: 28px;
      border-radius: 26px;
      background:
        radial-gradient(circle at 50% 0%, rgba(183,124,255,0.09), transparent 34%),
        linear-gradient(180deg, rgba(18,18,27,0.92), rgba(10,10,16,0.94));
      border: 1px solid rgba(183,124,255,0.24);
      box-shadow:
        0 0 0 1px rgba(183,124,255,0.08),
        0 0 28px rgba(183,124,255,0.10),
        var(--shadow);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    h1 {
      margin: 0 0 10px;
      color: var(--accent);
      font-family: 'Press Start 2P', cursive;
      font-size: 18px;
      line-height: 1.7;
      text-align: center;
      text-shadow: 0 2px 0 #000;
    }

    .updated {
      margin: 0 0 24px;
      color: rgba(237,240,247,0.58);
      font-family: 'Press Start 2P', cursive;
      font-size: 7px;
      line-height: 1.8;
      text-align: center;
      text-shadow: 0 2px 0 #000;
    }

    h2 {
      margin: 26px 0 10px;
      color: rgba(237,240,247,0.90);
      font-family: 'Press Start 2P', cursive;
      font-size: 10px;
      line-height: 1.7;
      text-shadow: 0 2px 0 #000;
    }

    p, li {
      color: rgba(237,240,247,0.76);
      font-size: 15px;
      line-height: 1.75;
    }

    ul {
      margin: 10px 0 0;
      padding-left: 22px;
    }

    a {
      color: #d0a8ff;
      text-decoration: none;
    }

    a:hover,
    a:focus-visible {
      color: #fff;
      text-decoration: underline;
      outline: 0;
    }

    .back-link {
      display: inline-flex;
      justify-content: center;
      margin-top: 24px;
      padding: 13px 16px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(183,124,255,1), rgba(141,92,255,1));
      color: #0c0912;
      font-family: 'Press Start 2P', cursive;
      font-size: 8px;
      line-height: 1.4;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(141,92,255,0.16);
    }

    .footer-fade {
      width: 100%;
      height: 130px;
      margin-top: 36px;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 30px;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.75) 30%,
        rgba(0,0,0,0.35) 65%,
        rgba(0,0,0,0.0) 100%
      );
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-family: 'Press Start 2P', cursive;
      font-size: 7px;
      color: rgba(233,236,247,0.40);
      letter-spacing: 0.6px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 8px 11px;
      color: rgba(233,236,247,0.58);
      text-decoration: none;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: rgba(233,236,247,0.88);
      text-decoration: underline;
      outline: 0;
    }

    @media (max-width: 640px) {
      body { padding: 34px 14px 0; }
      .policy-card { padding: 20px; border-radius: 22px; }
      h1 { font-size: 14px; }
      p, li { font-size: 14px; }
    }

    @media (max-width: 420px) {
      body {
        padding: 32px 10px 0;
      }

      .title-wrap {
        margin-bottom: 22px;
      }

      .logo {
        width: min(420px, 96vw);
      }

      .policy-card {
        padding: 18px 14px;
      }

      h1 {
        font-size: 12px;
        line-height: 1.8;
      }

      h2 {
        font-size: 9px;
      }

      p,
      li {
        font-size: 13px;
      }

      .footer-links {
        font-size: 6px;
        line-height: 1.7;
      }
    }
