
/* ═══════════════════════════════════════════════
   VDisk Android — Privacy Policy
   Shared Stylesheet (English & Indonesia)
   ═══════════════════════════════════════════════ */

:root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface-2: #18181f;
    --border: #22222b;
    --text: #e4e4ec;
    --text-muted: #9898a8;
    --accent: #6c5ce7;
    --accent-glow: rgba(108, 92, 231, 0.25);
    --gold: #f0c040;
    --danger: #e74c3c;
    --success: #2ecc71;
    --radius: 12px;
    --radius-lg: 20px;
    --max-w: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ─── Ambient Background ─── */
.bg-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.07;
}
.bg-orb-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -150px;
}
.bg-orb-2 {
    width: 400px; height: 400px;
    background: var(--gold);
    bottom: -100px; left: -100px;
}

/* ─── Container ─── */
.container {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* ─── Header ─── */
.header {
    text-align: center;
    padding: 60px 0 48px;
}
.header-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 32px var(--accent-glow));
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
    object-fit: contain;
}
.header h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #c0c0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.header .subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.header .version-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    background: var(--surface-2);
    color: var(--accent);
    border: 1px solid var(--border);
}

/* ─── Last Updated ─── */
.last-updated {
    text-align: center;
    padding: 16px 20px;
    margin-bottom: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-muted);
}
.last-updated strong { color: var(--text); }

/* ─── Section ─── */
.section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    opacity: 0;
    transform: translateY(16px);
    animation: reveal 0.5s ease forwards;
}
.section:nth-child(1) { animation-delay: 0.05s; }
.section:nth-child(2) { animation-delay: 0.10s; }
.section:nth-child(3) { animation-delay: 0.15s; }
.section:nth-child(4) { animation-delay: 0.20s; }
.section:nth-child(5) { animation-delay: 0.25s; }
.section:nth-child(6) { animation-delay: 0.30s; }
.section:nth-child(7) { animation-delay: 0.35s; }
.section:nth-child(8) { animation-delay: 0.40s; }
.section:nth-child(9) { animation-delay: 0.45s; }
.section:hover { border-color: #33334a; }

.section h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section h2 .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.icon-purple { background: rgba(108, 92, 231, 0.15); color: var(--accent); }
.icon-gold   { background: rgba(240, 192, 64, 0.15); color: var(--gold); }
.icon-green  { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.icon-red    { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.icon-blue   { background: rgba(52, 152, 219, 0.15); color: #3498db; }

.section p {
    margin-bottom: 12px;
    font-size: 14.5px;
}
.section p:last-child { margin-bottom: 0; }

/* ─── Lists ─── */
.feature-list {
    list-style: none;
    display: grid;
    gap: 10px;
}
.feature-list li {
    padding: 12px 16px;
    background: var(--surface-2);
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}
.feature-list li:hover { border-color: var(--border); }
.feature-list li .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}
.dot-purple { background: var(--accent); }
.dot-gold   { background: var(--gold); }
.dot-green  { background: var(--success); }

/* ─── Data Table ─── */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin-top: 12px;
}
.data-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--surface-2);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 8px 8px 0 0;
}
.data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .purpose { color: var(--accent); font-weight: 500; }

/* ─── Highlight Box ─── */
.highlight-box {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 13.5px;
    border-left: 3px solid var(--accent);
    background: var(--surface-2);
}
.highlight-box.warn {
    border-left-color: var(--gold);
}
.highlight-box ul {
    margin-top: 8px;
    padding-left: 18px;
}

/* ─── Footer ─── */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--text-muted);
    font-size: 13px;
}
.footer a {
    color: var(--accent);
    text-decoration: none;
}
.footer a:hover { text-decoration: underline; }

/* ─── Inline Links ─── */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

code {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    background: var(--surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--accent);
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .container { padding: 24px 16px 60px; }
    .section { padding: 24px 18px; }
    .header { padding: 36px 0 32px; }
    .data-table { font-size: 12px; }
    .data-table th, .data-table td { padding: 8px 10px; }
}

/* ─── Smooth Reveal Keyframes ─── */
@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}
    