  :root {
      --bg: #231D35;
      --bg2: #2A2340;
      --p: #9B5DE5;
      --pl: #B47FFF;
      --pk: #E040A0;
      --w: #F2EDFF;
      --m: #A89EC0;
      --g: #3DDBA8;
      --card: rgba(255,255,255,0.04);
      --border: rgba(255,255,255,0.08);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: var(--bg);
      color: var(--w);
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      line-height: 1.8;
      min-height: 100vh;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(35,29,53,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 32px;
      filter: brightness(0) invert(1);
    }

    .nav-logo span {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--w);
    }

    .nav-back {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--m);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-back:hover { color: var(--pl); }
    .nav-back svg { width: 16px; height: 16px; }

    .hero {
      background: linear-gradient(135deg, var(--bg2) 0%, #1a1428 100%);
      border-bottom: 1px solid var(--border);
      padding: 72px 40px 56px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(61,219,168,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(61,219,168,0.1);
      border: 1px solid rgba(61,219,168,0.25);
      color: var(--g);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3rem);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--g), var(--pl));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-meta {
      color: var(--m);
      font-size: 0.9rem;
    }

    .wrap {
      max-width: 860px;
      margin: 0 auto;
      padding: 64px 40px 100px;
    }

    .toc {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 36px;
      margin-bottom: 56px;
    }

    .toc h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--g);
      margin-bottom: 16px;
    }

    .toc ol {
      columns: 2;
      column-gap: 32px;
      padding-left: 20px;
    }

    .toc li { margin-bottom: 8px; }

    .toc a {
      color: var(--m);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .toc a:hover { color: var(--g); }

    .legal-section {
      margin-bottom: 56px;
      scroll-margin-top: 90px;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .section-number {
      background: linear-gradient(135deg, var(--g), var(--p));
      color: white;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .section-header h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--w);
    }

    .legal-section p {
      color: var(--m);
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .legal-section p:last-child { margin-bottom: 0; }

    .clause { margin-bottom: 16px; }

    .clause-num {
      font-weight: 600;
      color: var(--g);
      font-size: 0.85rem;
      margin-bottom: 4px;
      font-family: 'Syne', sans-serif;
    }

    .clause p {
      color: var(--m);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    .sub-clauses {
      margin-top: 12px;
      padding-left: 20px;
      border-left: 2px solid rgba(61,219,168,0.2);
    }

    .sub-clause { margin-bottom: 12px; }

    .sub-clause-num {
      font-weight: 500;
      color: rgba(61,219,168,0.6);
      font-size: 0.8rem;
      margin-bottom: 2px;
    }

    .sub-clause p {
      color: rgba(168,158,192,0.85);
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .highlight-box {
      background: rgba(61,219,168,0.07);
      border: 1px solid rgba(61,219,168,0.2);
      border-left: 3px solid var(--g);
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin: 20px 0;
    }

    .highlight-box p {
      color: var(--w) !important;
      font-size: 0.9rem !important;
      margin: 0 !important;
    }

    .warning-box {
      background: rgba(224,64,160,0.08);
      border: 1px solid rgba(224,64,160,0.2);
      border-left: 3px solid var(--pk);
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin: 20px 0;
    }

    .warning-box p {
      color: var(--w) !important;
      font-size: 0.85rem !important;
      margin: 0 !important;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .contact-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px 28px;
      margin-top: 16px;
    }

    .contact-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--w);
      margin-bottom: 12px;
    }

    .contact-card p {
      margin-bottom: 8px !important;
      font-size: 0.9rem !important;
    }

    .contact-card a {
      color: var(--g);
      text-decoration: none;
    }

    .highlight {
       color: var(--g);
      text-decoration: none;
    }

    .rights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 16px;
    }

    .right-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
    }

    .right-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--g);
      margin-bottom: 8px;
    }

    .right-card p {
      color: var(--m) !important;
      font-size: 0.85rem !important;
      margin-bottom: 0 !important;
    }

    .legal-footer {
      text-align: center;
      padding: 40px;
      border-top: 1px solid var(--border);
      color: var(--m);
      font-size: 0.85rem;
    }

    .legal-footer a {
      color: var(--pl);
      text-decoration: none;
    }

    .legal-footer a:hover { text-decoration: underline; }

    @media (max-width: 600px) {
      nav { padding: 16px 20px; }
      .hero { padding: 48px 20px 40px; }
      .wrap { padding: 40px 20px 80px; }
      .toc ol { columns: 1; }
      .rights-grid { grid-template-columns: 1fr; }
    }