*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #000000;
      --white: #ffffff;
      --off: #888888;
      --border: rgba(255,255,255,0.10);
      --accent: #ff5c00;
      --font-title: 'Black Ops One', cursive;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }

    nav {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      background: var(--black);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo a {
      display: block;
      line-height: 0;
    }

    .nav-logo img {
      height: clamp(20px, 4vw, 50px);
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-back {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--off);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-back:hover { color: var(--white); }

    .legal-hero {
      position: relative;
      padding: 100px 48px 80px;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 90% at 85% 20%, rgba(255, 92, 0, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(0, 229, 160, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .legal-hero-inner {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }

    .legal-updated {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--off);
      margin-bottom: 32px;
    }

    .legal-hero h1 {
      font-family: var(--font-title);
      font-weight: 400;
      font-size: clamp(40px, 6.5vw, 88px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      max-width: 16ch;
    }

    .legal-hero-line {
      display: block;
      width: min(480px, 55vw);
      height: 2px;
      background: var(--accent);
      margin-top: 48px;
    }

    .legal-content {
      flex: 1;
      max-width: 960px;
      margin: 0 auto;
      width: 100%;
      padding: 80px 48px 120px;
    }

    .legal-section {
      margin-bottom: 56px;
    }

    .legal-section:last-child { margin-bottom: 0; }

    .legal-section h2 {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--off);
      margin-bottom: 24px;
    }

    .legal-section p {
      font-size: clamp(16px, 1.6vw, 19px);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      margin-bottom: 20px;
    }

    .legal-section p:last-child { margin-bottom: 0; }

    .legal-section ul {
      list-style: none;
      margin-bottom: 20px;
    }

    .legal-section ul:last-child { margin-bottom: 0; }

    .legal-section li {
      font-size: clamp(16px, 1.6vw, 19px);
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      padding-left: 20px;
      position: relative;
      margin-bottom: 12px;
    }

    .legal-section li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    .legal-section a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .legal-section a:hover { color: var(--accent); }

    .cookie-table-wrap {
      overflow-x: auto;
      margin: 24px 0;
      border: 1px solid var(--border);
    }

    .cookie-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.6;
    }

    .cookie-table th,
    .cookie-table td {
      padding: 16px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      color: rgba(255,255,255,0.65);
      vertical-align: top;
    }

    .cookie-table th {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--off);
      background: rgba(255,255,255,0.02);
    }

    .cookie-table tr:last-child td { border-bottom: none; }

    .cookie-table td:first-child {
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
    }

    .legal-note {
      padding: 32px 28px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      margin-top: 64px;
    }

    .legal-note p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      margin: 0;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom-left img {
      height: 28px;
      width: auto;
      opacity: 0.35;
    }

    .footer-bottom-right {
      font-size: 12px;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.04em;
    }

    .footer-legal {
      display: flex;
      gap: 20px;
      font-size: 12px;
    }

    .footer-legal a {
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: rgba(255,255,255,0.65); }

    @media (max-width: 768px) {
      nav { padding: 24px; }
      .legal-hero { padding: 72px 24px 56px; }
      .legal-content { padding: 56px 24px 80px; }
      .footer-bottom { padding: 24px; }
      .cookie-table td:first-child { white-space: normal; }
    }