body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #040006;
    color: #ddd;
    overflow-x: hidden;
    position: relative;
}

/* particles layer */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
}

/* privacy content */
.privacy-section {
    position: relative;
    z-index: 9999;
    padding: 120px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
}
.privacy-section h1.glow-text {
    text-align: center;
    font-size: 64px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 30px #b387ff, 0 0 60px rgba(179,135,255,0.7);
    animation: pulseGlow 4s infinite;
}
.privacy-section h1 span {
    color: #b387ff;
}
.privacy-section .intro {
    text-align: center;
    font-size: 18px;
    margin: 30px auto 60px;
    color: #cfcaf5;
}
.privacy-section h2 {
    color: #b387ff;
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(179,135,255,0.4);
}
.privacy-section p {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 20px;
}
.privacy-section a {
    color: #b387ff;
    text-decoration: none;
}
.privacy-section a:hover {
    color: #c6a8ff;
    text-decoration: underline;
}

/* glow + animation */
@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 25px #b387ff, 0 0 40px rgba(179,135,255,0.6); }
    50% { text-shadow: 0 0 45px #c6a8ff, 0 0 80px rgba(179,135,255,0.9); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */
@media (max-width: 768px) {
    .privacy-section h1.glow-text {
        font-size: 42px;
    }
    .privacy-section h2 {
        font-size: 20px;
    }
}
