:root {
    --bg-color: #000;
    --text-color: #e0e0e0;
    --heading-color: #fff;
    --primary: #ef2bc1;
    --secondary: #00b9e5;
    --accent: #e3e82b;
    --surface: #111;
    --border: #333;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg-color); color: var(--text-color); font-family: var(--font-family); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
a { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #fff; }
a:focus-visible, .table-scroll:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.article-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.back-link { font-size: .9rem; font-weight: 600; text-decoration: none; }
.language-label { border: 1px solid #3a3a3a; border-radius: 999px; padding: 5px 9px; font-size: .82rem; color: #ccc; }
h1, h2, h3 { color: var(--heading-color); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
h1 { font-size: 2.5rem; letter-spacing: -.02em; }
h2 { font-size: 1.75rem; margin-top: 48px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid #222; scroll-margin-top: 24px; }
h3 { font-size: 1.25rem; color: var(--secondary); margin-top: 28px; }
p { margin-bottom: 24px; font-size: 1.1rem; }
strong { color: #fff; }
ul { padding-left: 24px; margin-bottom: 24px; }
li { margin-bottom: 12px; }
.intro { font-size: 1.25rem; color: #ccc; margin-bottom: 24px; }
.eyebrow { font-size: .78rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.meta, .editor-note { font-size: .92rem; color: #aaa; }
.callout-box { background: linear-gradient(135deg, rgba(227,232,43,.1), transparent); border-left: 4px solid var(--accent); padding: 24px; border-radius: 8px; margin: 32px 0; }
.callout-box p { margin: 0; }
.table-hint { font-size: .85rem; color: #aaa; margin-bottom: 12px; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 32px; }
table { width: 100%; min-width: 650px; border-collapse: collapse; background: var(--surface); font-size: .9rem; }
caption { text-align: left; padding: 16px; color: #aaa; font-size: .85rem; }
th, td { padding: 16px; text-align: left; vertical-align: top; border-top: 1px solid var(--border); }
thead th { color: var(--accent); font-size: .8rem; }
tbody th { min-width: 140px; }
.contents { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin: 32px 0 48px; display: grid; gap: 10px; }
.app-section { margin-top: 48px; }
.app-section { display: flow-root; }
.app-title { display: flex; align-items: center; gap: 16px; }
.app-title img { flex-shrink: 0; border-radius: 13px; border: 1px solid var(--border); }
.app-preview { float: right; width: 200px; margin: 0 0 24px 28px; padding: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; }
.app-preview img { display: block; width: 100%; height: auto; border-radius: 10px; }
figcaption { color: #aaa; font-size: .76rem; line-height: 1.5; padding: 12px 3px 3px; }
.recovery-gallery { display: flex; gap: 20px; justify-content: center; margin: 24px 0; padding: 20px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }
.recovery-gallery figure { width: 180px; min-width: 0; }
.recovery-gallery img { display: block; width: 100%; height: auto; border-radius: 12px; }
.app-section h2 { margin-top: 0; }
.app-details { border-left: 2px solid var(--border); padding-left: 24px; margin-bottom: 24px; }
.app-details p { font-size: 1rem; margin-bottom: 16px; }
.source-link { font-size: .95rem; }
.ownership { color: var(--accent); font-size: .85rem; }
.cta-section { background: var(--surface); padding: 40px; border-radius: 20px; text-align: center; margin: 48px 0; border: 1px solid var(--border); }
.cta-section h2 { margin-top: 0; border: 0; padding: 0; }
.btn { display: inline-block; background: var(--primary); color: #fff; padding: 14px 28px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.btn:hover { background: var(--accent); color: #000; }
.cta-note { font-size: .88rem; color: #aaa; margin: 12px 0 0; }
footer { margin-top: 80px; padding: 40px 0; border-top: 1px solid var(--border); text-align: center; color: #999; font-size: .875rem; }
footer p { font-size: .875rem; margin-bottom: 12px; }
@media (max-width: 600px) {
    .app-preview { float: none; width: 180px; margin: 0 auto 24px; }
    .recovery-gallery { gap: 12px; padding: 12px; }
    .container { padding: 0 20px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .cta-section { padding: 28px 20px; }
    .callout-box, .contents { padding: 20px; }
}
