#menu {
    position: relative;
}

#menu li {
    position: relative;
    display: inline-block;
}

#menu li a {
    display: block;
    padding: 8px 12px;
}

#menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--theme);
    border: 1px solid var(--border);
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#menu .submenu li {
    display: block;
    margin: 0;
}

#menu .submenu li a {
    padding: 8px 16px;
    white-space: nowrap;
}

#menu .submenu li a:hover {
    background: var(--tertiary);
}

#menu li:hover > .submenu {
    display: block;
}

a.categoryButton.yellow {
    background: linear-gradient(to right, #ffc247, #ff8f6b);
    background-size: 200%;
}

[data-theme="dark"] a.categoryButton.yellow {
    background: linear-gradient(to right, #d58b09, #cf5c3f);
    background-size: 200%;
}

.internship-profile-card {
    --card-accent: #1f8a8a;
    --card-accent-soft: rgba(31, 138, 138, 0.14);
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(31, 138, 138, 0.18);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(88, 214, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 249, 0.98));
    box-shadow: 0 16px 40px rgba(13, 50, 65, 0.08);
    overflow: hidden;
}

[data-theme="dark"] .internship-profile-card {
    background:
        radial-gradient(circle at top right, rgba(88, 214, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(18, 34, 46, 0.96), rgba(17, 50, 57, 0.96));
    border-color: rgba(128, 223, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.internship-profile-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 24px rgba(13, 50, 65, 0.16);
    background: var(--card-accent-soft);
    flex-shrink: 0;
}

[data-theme="dark"] .internship-profile-card__avatar {
    border-color: rgba(255, 255, 255, 0.1);
}

.internship-profile-card__body {
    min-width: 0;
}

.internship-profile-card__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.45rem;
    padding: 0.26rem 0.68rem;
    border-radius: 999px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.internship-profile-card__name {
    display: inline-block;
    color: var(--font-color);
    font-size: 1.22rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.internship-profile-card__name:hover {
    color: var(--card-accent);
    transform: translateX(2px);
}

.internship-profile-card__desc {
    margin: 0.4rem 0 0;
    color: var(--font-color);
    opacity: 0.78;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .internship-profile-card {
        align-items: flex-start;
        gap: 14px;
        padding: 0.95rem;
        border-radius: 18px;
    }

    .internship-profile-card__avatar {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .internship-profile-card__name {
        font-size: 1.08rem;
    }
}

#popup-window {
    display: none !important;
}

.site-home-welcome-intro {
    position: fixed;
    inset: 0;
    z-index: 10030;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
}

html.site-home-intro-active,
body.site-home-intro-active {
    overflow: hidden;
    overscroll-behavior: none;
}

.site-home-welcome-intro.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-home-welcome-intro.is-leaving {
    opacity: 0;
    pointer-events: none;
}

.site-home-welcome-intro__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(255, 214, 245, 0.12), transparent 20%),
        radial-gradient(circle at 50% 82%, rgba(176, 215, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(9, 14, 26, 0.42), rgba(9, 14, 26, 0.68)),
        linear-gradient(135deg, #28324d, #49354f 58%, #263247);
    transform: scale(1.02);
    transition:
        transform 0.56s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.46s ease;
}

.site-home-welcome-intro__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
        linear-gradient(180deg, rgba(7, 10, 18, 0), rgba(7, 10, 18, 0.3));
}

.site-home-welcome-intro.is-leaving .site-home-welcome-intro__backdrop {
    opacity: 0;
    transform: translateY(-100%) scale(1.04);
}

.site-home-welcome-intro__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(980px, calc(100vw - 40px));
    min-height: 100%;
    margin: 0 auto;
    padding: clamp(104px, 15vh, 148px) 0;
    text-align: center;
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    transition:
        opacity 0.56s ease,
        transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.42s ease;
}

.site-home-welcome-intro.is-visible .site-home-welcome-intro__inner {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.site-home-welcome-intro.is-leaving .site-home-welcome-intro__inner {
    opacity: 0;
    transform: translateY(-64px) scale(0.96);
    filter: blur(8px);
}

.site-home-welcome-intro__avatar-wrap {
    position: relative;
    margin-bottom: 1.4rem;
}

.site-home-welcome-intro__avatar-wrap::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 164px;
    height: 164px;
    border-radius: 40px;
    background: rgba(255, 214, 245, 0.2);
    filter: blur(28px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.site-home-welcome-intro__avatar {
    position: relative;
    display: block;
    width: 128px;
    height: 128px;
    border: 3px solid rgba(255, 255, 255, 0.72);
    border-radius: 36px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.site-home-welcome-intro__welcome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    max-width: min(820px, 92vw);
    min-height: 2.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.4rem, 2.3vw, 2.1rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
    text-wrap: balance;
}

.site-home-welcome-intro__welcome-text {
    white-space: pre-wrap;
}

.site-home-welcome-intro__cursor {
    width: 1px;
    height: 1.18em;
    background: currentColor;
    animation: site-home-welcome-cursor 0.9s steps(1, end) infinite;
}

#home_top {
    transition:
        transform 0.56s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.42s ease,
        filter 0.42s ease;
}

body.site-home-intro-active #home_top,
html.site-home-intro-active #home_top {
    opacity: 0.92;
    transform: translate3d(0, 24px, 0);
    filter: blur(0);
}

body.site-home-intro-leaving #home_top,
html.site-home-intro-leaving #home_top {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

[data-theme="dark"] .site-home-welcome-intro__backdrop {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(255, 214, 245, 0.1), transparent 20%),
        radial-gradient(circle at 50% 82%, rgba(176, 215, 255, 0.09), transparent 26%),
        linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.74)),
        linear-gradient(135deg, #1d2538, #412e45 58%, #1f2a3d);
}

