*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #e8efe9;
    --body-gradient: linear-gradient(180deg, #dbe8e1 0%, #eee7dc 45%, #e8edf3 100%);
    --paper: rgba(248, 250, 249, .94);
    --paper-strong: #ffffff;
    --ink: #1f2933;
    --muted: #667085;
    --line: rgba(31, 41, 51, .1);
    --green: #0f9f83;
    --blue: #118ab2;
    --coral: #ef476f;
    --amber: #f59e0b;
    --shadow: 0 18px 50px rgba(22, 30, 44, .12);
    --soft-shadow: 0 10px 28px rgba(22, 30, 44, .08);
    --radius: 8px;
    --hero-fuse-rgb: 226, 231, 224;
    --hero-fuse-mid-alpha: .34;
    --hero-fuse-end-alpha: .98;
    --hero-fuse-wash-alpha: .24;
    --ambient-line-a: rgba(12, 96, 124, .07);
    --ambient-line-b: rgba(12, 112, 91, .052);
    --ambient-wash-a: rgba(10, 91, 119, .2);
    --ambient-wash-b: rgba(159, 51, 80, .16);
    --loader-size: clamp(9.5rem, 17vw, 12rem);
    --intro-progress: 0;
    --hero-entry-height: 100vh;
    --hero-copy-opacity: 1;
    --dock-opacity: 0;
    --dock-scale: .92;
    --dock-energy: 0;
    color-scheme: light;
}

:root.theme-dark {
    --bg: #07111f;
    --body-gradient: linear-gradient(180deg, #07111f 0%, #0c1727 48%, #111827 100%);
    --paper: rgba(15, 23, 42, .88);
    --paper-strong: #101a2b;
    --ink: #e5eef7;
    --muted: #9fb0c3;
    --line: rgba(226, 232, 240, .13);
    --green: #38d6b5;
    --blue: #4fb8df;
    --coral: #ff6b8d;
    --amber: #f6c453;
    --shadow: 0 22px 54px rgba(0, 0, 0, .42);
    --soft-shadow: 0 14px 34px rgba(0, 0, 0, .3);
    --hero-fuse-rgb: 9, 19, 33;
    --hero-fuse-mid-alpha: .38;
    --hero-fuse-end-alpha: .98;
    --hero-fuse-wash-alpha: .3;
    --ambient-line-a: rgba(125, 211, 252, .075);
    --ambient-line-b: rgba(56, 214, 181, .055);
    --ambient-wash-a: rgba(79, 184, 223, .18);
    --ambient-wash-b: rgba(255, 107, 141, .13);
    color-scheme: dark;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100%;
    margin: 0;
    background: var(--body-gradient);
    color: var(--ink);
    font-size: 16px;
    font-family: Lato, "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    letter-spacing: 0;
}

body.is-loading {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(124deg, var(--ambient-wash-a) 0%, transparent 34%),
        linear-gradient(302deg, var(--ambient-wash-b) 0%, transparent 38%),
        repeating-linear-gradient(115deg, transparent 0 86px, var(--ambient-line-a) 86px 87px, transparent 87px 168px),
        repeating-linear-gradient(22deg, transparent 0 132px, var(--ambient-line-b) 132px 133px, transparent 133px 248px);
    background-size: 100% 100%, 100% 100%, 260px 260px, 380px 380px;
    opacity: .96;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .62), #000 18%, #000 80%, transparent);
}

#dynamic-bg {
    position: fixed;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .68;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(10, 18, 32, .98), rgba(12, 48, 54, .96) 52%, rgba(31, 34, 46, .98));
    transition: opacity .55s ease, visibility .55s ease, transform .55s ease;
}

.site-loader[hidden] {
    display: none !important;
}

body.is-loaded .site-loader,
.site-loader.site-loader--done {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translateY(-12px) !important;
}

