/* ============================= */
/* GLOBAL BACKGROUND */
/* ============================= */
body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Purple glow */
body::before {
    content: '';

    position: fixed;
    top: -300px;
    left: -300px;

    width: 800px;
    height: 800px;

    border-radius: 50%;

    background: rgba(139, 92, 255, 0.18);

    filter: blur(220px);

    pointer-events: none;
    z-index: -2;
}

/* Blue glow */
body::after {
    content: '';

    position: fixed;
    bottom: -350px;
    right: -350px;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    background: rgba(0, 191, 255, 0.12);

    filter: blur(260px);

    pointer-events: none;
    z-index: -2;
}


/* ============================= */
/* POLICY SECTION */
/* ============================= */
.policy-section {
    padding: 3rem 2rem;
}

.policy-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(139,92,255,0.3);
    border-radius: 22px;

    color: #fff;
    line-height: 1.8;
}

.policy-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.policy-date {
    color: #8b5cff;
    margin-bottom: 2rem;
}

.policy-container h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.policy-container p,
.policy-container li {
    color: rgba(255,255,255,0.75);
}

.policy-container ul {
    padding-left: 1.5rem;
}

.policy-container a {
    color: #8b5cff;
}