[data-theme="dark"] .site-home-welcome-intro__avatar {
    border-color: rgba(255, 255, 255, 0.64);
}

[data-theme="dark"] .site-home-welcome-intro__welcome {
    color: rgba(236, 243, 255, 0.92);
}

@media (max-width: 768px) {
    .site-home-welcome-intro__inner {
        width: min(100vw - 24px, 560px);
        padding: 112px 0 84px;
    }

    .site-home-welcome-intro__avatar-wrap {
        margin-bottom: 1rem;
    }

    .site-home-welcome-intro__avatar-wrap::before {
        width: 124px;
        height: 124px;
        border-radius: 32px;
    }

    .site-home-welcome-intro__avatar {
        width: 96px;
        height: 96px;
        border-radius: 28px;
    }

    .site-home-welcome-intro__welcome {
        min-height: 2.2rem;
        font-size: clamp(1.1rem, 5.6vw, 1.45rem);
        line-height: 1.5;
    }

    body.site-home-intro-active #home_top,
    html.site-home-intro-active #home_top {
        transform: translate3d(0, 18px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-home-welcome-intro,
    .site-home-welcome-intro__backdrop,
    .site-home-welcome-intro__inner,
    #home_top {
        transition: none;
    }

    .site-home-welcome-intro__cursor {
        animation: none;
    }
}

@keyframes site-home-welcome-cursor {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

#about-page .author-box .author-img {
    overflow: hidden;
}

#about-page .author-box .author-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

#aside-content .card-info .author-info-avatar,
#aside-content .card-info .author-info-avatar .avatar-img {
    overflow: hidden;
    border-radius: 50%;
}

#aside-content .card-info .author-info-avatar .avatar-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}

#about-page .author-content-item.personality-hero {
    width: 100%;
    min-height: 320px;
    margin-bottom: 0.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

#about-page .author-content-item.personality-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.36) 100%);
    z-index: 0;
}

#about-page .author-content-item.personality-hero .personality-copy,
#about-page .author-content-item.personality-hero .image {
    position: relative;
    z-index: 1;
}

#about-page .author-content-item.personality-hero .personality-copy {
    max-width: 54%;
}

#about-page .author-content-item.personality-hero .author-content-item-tips {
    color: rgba(17, 24, 39, 0.68);
}

#about-page .author-content-item.personality-hero .author-content-item-title {
    display: block;
    margin-top: 0.35rem;
    color: #3f3f46;
    font-size: 1.55rem;
}