.site-loader::before,
.site-loader::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-loader::before {
    background:
        radial-gradient(circle at 50% 42%, rgba(239, 71, 111, .2), transparent 28%),
        linear-gradient(90deg, transparent, rgba(125, 211, 199, .1), transparent);
    opacity: .82;
}

.site-loader::after {
    border: 1px solid rgba(255, 255, 255, .08);
    margin: 24px;
}

/* Loader adapted from Uiverse.io by StealthWorm (pink-duck-62). */
.uiverse-loader {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--loader-size);
    height: var(--loader-size);
    flex-direction: column;
}

.uiverse-loader__curve {
    position: absolute;
    z-index: 2;
    width: 180%;
    height: 180%;
    fill: transparent;
    animation: uiverseLoaderRotate 8s linear infinite;
}

.uiverse-loader__curve svg {
    display: block;
    width: 100%;
    height: 100%;
}

.uiverse-loader__curve text {
    fill: #fff;
    filter: drop-shadow(0 2px 8px #000);
    font: 1.5em "Fira Sans", "Segoe UI", sans-serif;
    letter-spacing: 20px;
    text-transform: uppercase;
}

.uiverse-loader__blackhole {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--loader-size);
    height: var(--loader-size);
}

.uiverse-loader__circle {
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #000 25%, #fff 35%, #fff 100%);
    box-shadow: 0 0 2rem #c2babb;
}

.uiverse-loader__circle::after {
    content: "";
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 4px solid #fff;
    border-radius: 50%;
    background: radial-gradient(circle at center, #000 35%, #fff 60%, #fff 100%);
    box-shadow: 0 0 5rem #c2babb;
    filter: blur(4px);
    animation: uiverseLoaderPulse 2s linear infinite alternate-reverse;
}

.uiverse-loader__circle::before {
    content: "";
    z-index: 1;
    display: flex;
    width: calc(var(--loader-size) * .5);
    height: calc(var(--loader-size) * .5);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 3px 3px 10px #c2babb, inset 0 0 1rem #fff;
    filter: blur(.5px);
    animation: uiverseLoaderRotate 3s linear infinite;
}

.uiverse-loader__disc {
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--loader-size) * .625);
    height: calc(var(--loader-size) * 1.25);
    border: calc(var(--loader-size) * .125) solid #fff;
    border-radius: 50%;
    background: radial-gradient(circle at center, #fff 80%, #353535 90%, #fff 100%);
    box-shadow: 0 0 3rem #d7c4be;
    filter: blur(1rem) brightness(130%);
    transform: rotate3d(1, 1, 1, 220deg);
    animation: uiverseLoaderDiscPulse 2s linear infinite alternate-reverse;
}

.uiverse-loader__disc::before {
    content: "";
    position: absolute;
    z-index: 0;
    display: flex;
    width: calc(var(--loader-size) * .625);
    height: calc(var(--loader-size) * 1.25);
    border: calc(var(--loader-size) * .125) solid #fff;
    border-radius: 50%;
    background: radial-gradient(circle at center, #fff 80%, #353535 90%, #fff 100%);
    box-shadow: 0 0 6rem #d7c4be;
    filter: blur(3rem);
    animation: uiverseLoaderPulse 2s linear infinite alternate-reverse;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}

hr {
    height: 1px;
    margin: 24px 0;
    border: 0;
    background: var(--line);
}

strong {
    color: var(--ink);
}

.ltlt {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(14px);
    transition: transform .28s ease, opacity .28s ease, background .2s ease;
    will-change: transform;
}

.ltlt--hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.theme-wipe {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    opacity: 0;
    background: #07111f;
    clip-path: circle(0 at var(--wipe-x, 24px) var(--wipe-y, 24px));
    transition: clip-path .78s cubic-bezier(.19, 1, .22, 1), opacity .24s ease;
}

.theme-wipe.theme-wipe--active {
    opacity: 1;
    clip-path: circle(var(--wipe-r, 120vmax) at var(--wipe-x, 24px) var(--wipe-y, 24px));
}

.theme-wipe.theme-wipe--out {
    opacity: 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 32px));
    min-height: 64px;
    margin: 0 auto;
}

