/**
 * PlayNova Solar — Core tokens & reset
 * Warm editorial craft palette (distinct from neo-brutalist original)
 */
:root {
    --ps-paper: #f6f1e8;
    --ps-paper-deep: #ede6da;
    --ps-ink: #2c2824;
    --ps-ink-muted: #5c564f;
    --ps-clay: #c4674a;
    --ps-clay-deep: #a84f35;
    --ps-moss: #4f6f5b;
    --ps-moss-light: #d8e4dc;
    --ps-honey: #e8b84a;
    --ps-cream: #fffdf8;
    --ps-line: rgba(44, 40, 36, 0.12);
    --ps-shadow: 0 12px 40px rgba(44, 40, 36, 0.08);
    --ps-shadow-soft: 0 4px 16px rgba(44, 40, 36, 0.06);
    --ps-radius-sm: 10px;
    --ps-radius-md: 16px;
    --ps-radius-lg: 24px;
    --ps-radius-pill: 999px;
    --ps-space-xs: 0.5rem;
    --ps-space-sm: 1rem;
    --ps-space-md: 1.5rem;
    --ps-space-lg: 2.5rem;
    --ps-space-xl: 4rem;
    --ps-font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --ps-font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
    --ps-header-h: 72px;
    --ps-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ps-focus: 0 0 0 3px rgba(196, 103, 74, 0.35);
    --ps-glass: rgba(255, 253, 248, 0.88);
    --ps-hero-texture: url("https://ark-acg-cn-beijing.tos-cn-beijing.volces.com/doubao-seedream-5-0/021779347072876b74211a9fa242456af57e687c336f26869233e_0.jpeg?X-Tos-Algorithm=TOS4-HMAC-SHA256&X-Tos-Credential=AKLTYWJkZTExNjA1ZDUyNDc3YzhjNTM5OGIyNjBhNDcyOTQ%2F20260521%2Fcn-beijing%2Ftos%2Frequest&X-Tos-Date=20260521T070452Z&X-Tos-Expires=86400&X-Tos-Signature=e0bdf76d408586ed21652e6c89896d07a9312fdfe692e9524c734a905995ee25&X-Tos-SignedHeaders=host");
    --ps-blog-art: url("https://ark-acg-cn-beijing.tos-cn-beijing.volces.com/doubao-seedream-5-0/02177934707368010667a214a88c4c78c1353731389a01c1944db_0.jpeg?X-Tos-Algorithm=TOS4-HMAC-SHA256&X-Tos-Credential=AKLTYWJkZTExNjA1ZDUyNDc3YzhjNTM5OGIyNjBhNDcyOTQ%2F20260521%2Fcn-beijing%2Ftos%2Frequest&X-Tos-Date=20260521T070453Z&X-Tos-Expires=86400&X-Tos-Signature=48379fc2e2dbe5368cff62fde1b4371554da9169b0026dea2086d0fa716a0016&X-Tos-SignedHeaders=host");
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--ps-font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ps-ink);
    background: var(--ps-paper);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: none;
    box-shadow: var(--ps-focus);
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--ps-moss-light);
    color: var(--ps-ink);
}

ul {
    list-style: none;
}

.ps-container {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.ps-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ps-type-display {
    font-family: var(--ps-font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.ps-type-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-moss);
}

.ps-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--ps-clay);
    color: var(--ps-cream);
    border-radius: var(--ps-radius-sm);
}

.ps-skip-link:focus {
    left: 1rem;
    top: 1rem;
}
