
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --ink: #0c0e14;
            --ink-soft: #1a1d28;
            --border: rgba(255,255,255,0.08);
            --border-glow: rgba(108,99,255,0.4);
            --text-primary: #f0f0f5;
            --text-secondary: rgba(240,240,245,0.55);
            --text-muted: rgba(240,240,245,0.3);
            --accent: #6c63ff;
            --accent-glow: rgba(108,99,255,0.35);
            --teal: #00d4aa;
            --rose: #ff5e7d;
            --amber: #f5a623;
        }

        body {
            background: var(--ink);
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* ── CANVAS BACKGROUND ── */
        #bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
        body::before {
            content: ''; position: fixed; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            background-size: 256px; opacity: 0.4; z-index: 0; pointer-events: none;
        }

        /* ── NAV ── */
        nav {
            display: flex; align-items: center; justify-content: space-between;
            padding: 24px 48px; border-bottom: 1px solid var(--border);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            position: sticky; top: 0; z-index: 100; background: rgba(12, 14, 20, 0.7);
        }
        .nav-logo {
            font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
            letter-spacing: -0.5px; color: var(--text-primary); text-decoration: none;
            display: flex; align-items: center; gap: 10px;
        }
        .nav-logo-dot {
            width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
            box-shadow: 0 0 12px var(--accent); animation: pulse-dot 2.5s ease-in-out infinite;
        }
        .nav-links { display: flex; gap: 8px; list-style: none; }
        .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 8px 16px; border-radius: 8px; transition: all 0.2s ease; }
        .nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
        .nav-cta { color: var(--text-primary) !important; background: var(--accent) !important; font-weight: 500; padding: 9px 20px !important; border-radius: 10px !important; }
        .nav-cta:hover { background: #7b73ff !important; box-shadow: 0 0 20px var(--accent-glow) !important; }

        /* ── PAGE LAYOUT ── */
        .page-content { position: relative; z-index: 1; flex: 1; padding: 80px 24px 120px; max-width: 900px; margin: 0 auto; width: 100%; }
        
        /* ── HEADER ── */
        .legal-header { text-align: center; margin-bottom: 56px; animation: fade-up 0.6s ease both; }
        .page-title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; }
        .page-sub { font-size: 15px; color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

        /* ── LEGAL DOCUMENT CONTENT ── */
        .document-wrapper {
            background: rgba(255,255,255,0.02); border: 1px solid var(--border);
            border-radius: 24px; padding: 56px;
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            animation: fade-up 0.6s 0.2s ease both;
        }

        .doc-section { margin-bottom: 40px; }
        .doc-section:last-child { margin-bottom: 0; }
        
        .doc-section h2 {
            font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700;
            color: var(--text-primary); margin-bottom: 20px;
        }
        
        .doc-section h3 {
            font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600;
            color: var(--text-primary); margin: 24px 0 12px;
        }

        .doc-section p {
            color: var(--text-secondary); font-size: 15px; line-height: 1.8;
            margin-bottom: 16px;
        }
        
        .doc-section ul {
            color: var(--text-secondary); font-size: 15px; line-height: 1.8;
            margin-bottom: 16px; padding-left: 24px;
        }
        
        .doc-section li { margin-bottom: 8px; }

        .doc-section a {
            color: #b4afff; text-decoration: none; transition: color 0.2s;
        }
        .doc-section a:hover { text-decoration: underline; color: var(--accent); }

        /* ── FOOTER ── */
        footer { border-top: 1px solid var(--border); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
        .footer-copy, .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        .footer-links { display: flex; gap: 24px; list-style: none; }
        .footer-links a:hover { color: var(--text-secondary); }

        @keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

      
        
        .menu-toggle {
    display: none; /* Hides the hamburger menu on desktop */
    cursor: pointer;
}

@media (max-width: 768px) {
    nav { padding: 18px 24px; } 
    .nav-links { display: none; }
    
    /* Add this line to show the menu icon on mobile */
    .menu-toggle { display: block; } 
    
    .page-content { padding: 60px 20px; gap: 60px; }
    .story-stats { flex-direction: column; gap: 24px; text-align: center; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
}

   /* Dot on the the image */
        .nav-logo-dot {
    width: 8px; 
    height: 8px; 
    border-radius: 50%;
    background: var(--accent); 
    
    /* Position exactly in the center of the image */
    position: absolute;
    top: 15%;
    left: 77%;
    transform: translate(-50%, -50%);
    
    /* Apply the blink animation */
    animation: logoBlink 2s infinite ease-in-out;
}

/* Add the animation keyframes at the bottom of your CSS file (or right after the class) */
@keyframes logoBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--accent);
    }
    50% {
        opacity: 0.2;
        box-shadow: 0 0 2px var(--accent);
    }
}
