    :root {
      --primary: #8b5cf6;
      --primary-dark: #7c3aed;
      --accent: #06b6d4;
      --text: #ffffff;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --bg-card: #334155;
      --border: #475569;
      --border-light: rgba(71, 85, 105, 0.3);
      --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
      --gradient-card: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
      --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      background: var(--bg-primary);
      color: var(--text);
      line-height: 1.6;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* Background Elements */
    .bg-decoration {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
      z-index: 0;
    }

    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
      filter: blur(0.5px);
    }

    .particle:nth-child(1) { width: 4px; height: 4px; background: rgba(139,92,246,.8); animation: float1 15s infinite linear; left: 10%; }
    .particle:nth-child(2) { width: 6px; height: 6px; background: rgba(6,182,212,.7); animation: float2 20s infinite linear; left: 25%; animation-delay: -5s; }
    .particle:nth-child(3) { width: 3px; height: 3px; background: rgba(139,92,246,.9); animation: float3 18s infinite linear; left: 40%; animation-delay: -10s; }
    .particle:nth-child(4) { width: 5px; height: 5px; background: rgba(6,182,212,.6); animation: float1 22s infinite linear; left: 55%; animation-delay: -15s; }
    .particle:nth-child(5) { width: 4px; height: 4px; background: rgba(139,92,246,.7); animation: float2 16s infinite linear; left: 70%; animation-delay: -7s; }

    @keyframes float1 { 0%{transform:translateY(100vh)}100%{transform:translateY(-20vh)}}
    @keyframes float2 { 0%{transform:translateY(100vh)}100%{transform:translateY(-20vh)}}
    @keyframes float3 { 0%{transform:translateY(100vh)}100%{transform:translateY(-20vh)}}

    .glow-orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
      filter: blur(80px);
      opacity: 0.3;
    }

    .glow-orb-1 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(139,92,246,.4) 0%, transparent 70%);
      top: 20%;
      right: 10%;
    }

    .glow-orb-2 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(6,182,212,.3) 0%, transparent 70%);
      bottom: 30%;
      left: 15%;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: rgba(15,23,42,.9);
      backdrop-filter: blur(20px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6vw;
      border-bottom: 1px solid var(--border-light);
      z-index: 1000;
    }

    .nav-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      transition: color .3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width .3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Hero Section */
    .main {
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 150px 20px 60px;
      position: relative;
    }

    .main-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .main-highlight {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .main-subtitle {
      font-size: 1.2rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Privacy Section */
    .privacy-policy {
      max-width: 1000px;
      margin: 0 auto;
      padding: 80px 20px;
      background: var(--gradient-card);
      border-radius: 16px;
      border: 1px solid var(--border-light);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,.1);
    }

    .privacy-policy h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      color: var(--primary);
    }

    .privacy-policy p,
    .privacy-policy ul {
      color: var(--text-muted);
      margin-top: .8rem;
    }

    .privacy-policy ul {
      padding-left: 1.2rem;
    }

    .privacy-policy a {
      color: var(--accent);
      text-decoration: none;
    }

    footer {
      text-align: center;
      padding: 40px;
      color: var(--text-muted);
      font-size: .9rem;
      border-top: 1px solid var(--border-light);
      margin-top: 80px;
    }