.nav-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.theme-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .11);
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .18);
}

.theme-toggle:focus-visible {
    outline: 3px solid rgba(125, 211, 199, .55);
    outline-offset: 3px;
}

.theme-toggle__icon {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffd166;
    box-shadow: 0 0 0 3px rgba(255, 209, 102, .18);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.theme-toggle__icon::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(255, 209, 102, .55);
    transform: scale(.78);
    transition: opacity .25s ease, transform .25s ease;
}

.theme-toggle__icon::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .92);
    opacity: 0;
    transform: translateX(5px) scale(.7);
    transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

:root.theme-dark .theme-toggle__icon {
    background: #dbeafe;
    box-shadow: 0 0 0 3px rgba(219, 234, 254, .16);
    transform: rotate(-18deg);
}

:root.theme-dark .theme-toggle__icon::before {
    opacity: 0;
    transform: scale(1.25);
}

:root.theme-dark .theme-toggle__icon::after {
    opacity: 1;
    transform: translateX(0) scale(1);
    background: rgba(15, 23, 42, .96);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius);
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    background: rgba(255, 255, 255, .1);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .82);
    font-size: .95rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links .taotao {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

#body-wrap {
    position: relative;
    display: flex;
    flex: 1 auto;
    flex-direction: column;
}

body.entry-active {
    overflow-x: hidden;
    min-height: calc(100vh + 760px);
}

body.entry-active .layout_page,
body.entry-active #footer {
    animation: none;
}

.entry-layer {
    position: fixed;
    inset: 0;
    z-index: 88;
    pointer-events: none;
}

.entry-aside-proxy {
    display: contents;
}

.entry-placeholder {
    pointer-events: none;
    visibility: hidden;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 640px;
    overflow: hidden;
    background-color: #16353a;
    background-position: center;
    background-size: cover;
}

body.entry-active .hero {
    min-height: var(--hero-entry-height);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, rgba(125, 211, 199, .18), transparent 32%),
        linear-gradient(120deg, rgba(10, 18, 32, .4), transparent 38%),
        linear-gradient(300deg, rgba(102, 36, 58, .22), transparent 42%);
    mix-blend-mode: screen;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(8, 15, 26, .22) 0%,
            rgba(8, 15, 26, .18) 48%,
            rgba(var(--hero-fuse-rgb), var(--hero-fuse-mid-alpha)) 72%,
            rgba(var(--hero-fuse-rgb), var(--hero-fuse-end-alpha)) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(var(--hero-fuse-rgb), .84), transparent 58%),
        linear-gradient(90deg, rgba(255, 255, 255, .07), transparent 46%),
        linear-gradient(0deg, rgba(var(--hero-fuse-rgb), var(--hero-fuse-wash-alpha)), transparent 38%);
}

.hero-inner {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 80px;
    color: #fff;
    opacity: var(--hero-copy-opacity);
    transition: opacity .18s ease;
}

.hero-kicker,
.section-kicker {
    margin-bottom: 12px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker {
    color: #7dd3c7;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 3.4rem;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
}

#site-title {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 28px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    font-size: 1rem;
    font-weight: 800;
}

.typed-cursor {
    margin-left: 2px;
}

.module-dock {
    position: fixed;
    left: 50%;
    bottom: clamp(18px, 5vh, 40px);
    z-index: 120;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: clamp(116px, 18vw, 178px);
    height: 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 18px;
    background: rgba(255, 255, 255, .18);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .24),
        0 0 calc(42px * var(--dock-energy)) rgba(125, 211, 199, calc(.34 * var(--dock-energy))),
        inset 0 1px 0 rgba(255, 255, 255, .22),
        inset 0 0 calc(24px * var(--dock-energy)) rgba(255, 255, 255, calc(.18 * var(--dock-energy)));
    backdrop-filter: blur(18px) saturate(1.35);
    opacity: var(--dock-opacity);
    pointer-events: none;
    transform: translateX(-50%) scale(var(--dock-scale));
    transition: opacity .18s ease, box-shadow .18s ease;
}

