/* === Privacy Policy — Glassmorphic Design === */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0f1e;
    color: #c8d0e0;
    line-height: 1.7;
}

/* Subtle background gradient */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 720px;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.02em;
}

/* Horizontal rule */
hr {
    border-color: rgba(129, 140, 248, 0.12) !important;
}

/* Section headings */
h2 {
    color: #e2e8f0 !important;
    letter-spacing: -0.01em;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(129, 140, 248, 0.1);
}

/* Provider sub-headings */
h3 {
    color: #a5b4fc !important;
}

/* Content sections — glass cards */
.space-y-8 > div {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px 28px;
    transition: background 200ms ease, border-color 200ms ease;
}

.space-y-8 > div:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(129, 140, 248, 0.12);
}

/* Lists */
ul {
    color: #94a3b8;
}

li strong {
    color: #c8d0e0;
}

/* Links */
a {
    color: #818cf8 !important;
    transition: color 200ms ease;
}

a:hover {
    color: #a5b4fc !important;
}

/* Code elements */
code {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.85em;
    color: #a5b4fc;
}

/* Back button */
.mt-16 a {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 24px !important;
    transition: all 200ms ease;
    color: #94a3b8 !important;
}

.mt-16 a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(129, 140, 248, 0.2);
    color: #e2e8f0 !important;
}

/* Last updated text */
.space-y-8 > p:first-child {
    color: #64748b;
    font-size: 0.9rem;
}

/* Intro paragraph */
.space-y-8 > p:nth-child(2) {
    color: #94a3b8;
}

/* Alert box (if used) */
.alert-box {
    background: rgba(99, 102, 241, 0.08);
    border-left: 3px solid rgba(129, 140, 248, 0.4);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.2rem;
    margin: 1rem 0;
    color: #a5b4fc;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .space-y-8 > div {
        padding: 18px 20px;
    }

    .header h1 {
        font-size: 1.4rem;
    }
}
