* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a2a2a);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            overflow: hidden;
        }
        .policy-container {
            background: rgba(15, 15, 20, 0.8);
            border-radius: 20px;
            padding: 30px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: 0 0 40px rgba(255,255,255,0.1), 0 0 20px rgba(255,255,255,0.05) inset;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1;
        }
        .policy-container::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 20%,
                rgba(255,255,255,0.03) 20%,
                rgba(255,255,255,0.03) 40%,
                transparent 40%,
                transparent 60%,
                rgba(255,255,255,0.03) 60%,
                rgba(255,255,255,0.03) 80%,
                transparent 80%
            );
            z-index: -1;
            animation: shine 8s linear infinite;
        }
        @keyframes shine {
            0% { transform: rotate(0) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }
        .policy-container::-webkit-scrollbar {
            width: 6px;
        }
        .policy-container::-webkit-scrollbar-thumb {
            background: rgba(156,164,255,0.3);
            border-radius: 3px;
        }
        .policy-icon {
            text-align: center;
            margin-bottom: 15px;
            animation: zoomIn 1s;
        }
        .policy-icon svg {
            width: 60px;
            height: 60px;
            filter: drop-shadow(0 0 10px rgba(156,164,255,0.3));
        }
        h1 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(255,255,255,0.2);
            color: #ffffff;
            animation: fadeInDown 1.2s;
        }
        .subtitle {
            font-size: 18px;
            text-align: center;
            margin-bottom: 20px;
            color: #e0e0e0;
            animation: fadeIn 1.4s;
        }
        .policy-content h2 {
            font-size: 20px;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .policy-content h3 {
            font-size: 18px;
            margin-top: 15px;
            margin-bottom: 8px;
            color: #ffffff;
        }
        .policy-content p, .policy-content li {
            font-size: 15px;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .policy-content ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
        .policy-content a {
            color: #9ca4ff;
            text-decoration: underline;
        }
        .policy-content a:hover {
            color: #bcc2ff;
        }
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 15s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-1000px) translateX(100px); opacity: 0; }
        }