    @font-face { font-family: 'Clash Display'; src: url('/assets/fonts/clash-display-600.woff2') format('woff2'); font-weight: 600; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Clash Display'; src: url('/assets/fonts/clash-display-700.woff2') format('woff2'); font-weight: 700; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-400.woff2') format('woff2'); font-weight: 400; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-500.woff2') format('woff2'); font-weight: 500; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-700.woff2') format('woff2'); font-weight: 700; font-display: swap; font-style: normal; }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; scrollbar-gutter: stable; }
    body {
      background: rgb(5, 5, 5);
      color: #fff;
      font-family: 'Satoshi', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-text-size-adjust: 100%;
    }
    a { text-decoration: none; color: inherit; }

    .nav {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      width: min(1380px, 90vw); padding: 12px 24px;
      background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 9999px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo img { width: 30px; height: 30px; border-radius: 6px; }
    .nav-logo span { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
    .nav-links { display: flex; align-items: center; gap: 40px; }
    .nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.3s; }
    .nav-links a:hover { color: #fff; }
    .nav-cta {
      font-size: 14px; font-weight: 600; color: #fff;
      background: rgb(5, 5, 5); padding: 10px 22px; border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .nav-links a.nav-cta:hover { background: #ffffff; color: #000000; border-color: #ffffff; }

    /* ===== LANGUAGE SWITCHER (Desktop — inside nav) ===== */
    .nav-left { display: flex; align-items: center; gap: 30px; }
    .lang-nav { display: flex; align-items: center; gap: 5px; }
    .lang-nav a { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.55); transition: color 0.3s; letter-spacing: 0.03em; }
    .lang-nav a:hover { color: #fff; }
    .lang-nav a.lang-active { color: rgba(255, 255, 255, 0.75); pointer-events: none; }
    .lang-nav-sep { font-size: 11px; color: rgba(255, 255, 255, 0.12); user-select: none; }
    .nav-mobile-socials .lang-mobile-link {
      display: flex; align-items: center; justify-content: center; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
      width: 30px !important; min-width: 30px !important; max-width: 30px !important; height: 30px !important;
      font-size: 10px !important; font-weight: 700; color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s, border-color 0.3s; letter-spacing: 0.02em; padding: 0 !important;
      border: 1.5px solid rgba(255, 255, 255, 0.4) !important; border-radius: 9px; box-sizing: border-box;
    }
    .nav-mobile-socials .lang-mobile-link:hover { color: rgba(255, 255, 255, 0.8) !important; border-color: rgba(255, 255, 255, 0.6) !important; }

    /* Burger Button — hidden on desktop */
    .nav-burger {
      display: none;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0;
      z-index: 10;
    }
    .burger-line {
      display: block;
      width: 20px;
      height: 2px;
      background: #fff;
      border-radius: 1px;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
    }
    .nav-burger.open {
      background: #fff;
      border-radius: 10px;
    }
    .nav-burger.open .burger-line {
      background: #000;
    }
    .nav-burger.open .burger-line-1 {
      transform: translateY(5px) rotate(45deg);
    }
    .nav-burger.open .burger-line-2 {
      transform: translateY(-5px) rotate(-45deg);
    }

    /* Nav overlay — hidden by default */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 999;
    }
    .nav-overlay.open { display: block; }

    /* Nav mobile socials — hidden on desktop */
    .nav-mobile-socials { display: none; }

    @keyframes spin-border {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .legal-page {
      max-width: 900px;
      margin: 0 auto;
      padding: 140px 24px 80px;
      position: relative;
    }
    /* === Mouse Trail Canvas === */
    .trail-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .legal-page h1 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 600;
      margin-bottom: 48px;
      letter-spacing: -0.03em;
    }
    .legal-page h2 {
      font-size: 24px;
      font-weight: 700;
      margin-top: 40px;
      margin-bottom: 12px;
    }
    .legal-page h3 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 28px;
      margin-bottom: 8px;
    }
    .legal-page p, .legal-page address, .legal-page ul {
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      margin-bottom: 16px;
      font-weight: 400;
      font-style: normal;
    }
    .legal-page p, .legal-page ul {
      font-size: 18px;
    }
    .legal-page address,
    .legal-page .contact-info {
      font-size: 20px;
    }
    .legal-page ul { padding-left: 20px; }
    .legal-page li { margin-bottom: 6px; }
    .legal-page a { color: #4B7FFF; transition: color 0.3s; word-break: break-all; overflow-wrap: break-word; }
    .legal-page a:hover { color: #fff; }
    .legal-page strong { color: rgba(255, 255, 255, 0.85); }
    .legal-page .caps-block {
      text-transform: uppercase;
      font-weight: 700;
      font-size: inherit;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer {
      padding: 20px 40px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1380px;
      margin: 0 auto;
    }
    .footer-left {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
    }
    .footer-left a { transition: color 0.3s; }
    .footer-left a:hover { color: rgba(255, 255, 255, 0.7); }
    .footer-center {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
    }
    .footer-center a { transition: color 0.3s; }
    .footer-center a:hover { color: rgba(255, 255, 255, 0.7); }
    .footer-right {
      display: flex;
      align-items: center;
    }
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .footer-socials a {
      display: flex;
      align-items: center;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.3s;
    }
    .footer-socials a:hover { color: rgba(255, 255, 255, 0.8); }
    /* Interactive Glow Line */
    .glow-divider {
      position: relative;
      width: 100%;
      height: 20px;
      margin: 0 auto 32px;
      display: flex;
      align-items: center;
      cursor: default;
    }
    .glow-divider::before {
      content: '';
      position: absolute;
      top: -30px;
      bottom: -30px;
      left: 0;
      right: 0;
      z-index: 10;
    }
    .glow-line-base {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 99px;
      position: absolute;
      mask: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%);
      -webkit-mask: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%);
      z-index: 0;
    }
    .glow-line-orb, .glow-line-core { opacity: 0; background: none; transition: none; }
    .glow-divider {
      overflow: hidden;
      mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
      -webkit-mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    }
    .glow-divider::before {
      top: auto; bottom: auto;
      width: 250px; height: 6px; border-radius: 99px;
      background: radial-gradient(125px 4px at center, #0070FF 0%, #7F00FF 50%, transparent 100%);
      filter: blur(2px); mix-blend-mode: plus-lighter; z-index: 3;
      mask: none; -webkit-mask: none;
      animation: glow-ltr 4s ease-in-out infinite;
    }
    @keyframes glow-ltr {
      0% { left: -250px; opacity: 0.6; }
      100% { left: 100%; opacity: 0.6; }
    }

    @media (max-width: 1200px) {
      .legal-page address,
      .legal-page address + p,
      .legal-page address + p + p {
        text-align: left;
      }
    }

    @media (max-width: 810px) {
      .lang-nav { display: none; }
      /* Nav — mobile: full-width top bar */
      .nav {
        width: 100%;
        top: 0;
        border-radius: 0;
        padding: 16px 20px;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-wrap: wrap;
        transition: border-radius 0.35s ease;
      }
      .nav.menu-open {
        border-radius: 0 0 24px 24px;
      }
      .nav-burger {
        display: flex;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding-top: 16px;
        margin-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .nav-links.open {
        display: flex;
      }
      .nav-links a {
        width: 100%;
        padding: 14px 8px;
        font-size: 17px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        border: none;
        background: none;
        border-radius: 0;
        text-align: left;
      }
      /* Mobile CTA — gradient like home page */
      .nav-links a.nav-cta {
        position: relative;
        margin-top: 20px;
        text-align: center;
        padding: 14px 22px;
        width: 100%;
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        background: linear-gradient(90deg, #00D4FF, #7F00FF);
        border: none;
        border-radius: 9999px;
        overflow: hidden;
        isolation: isolate;
      }
      .nav-links a.nav-cta::before {
        content: '';
        position: absolute;
        inset: -800%;
        border-radius: 50%;
        background: conic-gradient(transparent 40%, rgba(255,255,255,0.8) 50%, transparent 60%);
        animation: spin-border 3s linear infinite;
        z-index: -2;
      }
      .nav-links a.nav-cta::after {
        content: '';
        position: absolute;
        inset: 3px;
        border-radius: 9999px;
        background: linear-gradient(90deg, #00D4FF, #7F00FF);
        z-index: -1;
        transition: background 0.3s;
      }
      .nav-links a.nav-cta:hover {
        color: #000;
      }
      .nav-links a.nav-cta:hover::after {
        background: #fff;
      }
      /* Social icons in mobile menu */
      .nav-mobile-socials {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 16px;
        margin-top: 8px;
      }
      .nav-mobile-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        padding: 0 !important;
        font-size: 0;
        width: auto !important;
        text-align: center;
      }
      .nav-mobile-socials a:hover { color: rgba(255, 255, 255, 0.8); }

      .legal-page { padding-top: 100px; }
      .legal-page h2 { font-size: 20px; }
      .legal-page h3 { font-size: 18px; }
      .legal-page p, .legal-page ul { font-size: 16px; }

      /* Auto-animated glow line (no hover on touch) */
      .glow-line-orb, .glow-line-core {
        opacity: 0;
        background: none;
        transition: none;
      }
      .glow-divider {
        overflow: hidden;
        mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
      }

      .legal-page address,
      .legal-page address + p,
      .legal-page address + p + p {
        text-align: left;
      }
      .glow-divider::before {
        top: auto;
        bottom: auto;
        width: 180px;
        height: 6px;
        border-radius: 99px;
        background: radial-gradient(90px 4px at center, #0070FF 0%, #7F00FF 50%, transparent 100%);
        filter: blur(2px);
        mix-blend-mode: plus-lighter;
        z-index: 3;
        mask: none;
        -webkit-mask: none;
        animation: glow-ltr 3.5s ease-in-out infinite;
      }
      .glow-line-base {
        mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      }
      @keyframes glow-ltr {
        0% { left: -180px; opacity: 0.6; }
        100% { left: 100%; opacity: 0.6; }
      }

      .footer {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px 20px 40px;
        gap: 16px;
      }
      .footer-left { order: 1; }
      .footer-right { order: 2; }
      .footer-center {
        order: 3;
        width: 100%;
        text-align: center;
      }
    }