body.entry-active .module-dock {
    opacity: var(--dock-opacity, 1) !important;
    visibility: visible;
}

.module-dock span,
.module-dock::before,
.module-dock::after {
    content: "";
    display: block;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .66);
}

.module-dock span {
    width: 46%;
    box-shadow: 0 0 calc(18px * var(--dock-energy)) rgba(255, 255, 255, calc(.4 * var(--dock-energy)));
}

.module-dock::before,
.module-dock::after {
    position: absolute;
    top: 16px;
    width: 18%;
    opacity: .55;
}

.module-dock::before {
    left: 18px;
}

.module-dock::after {
    right: 18px;
}

body:not(.entry-active) .module-dock {
    opacity: 0;
    visibility: hidden;
}

#content-outer {
    position: relative;
    z-index: 4;
    flex: 1 auto;
    margin-top: -78px;
}

.layout_page {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

#aside_content {
    position: sticky;
    top: 84px;
}

#aside_content .card-widget,
.content-section {
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(12px);
}

#aside_content .card-widget {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

#aside_content .card-widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

#aside_content .card-content {
    padding: 20px;
}

.is-center {
    text-align: center;
}

#aside_content .card-info img {
    width: 118px;
    height: 118px;
    margin: 4px auto 14px;
    padding: 4px;
    border: 1px solid rgba(17, 138, 178, .18);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    transition: transform .25s ease, box-shadow .25s ease;
}

#aside_content .card-info img:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(17, 138, 178, .18);
}

#aside_content .card-info .author-info__name {
    margin-bottom: 2px;
    font-size: 1.3rem;
    font-weight: 900;
}

#aside_content .card-info .author-info__description {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: .92rem;
}

.site-author-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.site-author-links-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(17, 138, 178, .14);
    border-radius: var(--radius);
    color: #0f5263;
    font-size: .9rem;
    font-weight: 800;
    background: rgba(17, 138, 178, .08);
    transition: background .2s ease, transform .2s ease;
}

.site-author-links a.site-author-links-item {
    order: 1;
}

.sponsor-trigger {
    order: 2;
    width: 100%;
    border: 1px solid rgba(17, 138, 178, .14);
    appearance: none;
    font-family: inherit;
    cursor: pointer;
}

.site-author-links-item:hover {
    transform: translateY(-1px);
    background: rgba(17, 138, 178, .14);
}

.sponsor-float {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: 20px;
    visibility: hidden;
    pointer-events: none;
}

.sponsor-float.is-open,
.sponsor-float.is-closing {
    visibility: visible;
    pointer-events: auto;
}

.sponsor-float__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at var(--sponsor-origin-x, 50%) var(--sponsor-origin-y, 50%), rgba(125, 211, 199, .14), transparent 28%),
        rgba(7, 17, 31, .52);
    opacity: 0;
    backdrop-filter: blur(0);
    cursor: pointer;
    transition: opacity .34s ease, backdrop-filter .34s ease;
}

.sponsor-float.is-open .sponsor-float__backdrop {
    opacity: 1;
    backdrop-filter: blur(12px);
}