#about-page .author-content-item.personality-hero .title2 {
    margin-top: 0.4rem;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

#about-page .author-content-item.personality-hero .personality-desc {
    margin-top: 1rem;
    color: #52525b;
    font-size: 1rem;
    line-height: 1.65;
}

#about-page .author-content-item.personality-hero .personality-question {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.46rem 0.96rem;
    border-radius: 999px;
    color: #3f3f46;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(99, 102, 241, 0.18);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

#about-page .author-content-item.personality-hero .personality-question:hover {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

#about-page .author-content-item.personality-hero .image {
    flex: 0 0 220px;
    width: 220px;
}

#about-page .author-content-item.personality-hero .image img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.12));
}

@media screen and (max-width: 768px) {
    #about-page .author-content-item.personality-hero {
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
    }

    #about-page .author-content-item.personality-hero .personality-copy {
        max-width: calc(100% - 150px);
    }

    #about-page .author-content-item.personality-hero .image {
        flex-basis: 140px;
        width: 140px;
    }
}

#about-page .author-content-item.game-yuanshen,
#about-page .author-content-item.like-technology,
#about-page .author-content-item.like-music,
#about-page .author-content-item.comic-content,
#about-page .author-content-item.careers {
    isolation: isolate;
    overflow: hidden;
}

#about-page .author-content-item.game-yuanshen::before,
#about-page .author-content-item.like-technology::before,
#about-page .author-content-item.like-music::before,
#about-page .author-content-item.comic-content::before,
#about-page .author-content-item.careers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    z-index: 0;
}

#about-page .author-content-item.game-yuanshen::after,
#about-page .author-content-item.like-technology::after,
#about-page .author-content-item.like-music::after,
#about-page .author-content-item.careers::after {
    content: "";
    position: absolute;
    inset: auto -6% -14% auto;
    width: 280px;
    height: 280px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(2px);
    transform: rotate(-18deg);
    z-index: 0;
}

#about-page .author-content-item.game-yuanshen .card-content,
#about-page .author-content-item.like-technology .card-content,
#about-page .author-content-item.like-music .card-content,
#about-page .author-content-item.comic-content .card-content,
#about-page .author-content-item.careers .card-content {
    position: relative;
    z-index: 1;
}

#about-page .author-content-item.game-yuanshen .author-content-item-title,
#about-page .author-content-item.like-technology .author-content-item-title,
#about-page .author-content-item.like-music .author-content-item-title,
#about-page .author-content-item.comic-content .author-content-item-title {
    max-width: 78%;
    font-size: 2.35rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: none;
}

#about-page .author-content-item.game-yuanshen .tips,
#about-page .author-content-item.like-technology .tips,
#about-page .author-content-item.like-music .tips {
    max-width: 82%;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.92;
}

#about-page .author-content-item.game-yuanshen .content-bottom,
#about-page .author-content-item.like-technology .content-bottom,
#about-page .author-content-item.like-music .content-bottom {
    align-items: flex-start;
}

#about-page .author-content-item.comic-content {
    background: linear-gradient(135deg, #fff6db, #ffe8a3);
}

[data-theme="dark"] #about-page .author-content-item.comic-content {
    background: linear-gradient(135deg, #2f2a1f, #54411f);
}

#about-page .author-content-item.comic-content::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

#about-page .author-content-item.comic-content .author-content-item-title {
    max-width: 100%;
    color: var(--font-color);
}

#about-page .author-content-item.comic-content .comic-box {
    margin-top: 1rem;
    gap: 14px;
}

#about-page .author-content-item.comic-content .comic-item {
    width: calc(50% - 7px);
}

#about-page .author-content-item.comic-content .comic-item .comic-item-cover {
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(24, 44, 72, 0.10);
    position: relative;
    background: linear-gradient(135deg, #123245, #245f64);
}

#about-page .author-content-item.comic-content .comic-item .comic-item-cover img {
    display: none;
}

#about-page .author-content-item.comic-content .comic-item:nth-child(1) .comic-item-cover {
    background: linear-gradient(135deg, #15344f, #2a6d76);
}

