        body {
            font-family: 'Inter', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        #canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
        }

        .dark-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            z-index: 5;
            pointer-events: none;
        }

        .content {
            position: relative;
            z-index: 10;
            padding-top: 100px;
            padding-bottom: 4rem;
        }

        .policy-container {
            max-width: 860px;
            margin: 0 auto;
            padding: 3rem 2rem;
            background: rgba(10, 10, 10, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(20, 184, 166, 0.2);
            border-radius: 16px;
            box-shadow: 0 0 60px rgba(0, 255, 255, 0.04), 0 8px 40px rgba(0, 0, 0, 0.6);
        }

        .policy-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(20, 184, 166, 0.2);
        }

        .policy-hero .badge {
            display: inline-block;
            background: rgba(20, 184, 166, 0.12);
            border: 1px solid rgba(20, 184, 166, 0.3);
            color: #14B8A6;
            font-size: 0.75rem;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            margin-bottom: 1.25rem;
        }

        .policy-hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 700;
            background: linear-gradient(135deg, #14B8A6, #00FFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
        }

        .policy-hero .last-updated {
            color: #999;
            font-size: 0.9rem;
        }

        .policy-body h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #00FFFF;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(20, 184, 166, 0.15);
            letter-spacing: 0.5px;
        }

        .policy-body p {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .policy-body ul {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0.75rem 0 1rem 1.5rem;
        }

        .policy-body ul li {
            margin-bottom: 0.5rem;
        }

        .policy-body strong {
            color: #ffffff;
            font-weight: 600;
        }

        .policy-body a {
            color: #00FFFF;
            text-decoration: none;
            transition: color 0.2s ease;
            word-break: break-word;
        }

        .policy-body a:hover {
            color: #14B8A6;
            text-decoration: underline;
        }

        .policy-body hr {
            border: none;
            border-top: 1px solid rgba(20, 184, 166, 0.15);
            margin: 2.5rem 0;
        }

        @media (max-width: 640px) {
            .policy-container {
                padding: 2rem 1.25rem;
                border-radius: 10px;
            }
        }

        @media (max-width: 480px) {
            .content {
                padding-top: 80px;
            }
            .policy-container {
                padding: 1.5rem 1rem;
                margin: 0 0.75rem;
            }
            .policy-body ul {
                margin-left: 1rem;
            }
        }