.sponsor-float__panel {
    position: relative;
    width: min(78vw, 340px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 8px;
    background: rgba(15, 23, 42, .78);
    box-shadow: 0 28px 80px rgba(2, 6, 23, .38), 0 0 50px rgba(125, 211, 199, .14);
    opacity: 0;
    transform:
        translate3d(var(--sponsor-x, 0), var(--sponsor-y, 0), 0)
        scale(var(--sponsor-scale, .18));
    transform-origin: center;
    transition:
        transform .54s cubic-bezier(.16, 1, .3, 1),
        opacity .28s ease;
    will-change: transform, opacity;
}

.sponsor-float.is-open .sponsor-float__panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.sponsor-float.is-closing .sponsor-float__panel {
    opacity: 0;
    transform:
        translate3d(var(--sponsor-x, 0), var(--sponsor-y, 0), 0)
        scale(var(--sponsor-scale, .18));
    transition:
        transform .34s cubic-bezier(.7, 0, .84, 0),
        opacity .24s ease;
}

.sponsor-float__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-float__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 23, 42, .58);
    box-shadow: 0 10px 22px rgba(2, 6, 23, .28);
    cursor: pointer;
    font: 1.35rem/1 Arial, sans-serif;
}

.sponsor-float__close:hover {
    background: rgba(15, 23, 42, .76);
}

.item-headline,
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.item-headline {
    color: var(--ink);
    font-size: .95rem;
    font-weight: 900;
}

.headline-mark {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 5px rgba(239, 71, 111, .12);
}

#hitokoto,
#jinrishici-sentence {
    min-height: 28px;
    color: var(--muted);
    font-size: .92rem;
}

#aside_content .card-webinfo .webinfo {
    display: grid;
    gap: 10px;
}

#aside_content .card-webinfo .webinfo .webinfo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: rgba(15, 159, 131, .08);
}

#aside_content .card-webinfo .webinfo .webinfo-item span {
    color: var(--muted);
    font-size: .9rem;
}

#page {
    min-width: 0;
}

.article-container {
    display: grid;
    position: relative;
    gap: 22px;
}

.article-container::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: -14px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(17, 138, 178, .28), rgba(239, 71, 111, .18), transparent);
}

.content-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 26px;
    transform: translateY(0);
    transition: opacity .65s ease, transform .65s ease, filter .65s ease, box-shadow .25s ease, border-color .25s ease;
}

body.entry-active .entry-module {
    position: fixed !important;
    z-index: 80 !important;
    margin: 0 !important;
    opacity: var(--entry-opacity, 0) !important;
    filter: blur(var(--entry-blur, 18px)) !important;
    pointer-events: var(--entry-pointer, none) !important;
    transform: translate3d(var(--entry-x, 0), var(--entry-y, 120px), 0) scale(var(--entry-scale, .2)) !important;
    transform-origin: 50% 50% !important;
    transition: none !important;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}

body.entry-active #footer.entry-module {
    transform-origin: 50% 50%;
}

body.entry-measuring .entry-module {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

body.entry-finished .entry-module {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    transform: none;
    transition: transform .28s ease, box-shadow .25s ease, border-color .25s ease;
    will-change: auto;
}

body.entry-active .article-container::before {
    opacity: var(--timeline-opacity, 0);
}

:root.theme-dark .intro-section {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(9, 32, 44, .9));
}

:root.theme-dark #aside_content .card-info img {
    border-color: rgba(79, 184, 223, .24);
    background: #0f172a;
}

:root.theme-dark .site-author-links-item {
    color: #b9e7f4;
    background: rgba(79, 184, 223, .12);
    border-color: rgba(79, 184, 223, .2);
}

:root.theme-dark #aside_content .card-webinfo .webinfo .webinfo-item {
    background: rgba(56, 214, 181, .1);
}

:root.theme-dark .tool a {
    background: var(--paper-strong);
}

:root.theme-dark .ltlt {
    border-bottom-color: rgba(255, 255, 255, .1);
    background: rgba(2, 6, 23, .68);
}

:root.theme-dark .nav-brand,
:root.theme-dark .theme-toggle {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
}

:root.theme-dark .module-dock {
    border-color: rgba(219, 234, 254, .24);
    background: rgba(15, 23, 42, .34);
}

