 /* ─── PREMIUM DARK DESIGN TOKENS (ABYSS THEME) ─── */
    :root {
      --bg-base: #07090f;
      --bg-subtle: #0f1423;
      --bg-surface: #141a2e;
      
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      --text-inverse: #000000;
      
      --border-light: rgba(255, 255, 255, 0.15);
      --border-hover: rgba(255, 255, 255, 0.3);
      
      --brand-gold: #fbbf24;
      --brand-gold-light: #fde047;
      --brand-gold-dark: #d97706;
      --brand-primary: var(--brand-gold); 
      --brand-gradient: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold-dark));
      
      --success: #10b981;
      --warning: #fbbf24;
      --danger: #ef4444;
      
      --header-bg: rgba(7, 9, 15, 0.85);
      
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
      --shadow-md: 0 10px 20px rgba(0,0,0,0.5);
      --shadow-glow: 0 10px 30px -10px rgba(251, 191, 36, 0.15);
      
      --font-main: 'Plus Jakarta Sans', sans-serif;
      --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
    }

    /* ─── RESET & BASE ─── */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-main);
      background-color: var(--bg-base);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      position: relative;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; outline: none; }
    
    /* ─── AMBIENT LIGHT BLOOMS ─── */
    .ambient-bloom {
      position: fixed; border-radius: 50%; filter: blur(120px);
      pointer-events: none; z-index: 0; opacity: 0.35;
    }
    .bloom-gold { background: rgba(251, 191, 36, 0.15); }
    .bloom-violet { background: rgba(124, 58, 237, 0.1); }

    /* ─── GLOBAL APP HEADER (Adapted to Screenshot) ─── */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: var(--header-bg); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-light); height: 70px;
    }
    .nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 24px; max-width: 1200px; margin: 0 auto; }
    .nav-left { display: flex; align-items: center; gap: 40px; }
    
    .brand { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 22px; color: var(--text-main); letter-spacing: -0.05em; }
    .brand span { color: var(--brand-primary); }
    
    .nav-links { display: flex; gap: 24px; font-weight: 600; font-size: 14px; color: var(--text-muted); align-items: center; }
    .nav-links a:hover { color: var(--brand-gold); }

    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 13px; transition: var(--transition); cursor: pointer; border: 1px solid var(--border-light); }
    .btn-primary { background: var(--brand-gradient); color: #000 !important; border: none; box-shadow: var(--shadow-glow); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -5px rgba(251, 191, 36, 0.3); }
    .btn-secondary { background: transparent; color: var(--text-main); border: none; padding: 10px 16px; }
    .btn-secondary:hover { color: var(--brand-gold); }
    .auth-buttons { display: flex; gap: 8px; align-items: center; }

    /* ─── MAIN LAYOUT ─── */
    .app-layout {
      flex: 1;
      display: flex; flex-direction: column; align-items: center;
      padding-top: 120px; padding-bottom: 80px;
      width: 100%; position: relative; z-index: 10;
    }
    .container {
      width: 100%; max-width: 860px; padding: 0 24px;
      animation: fadeUp 0.6s ease-out both;
    }

    /* ─── POLICY CARD ─── */
    .cards {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: var(--shadow-md);
    }
    
    .page-title {
      font-size: 32px; font-weight: 900; color: var(--text-main);
      text-align: center; margin-bottom: 32px; letter-spacing: -0.02em;
      border-bottom: 1px solid var(--border-light); padding-bottom: 32px;
    }

    .policy-content {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
    }
    .policy-content p { margin-bottom: 24px; }
    
    .policy-heading {
      font-size: 18px; font-weight: 800; color: var(--text-main);
      margin: 32px 0 16px 0; letter-spacing: -0.01em;
    }

    /* Custom Ordered List Styling */
    .policy-list {
      list-style: none; counter-reset: policy-counter;
      margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px;
    }
    .policy-list li {
      position: relative; padding-left: 32px;
    }
    .policy-list li::before {
      counter-increment: policy-counter; 
      content: counter(policy-counter) "."; 
      position: absolute; left: 0; top: 0; 
      color: var(--brand-primary); font-weight: 900; font-size: 16px;
    }

    /* Info Checklist Styling */
    .info-list {
      list-style: none; margin-bottom: 32px;
      display: flex; flex-direction: column; gap: 14px;
      background: var(--bg-subtle); padding: 24px; border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
    }
    .info-list li {
      display: flex; align-items: center; gap: 12px;
      font-weight: 600; color: var(--text-main);
    }
    .info-list li i { color: var(--brand-primary); flex-shrink: 0; }

    /* ─── CALL TO ACTION BOX ─── */
    .cta-box {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      background: linear-gradient(to right, rgba(251, 191, 36, 0.05), rgba(217, 119, 6, 0.05));
      border: 1px solid rgba(251, 191, 36, 0.2);
      padding: 24px 32px; border-radius: var(--radius-md);
      margin-top: 48px; flex-wrap: wrap;
    }
    .cta-left { display: flex; align-items: center; gap: 16px; }
    .cta-icon {
      width: 48px; height: 48px; background: var(--brand-gradient);
      border-radius: var(--radius-sm); display: grid; place-items: center;
      color: #000; flex-shrink: 0; box-shadow: var(--shadow-glow);
    }
    .cta-text { font-size: 16px; font-weight: 800; color: var(--text-main); }
    .cta-link {
      color: var(--brand-primary); font-weight: 800; font-size: 15px;
      display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
    }
    .cta-link:hover { color: var(--brand-gold-light); transform: translateX(4px); }

    /* ─── FOOTER (Adapted to Screenshot) ─── */
    .footer {
      background: var(--bg-surface); border-top: 1px solid var(--border-light);
      padding: 32px 24px; width: 100%; margin-top: auto;
    }
    .footer-container {
      max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 24px;
    }
    .footer-links {
      display: flex; gap: 32px; font-weight: 800; font-size: 13px;
      text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-main);
      flex-wrap: wrap;
    }
    .footer-link-item {
      display: flex; align-items: center; gap: 6px; cursor: pointer; transition: var(--transition);
    }
    .footer-link-item i { color: var(--brand-primary); }
    .footer-link-item:hover { color: var(--brand-gold-light); }
    
    .footer-right { display: flex; align-items: center; gap: 24px; color: var(--text-muted); font-size: 13px; font-weight: 600; }
    .social-icons { display: flex; gap: 12px; }
    .social-icon {
      width: 32px; height: 32px; border-radius: 50%; background: var(--bg-subtle);
      border: 1px solid var(--border-light); display: grid; place-items: center;
      color: var(--text-main); transition: var(--transition);
    }
    .social-icon:hover { background: var(--brand-gradient); color: #000; border-color: transparent; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .card { padding: 32px 24px; }
      .nav-links { display: none; }
      .footer-container { flex-direction: column; align-items: flex-start; }
      .cta-box { flex-direction: column; align-items: flex-start; text-align: left; }
    }