#about-page .author-content-item.comic-content .comic-item:nth-child(2) .comic-item-cover {
    background: linear-gradient(135deg, #2d1f63, #ff5a7f);
}

#about-page .author-content-item.comic-content .comic-item .comic-item-cover::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

#about-page .author-content-item.comic-content .comic-item .comic-item-cover::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
}

#about-page .author-content-item.game-yuanshen .author-content-item-tips,
#about-page .author-content-item.like-technology .author-content-item-tips,
#about-page .author-content-item.like-music .author-content-item-tips,
#about-page .author-content-item.comic-content .author-content-item-tips {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    opacity: 0.82;
}

#about-page .author-content-item.careers {
    min-height: 430px;
    padding: 0;
    background: linear-gradient(135deg, #f220df, #ff5e77) !important;
    border: 0;
}

#about-page .author-content-item.careers::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
    z-index: 1;
}

#about-page .author-content-item.careers .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    color: #fff7fb;
}

#about-page .author-content-item.careers .author-content-item-tips,
#about-page .author-content-item.careers .author-content-item-title {
    color: #fff7fb;
}

#about-page .author-content-item.careers .author-content-item-title {
    max-width: 76%;
    font-size: 2.2rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

#about-page .author-content-item.careers .careers-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 1.4rem;
    max-width: 86%;
}

#about-page .author-content-item.careers .career-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#about-page .author-content-item.careers .career-item .circle {
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

#about-page .author-content-item.careers .career-item .name {
    color: rgba(247, 251, 255, 0.96);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

#about-page .author-content-item.careers img {
    display: none;
}

#about-page .author-content-item.game-yuanshen {
    background: linear-gradient(135deg, #6c39ff, #ff5792) !important;
}

#about-page .author-content-item.like-technology {
    background: linear-gradient(135deg, #245bff, #43b6ff) !important;
}

#about-page .author-content-item.like-music {
    background: linear-gradient(135deg, #ffd86c, #ff8aa0) !important;
}

#about-page .author-content-item.game-yuanshen .author-content-item-title,
#about-page .author-content-item.like-technology .author-content-item-title,
#about-page .author-content-item.like-music .author-content-item-title,
#about-page .author-content-item.game-yuanshen .author-content-item-tips,
#about-page .author-content-item.like-technology .author-content-item-tips,
#about-page .author-content-item.like-music .author-content-item-tips,
#about-page .author-content-item.game-yuanshen .tips,
#about-page .author-content-item.like-technology .tips,
#about-page .author-content-item.like-music .tips {
    color: #fffafc;
}

#about-page .author-content-item.game-yuanshen .loading-bar,
#about-page .author-content-item.game-yuanshen .author-content-img,
#about-page .author-content-item.like-technology .author-content-img,
#about-page .author-content-item.like-music .author-content-img {
    display: none !important;
}

@media (max-width: 768px) {
    #about-page .author-content-item.game-yuanshen .author-content-item-title,
    #about-page .author-content-item.like-technology .author-content-item-title,
    #about-page .author-content-item.like-music .author-content-item-title,
    #about-page .author-content-item.comic-content .author-content-item-title {
        max-width: 100%;
        font-size: 1.72rem;
    }

    #about-page .author-content-item.comic-content .comic-item {
        width: 100%;
    }

    #about-page .author-content-item.comic-content .comic-item .comic-item-cover {
        height: 150px;
    }

    #about-page .author-content-item.careers {
        min-height: 420px;
    }

    #about-page .author-content-item.careers .card-content {
        min-height: 420px;
        padding: 1.4rem;
    }

    #about-page .author-content-item.careers .author-content-item-title {
        max-width: 100%;
        font-size: 1.72rem;
    }

    #about-page .author-content-item.careers .careers-group {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 10px;
    }
}

.essay-prose {
    position: relative;
    width: min(100%, 47rem);
    margin: 0 auto;
    padding: 0.5rem 0 1.25rem;
}