.content-section::before,
#aside_content .card-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .34), transparent 28%),
        linear-gradient(315deg, rgba(125, 211, 199, .12), transparent 34%);
    opacity: .32;
    mix-blend-mode: soft-light;
    transition: opacity .25s ease;
}

.content-section > *,
#aside_content .card-content {
    position: relative;
    z-index: 1;
}

.content-section:hover,
#aside_content .card-widget:hover {
    border-color: rgba(17, 138, 178, .25);
}

.content-section:hover::before,
#aside_content .card-widget:hover::before {
    opacity: .52;
}

.reveal-ready {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(26px) scale(.985);
}

.reveal-ready.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.intro-section {
    display: block;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(234, 245, 239, .92));
}

.intro-section h2,
.section-heading h2 {
    margin-bottom: 0;
    font-size: 1.65rem;
}

.intro-section p:not(.section-kicker) {
    margin-bottom: 0;
    color: var(--muted);
}

.tool a {
    display: grid;
    gap: 4px;
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tool a:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 138, 178, .26);
    box-shadow: var(--soft-shadow);
}

.tool a small {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}

.tool a span {
    align-self: end;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
}

.skillbox {
    display: grid;
    gap: 16px;
}

.skillbar {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
}

.skillbar-label {
    color: var(--ink);
    font-size: .95rem;
    font-weight: 850;
}

.skillbar-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(31, 41, 51, .08);
}

.skillbar-track span {
    display: block;
    width: var(--bar-width);
    height: 100%;
    border-radius: inherit;
    background: var(--bar-color);
    box-shadow: 0 0 18px rgba(17, 138, 178, .16);
}

.skillbar strong {
    color: var(--muted);
    font-size: .88rem;
    text-align: right;
}

.tool {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tool a {
    min-height: 104px;
}

#footer {
    position: relative;
    z-index: 4;
    margin-top: 34px;
    padding: 28px 16px 34px;
    color: #5b6472;
    text-align: center;
}

#footer-wrap {
    margin-bottom: 8px;
}

#footer a {
    color: #0f8b79;
    font-weight: 800;
    transition: color .2s ease;
}

#footer a:hover {
    color: var(--coral);
}

#footer-time {
    font-size: .92rem;
}

#footer,
.layout_page,
.layout_post {
    animation: main .8s ease;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green), var(--coral));
}

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

@keyframes main {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uiverseLoaderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes uiverseLoaderPulse {
    0% {
        box-shadow: 0 0 3rem #c2babb;
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 5rem #c2babb;
        transform: scale(1.09);
    }
}

@keyframes uiverseLoaderDiscPulse {
    0% {
        box-shadow: 0 0 3rem #c2babb;
        transform: rotate3d(1, 1, 1, 220deg) scale(1);
    }

    100% {
        box-shadow: 0 0 5rem #c2babb;
        transform: rotate3d(1, 1, 1, 220deg) scale(.95);
    }
}

@media screen and (max-width: 1000px) {
    .layout_page {
        grid-template-columns: 1fr;
    }

    #aside_content {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    #aside_content .card-widget {
        margin-bottom: 0;
    }

    #aside_content .card-info {
        grid-row: span 2;
    }
}

@media screen and (max-width: 760px) {
    .nav-shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-links a {
        min-height: 34px;
        padding: 0 10px;
        font-size: .88rem;
    }

    .hero {
        min-height: 620px;
    }

    .hero-inner {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    #content-outer {
        margin-top: -46px;
    }

    .intro-section,
    .tool,
    #aside_content {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 20px;
    }
}

@media screen and (max-width: 520px) {
    .nav-shell,
    .hero-inner,
    .layout_page {
        width: min(100% - 20px, 1180px);
    }

    .site-author-links {
        grid-template-columns: 1fr;
    }

    .skillbar {
        grid-template-columns: 1fr 44px;
        gap: 8px;
    }

    .skillbar-label {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    #dynamic-bg {
        opacity: .18;
    }
}
