@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');
:root {
    --bg: #0b1016;
    --panel: #111821;
    --panel-2: #0f151d;
    --text: #e9edef;
    --muted: #9aa7b2;
    --accent: #1f8bff;
    --accent-2: #23d96f;
    --stroke: #1b2732;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 70% -10%, rgba(31,139,255,0.18), transparent 60%),
                radial-gradient(900px 500px at 10% 110%, rgba(35,217,111,0.16), transparent 55%),
                var(--bg);
    color: var(--text);
    font-family: "Sora", "Segoe UI", sans-serif;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/static/background.png');
    background-size: 420px;
    opacity: 0.06;
    pointer-events: none;
}
.policy-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: clamp(16px, 4vw, 40px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.policy-card {
    width: min(980px, 100%);
    background: linear-gradient(160deg, rgba(20,28,38,0.96), rgba(15,23,31,0.98));
    border: 1px solid var(--stroke);
    border-radius: clamp(18px, 3vw, 26px);
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
}
.policy-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--stroke);
    padding-bottom: 12px;
}
.policy-title {
    margin: 0;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 700;
}
.policy-updated {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.policy-back {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}
.policy-back:hover { color: var(--text); }
.policy-body {
    margin-top: 16px;
    color: #d6dde2;
    font-size: 14px;
    line-height: 1.6;
}
.policy-body h2 {
    margin: 18px 0 6px;
    font-size: 16px;
    color: var(--text);
}
.policy-body p {
    margin: 0 0 10px;
    color: var(--muted);
}
.policy-body ul {
    margin: 0 0 10px 18px;
    padding: 0;
    color: var(--muted);
}
.policy-body li { margin-bottom: 6px; }

@media (max-width: 720px) {
    body::before { background-size: 360px; opacity: 0.08; }
    .policy-header { flex-direction: column; align-items: flex-start; }
}