.essay-prose::before {
    content: "";
    position: absolute;
    inset: -1.25rem -2rem auto;
    height: 12rem;
    border-radius: 40px;
    background:
        radial-gradient(circle at 18% 24%, rgba(78, 120, 255, 0.08), transparent 24%),
        radial-gradient(circle at 78% 30%, rgba(255, 132, 150, 0.08), transparent 22%);
    pointer-events: none;
    z-index: 0;
}

.essay-prose > * {
    position: relative;
    z-index: 1;
}

#article-container .essay-prose p {
    margin: 1.18rem 0;
    color: rgba(52, 60, 74, 0.92);
    font-size: 1.06rem;
    line-height: 2.04;
    letter-spacing: 0.02em;
    text-indent: 2em;
    text-wrap: pretty;
}

#article-container .essay-prose .essay-prose__lead {
    margin: 0 0 1.6rem;
    color: #2a3550;
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.03em;
    text-indent: 0;
}

#article-container .essay-prose .essay-prose__lead::first-letter {
    float: left;
    margin: 0.12em 0.32em 0 0;
    color: #4963f0;
    font-size: 2.6em;
    line-height: 0.9;
    text-indent: 0;
}

#article-container .essay-prose blockquote {
    margin: 2.6rem auto 2.2rem;
    padding: 1.5rem 1.8rem;
    border: 0;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(74, 101, 235, 0.08), rgba(255, 133, 160, 0.08)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 38px rgba(48, 63, 97, 0.08);
}

#article-container .essay-prose blockquote p {
    margin: 0;
    color: #253350;
    font-size: 1.14rem;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-align: center;
    text-indent: 0;
}

.essay-prose__pause {
    margin: 2rem auto 1.8rem;
    color: rgba(90, 99, 122, 0.42);
    font-size: 1.1rem;
    letter-spacing: 0.42em;
    text-align: center;
    user-select: none;
}

.essay-prose__stanza {
    margin: 2.6rem 0 2rem;
    padding: 1.35rem 1rem;
}

#article-container .essay-prose .essay-prose__stanza p {
    margin: 0.9rem 0;
    color: #293754;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 2.08;
    letter-spacing: 0.04em;
    text-align: center;
    text-indent: 0;
}

[data-theme="dark"] .essay-prose::before {
    background:
        radial-gradient(circle at 18% 24%, rgba(100, 127, 255, 0.15), transparent 24%),
        radial-gradient(circle at 78% 30%, rgba(255, 132, 150, 0.14), transparent 22%);
}

[data-theme="dark"] #article-container .essay-prose p {
    color: rgba(227, 233, 244, 0.9);
}

[data-theme="dark"] #article-container .essay-prose .essay-prose__lead {
    color: #eef2ff;
}

[data-theme="dark"] #article-container .essay-prose .essay-prose__lead::first-letter {
    color: #91a3ff;
}

[data-theme="dark"] #article-container .essay-prose blockquote {
    background:
        linear-gradient(135deg, rgba(90, 110, 240, 0.18), rgba(255, 133, 160, 0.14)),
        rgba(25, 31, 46, 0.88);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] #article-container .essay-prose blockquote p,
[data-theme="dark"] #article-container .essay-prose .essay-prose__stanza p {
    color: #f3f5ff;
}

[data-theme="dark"] .essay-prose__pause {
    color: rgba(214, 220, 236, 0.4);
}

@media (max-width: 768px) {
    .essay-prose {
        width: 100%;
        padding-top: 0;
    }

    .essay-prose::before {
        inset: -0.6rem -0.6rem auto;
        height: 9rem;
        border-radius: 28px;
    }

    #article-container .essay-prose p {
        font-size: 1rem;
        line-height: 1.98;
    }

    #article-container .essay-prose .essay-prose__lead {
        font-size: 1.08rem;
        line-height: 1.92;
    }

    #article-container .essay-prose .essay-prose__lead::first-letter {
        margin-right: 0.22em;
        font-size: 2.2em;
    }

    #article-container .essay-prose blockquote {
        padding: 1.2rem 1rem;
        border-radius: 20px;
    }

    #article-container .essay-prose blockquote p,
    #article-container .essay-prose .essay-prose__stanza p {
        font-size: 1rem;
    }
}
