
    /* ========== RESET & BASE ========== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-primary:   #0a0a0f;
      --bg-card:      #1a1a2e;
      --bg-card2:     #16213e;
      --accent:       #7c3aed;
      --accent-light: #9d5ff5;
      --accent-glow:  rgba(124,58,237,0.35);
      --cyan:         #06b6d4;
      --cyan-glow:    rgba(6,182,212,0.25);
      --gold:         #f59e0b;
      --gold-glow:    rgba(245,158,11,0.25);
      --text-primary: #f0f0ff;
      --text-secondary: #a0a0c0;
      --text-muted:   #6b6b8a;
      --border:       rgba(124,58,237,0.2);
      --border-cyan:  rgba(6,182,212,0.2);
      --radius:       16px;
      --radius-sm:    10px;
      --transition:   0.3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.75;
      overflow-x: hidden;
    }

    /* ========== SCROLLBAR ========== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

    /* ========== TYPOGRAPHY ========== */
    h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
    a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
    a:hover { color: var(--accent-light); }
    p { margin-bottom: 1rem; }
    ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
    li { margin-bottom: 0.4rem; }

    /* ========== LAYOUT ========== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

    /* ========== NAV ========== */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(10,10,15,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .nav-logo {
      font-size: 1.6rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 0.25rem;
      list-style: none;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links a {
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 0.875rem;
      padding: 0.4rem 0.75rem;
      border-radius: 8px;
      transition: all var(--transition);
      white-space: nowrap;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text-primary);
      background: rgba(124,58,237,0.15);
    }
    .nav-links a.active { color: var(--accent-light); }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent), #5b21b6) !important;
      color: #fff !important;
      font-weight: 700 !important;
      padding: 0.45rem 1rem !important;
    }
    .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

    /* ========== HERO ========== */
    .page-hero {
      padding: 5rem 1.5rem 3.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(6,182,212,0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(124,58,237,0.15);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-light);
      margin-bottom: 1.25rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 900;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff 30%, var(--accent-light) 70%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-hero .hero-sub {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 580px;
      margin: 0 auto 1.5rem;
    }

    /* ========== BREADCRUMB ========== */
    .breadcrumb-bar {
      padding: 0.75rem 1.5rem;
      background: rgba(26,26,46,0.5);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      list-style: none;
      max-width: 1100px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
    .breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
    .breadcrumb a { color: var(--cyan); }
    .breadcrumb a:hover { color: var(--accent-light); }
    .breadcrumb .sep { color: var(--text-muted); }
    .breadcrumb .current { color: var(--text-primary); font-weight: 500; }

    /* ========== META BAR ========== */
    .meta-bar {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1rem 0 2rem;
      flex-wrap: wrap;
    }
    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .meta-item .icon { font-size: 1rem; }
    .meta-item strong { color: var(--text-secondary); }

    /* ========== MAIN LAYOUT ========== */
    .page-layout {
      padding: 0 1.5rem 4rem;
    }
    .layout-grid {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 2.5rem;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }
    @media (max-width: 900px) {
      .layout-grid { grid-template-columns: 1fr; }
      .sidebar { order: -1; }
    }

    /* ========== TOC SIDEBAR ========== */
    .sidebar { position: sticky; top: 90px; }
    .toc-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      overflow: hidden;
    }
    .toc-card::before {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--cyan));
      margin: -1.5rem -1.5rem 1.25rem;
    }
    .toc-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    .toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .toc-list li { margin-bottom: 0; }
    .toc-list a {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      color: var(--text-secondary);
      font-size: 0.82rem;
      padding: 0.45rem 0.6rem;
      border-radius: 8px;
      transition: all var(--transition);
      line-height: 1.4;
    }
    .toc-list a:hover {
      color: var(--text-primary);
      background: rgba(124,58,237,0.12);
    }
    .toc-list a .toc-num {
      color: var(--accent-light);
      font-weight: 700;
      min-width: 20px;
      font-size: 0.78rem;
      padding-top: 1px;
    }

    /* ========== CONTENT SECTIONS ========== */
    .terms-content { max-width: 100%; }
    .terms-section {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem 2.25rem;
      margin-bottom: 1.75rem;
      transition: border-color var(--transition), box-shadow var(--transition);
      scroll-margin-top: 100px;
      position: relative;
      overflow: hidden;
    }
    .terms-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--accent), transparent);
      border-radius: 0 0 4px 4px;
    }
    .terms-section:hover {
      border-color: rgba(124,58,237,0.4);
      box-shadow: 0 8px 40px rgba(124,58,237,0.1);
    }
    .terms-section h2 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .terms-section h2 .section-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: rgba(124,58,237,0.15);
      border-radius: 8px;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .terms-section h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--cyan);
      margin: 1.25rem 0 0.6rem;
    }
    .terms-section p,
    .terms-section li {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
    }
    .terms-section ul { list-style: none; padding: 0; }
    .terms-section ul li {
      padding: 0.3rem 0 0.3rem 1.5rem;
      position: relative;
    }
    .terms-section ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--accent-light);
      font-size: 0.8rem;
      top: 0.45rem;
    }
    .terms-section ol { padding-left: 1.25rem; }
    .terms-section ol li { color: var(--text-secondary); font-size: 0.95rem; }

    /* ========== INFO BOX ========== */
    .info-box {
      background: rgba(6,182,212,0.08);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-sm);
      padding: 1rem 1.25rem;
      margin: 1rem 0;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .info-box .info-icon { font-size: 1.1rem; margin-right: 0.4rem; }

    .warn-box {
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.25);
      border-radius: var(--radius-sm);
      padding: 1rem 1.25rem;
      margin: 1rem 0;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .success-box {
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: var(--radius-sm);
      padding: 1rem 1.25rem;
      margin: 1rem 0;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    /* ========== CONTACT CARD ========== */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
    .contact-item {
      background: rgba(124,58,237,0.08);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 1.1rem 1.25rem;
      text-align: center;
      transition: all var(--transition);
    }
    .contact-item:hover {
      border-color: var(--accent);
      background: rgba(124,58,237,0.15);
      transform: translateY(-2px);
    }
    .contact-item .c-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
    .contact-item .c-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
    .contact-item .c-value { font-size: 0.9rem; font-weight: 600; color: var(--cyan); }

    /* ========== RELATED LINKS ========== */
    .related-links {
      background: var(--bg-card);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 1.75rem;
    }
    .related-links h3 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    .related-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .related-links ul li { margin: 0; }
    .related-links ul li a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(6,182,212,0.08);
      border: 1px solid var(--border-cyan);
      border-radius: 8px;
      padding: 0.4rem 0.85rem;
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--cyan);
      transition: all var(--transition);
    }
    .related-links ul li a:hover {
      background: rgba(6,182,212,0.18);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ========== FOOTER ========== */
    .site-footer {
      background: linear-gradient(180deg, var(--bg-card2) 0%, #0d0d18 100%);
      border-top: 1px solid var(--border);
      padding: 4rem 1.5rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.75rem;
    }
    .footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
    .footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: color var(--transition); }
    .footer-links a:hover { color: var(--cyan); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: gap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
    .footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
    .footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
    .footer-legal a:hover { color: var(--cyan); }

    /* ========== BACK TO TOP ========== */
    .back-to-top {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(124,58,237,0.15);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.5rem 1.25rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent-light);
      margin-top: 1.5rem;
      transition: all var(--transition);
    }
    .back-to-top:hover {
      background: rgba(124,58,237,0.25);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 640px) {
      .terms-section { padding: 1.5rem 1.25rem; }
      .page-hero { padding: 3.5rem 1rem 2.5rem; }
    }

    /* ========== HAMBURGER ========== */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: all var(--transition);
    }
    @media (max-width: 820px) {
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(10,10,15,0.98);
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--border);
      }
      .nav-links.open { display: flex; }
      .site-nav { position: relative; }
    }
  
