.dm-article {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.dark-theme .dm-article {
    background: transparent;
}

.dm-bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.dm-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/app极简主义详情页背景.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.8;
}

.dark-theme .dm-bg-overlay {
    background-image: url('../images/app极简主义详情页背景.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
}

.article-body {
    background: rgba(220, 220, 230, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 3rem 2rem 5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(200, 200, 210, 0.5);
}

.dark-theme .article-body {
    background: rgba(15, 25, 35, 0.85);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-section h2 {
    color: #1a3a3a !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dark-theme .article-section h2 {
    color: #a8d0d0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.article-section p {
    color: #2a4a4a !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.dark-theme .article-section p {
    color: #9ac0c0 !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

/* 其他文本元素颜色调整 */
.article-section h4 {
    color: #2a4a4a !important;
}

.dark-theme .article-section h4 {
    color: #8ababa !important;
}

.article-section li {
    color: #2a4a4a !important;
}

.dark-theme .article-section li {
    color: #9ac0c0 !important;
}

.dm-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* 基础圆形元素 */
.dm-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(100, 180, 180, 0.2);
    animation: float 20s ease-in-out infinite;
}

/* 奇幻几何图案 */
.dm-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 34px solid rgba(100, 180, 180, 0.35);
    animation: rotate 15s linear infinite;
    box-shadow: 0 0 15px rgba(100, 180, 180, 0.4);
}

.dm-square {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(100, 180, 180, 0.35);
    animation: pulse 8s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(100, 180, 180, 0.3);
}

.dm-hexagon {
    position: absolute;
    width: 40px;
    height: 23px;
    background: rgba(100, 180, 180, 0.2);
    position: relative;
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(100, 180, 180, 0.2);
}

.dm-hexagon:before,
.dm-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.dm-hexagon:before {
    bottom: 100%;
    border-bottom: 12px solid rgba(100, 180, 180, 0.2);
}

.dm-hexagon:after {
    top: 100%;
    width: 0;
    border-top: 12px solid rgba(100, 180, 180, 0.2);
}

/* 抽象奇幻图案 */
.dm-abstract {
    position: absolute;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, rgba(100, 180, 180, 0.4) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30%;
    animation: morph 10s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(100, 180, 180, 0.3);
}

/* 动态线条 */
.dm-wave {
    position: absolute;
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(100, 180, 180, 0.5), transparent);
    animation: wave 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(100, 180, 180, 0.4);
}

/* 星形图案 */
.dm-star {
    position: absolute;
    width: 25px;
    height: 25px;
    background: rgba(100, 180, 180, 0.4);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(100, 180, 180, 0.5);
}

/* 动画效果 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 70% 30% 40% 60%;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        border-radius: 30% 60% 70% 40%;
        transform: scale(1) rotate(180deg);
    }
    75% {
        border-radius: 60% 40% 30% 70%;
        transform: scale(0.9) rotate(270deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(100, 180, 180, 0.8);
    }
}

/* 奇幻图案定位 */
.dm-triangle.t1 {
    top: 15%;
    right: 10%;
    animation-delay: -2s;
}

.dm-triangle.t2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
    transform: rotate(120deg);
}

.dm-square.s1 {
    top: 30%;
    left: 5%;
    animation-delay: -1s;
}

.dm-square.s2 {
    bottom: 10%;
    right: 20%;
    animation-delay: -3s;
}

.dm-hexagon.h1 {
    top: 60%;
    left: 25%;
    animation-delay: -4s;
}

.dm-abstract.a1 {
    top: 20%;
    left: 80%;
    animation-delay: -2s;
}

.dm-abstract.a2 {
    bottom: 30%;
    right: 10%;
    animation-delay: -6s;
}

.dm-wave.w1 {
    top: 40%;
    left: -50px;
    animation-delay: -1s;
}

.dm-wave.w2 {
    bottom: 50%;
    right: -50px;
    animation-delay: -4s;
    transform: rotate(90deg);
}

.dm-star.st1 {
    top: 10%;
    left: 20%;
    animation-delay: -0.5s;
}

.dm-star.st2 {
    top: 70%;
    right: 30%;
    animation-delay: -1.5s;
}

.dm-star.st3 {
    bottom: 40%;
    left: 70%;
    animation-delay: -2.5s;
}

/* 深色模式奇幻图案 */
.dark-theme .dm-triangle {
    border-bottom-color: rgba(80, 160, 180, 0.15);
}

.dark-theme .dm-square {
    border-color: rgba(80, 160, 180, 0.15);
}

.dark-theme .dm-hexagon {
    background: rgba(80, 160, 180, 0.08);
}

.dark-theme .dm-hexagon:before {
    border-bottom-color: rgba(80, 160, 180, 0.08);
}

.dark-theme .dm-hexagon:after {
    border-top-color: rgba(80, 160, 180, 0.08);
}

.dark-theme .dm-abstract {
    background: radial-gradient(circle at 30% 30%, rgba(80, 160, 180, 0.25) 0%, transparent 70%);
}

.dark-theme .dm-wave {
    background: linear-gradient(90deg, transparent, rgba(80, 160, 180, 0.3), transparent);
}

.dark-theme .dm-star {
    background: rgba(80, 160, 180, 0.25);
}

.dark-theme .dm-star.twinkle {
    box-shadow: 0 0 15px rgba(80, 160, 180, 0.6);
}

/* 鼠标跟随效果 */
.mouse-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(100, 180, 180, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: trailFade 2s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

/* 滚动动画 */
.article-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.article-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 悬停效果增强 */
.fas-item:hover {
    border-color: rgba(100, 180, 180, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(100, 180, 180, 0.2);
}

.ac-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(100, 180, 180, 0.4);
    box-shadow: 0 10px 30px rgba(100, 180, 180, 0.25);
}

/* 文字发光效果 */
.highlight {
    color: #4a8a8a;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(100, 180, 180, 0.5);
    transition: all 0.3s ease;
}

.highlight:hover {
    text-shadow: 0 0 20px rgba(100, 180, 180, 0.8), 0 0 30px rgba(100, 180, 180, 0.5);
    transform: scale(1.02);
    display: inline-block;
}

/* 按钮魔法效果 */
.like-btn-large:hover {
    background: linear-gradient(135deg, rgba(100, 180, 180, 0.1) 0%, rgba(120, 200, 200, 0.05) 100%);
    border-color: #6a9a9a;
    color: #4a7a7a;
    box-shadow: 0 8px 25px rgba(100, 180, 180, 0.3);
    transform: translateY(-2px);
}

.article-actions .btn:hover {
    background: linear-gradient(135deg, rgba(100, 180, 180, 0.1) 0%, rgba(120, 200, 200, 0.05) 100%);
    border-color: #4a7a7a;
    color: #2a5a5a;
    box-shadow: 0 8px 25px rgba(100, 180, 180, 0.3);
    transform: translateY(-2px);
}

/* 数字变化动画 */
.bn-num {
    display: block;
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 5rem;
    font-weight: 300;
    color: #4a8a8a;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(100, 180, 180, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(100, 180, 180, 0.6), 0 0 30px rgba(100, 180, 180, 0.3);
    }
}

/* 装饰元素增强 */
.dm-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(100, 180, 180, 0.4);
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(100, 180, 180, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(100, 180, 180, 0.5);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(100, 180, 180, 0.8), 0 0 30px rgba(100, 180, 180, 0.5);
    }
}

.dm-c1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.dm-c2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: -5s;
}

.dm-c3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.dark-theme .dm-circle {
    border-color: rgba(80, 160, 180, 0.15);
}

.dm-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 180, 180, 0.3), transparent);
    animation: lineFloat 15s ease-in-out infinite;
}

.dm-l1 {
    width: 200px;
    top: 30%;
    left: 10%;
    transform: rotate(15deg);
    animation-delay: -2s;
}

.dm-l2 {
    width: 150px;
    top: 70%;
    right: 15%;
    transform: rotate(-20deg);
    animation-delay: -8s;
}

.dark-theme .dm-line {
    background: linear-gradient(90deg, transparent, rgba(80, 160, 180, 0.25), transparent);
}

.dm-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(100, 180, 180, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.dm-d1 {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.dm-d2 {
    top: 45%;
    right: 25%;
    animation-delay: -1s;
}

.dm-d3 {
    bottom: 35%;
    left: 40%;
    animation-delay: -2s;
}

.dark-theme .dm-dot {
    background: rgba(80, 160, 180, 0.35);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes lineFloat {
    0%, 100% {
        transform: translateX(0) rotate(15deg);
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) rotate(18deg);
        opacity: 0.7;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

.dm-article .blog-article-content {
    position: relative;
    z-index: 1;
}

.dm-header {
    position: relative;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.dm-header-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    height: 100%;
    pointer-events: none;
}

.dhd-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 180, 180, 0.4), transparent);
}

.dhd-l1 {
    width: 120px;
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.dhd-l2 {
    width: 80px;
    bottom: 30%;
    right: 15%;
    transform: rotate(20deg);
}

.dhd-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(100, 180, 180, 0.2);
    top: 15%;
    right: 10%;
}

.dark-theme .dhd-line {
    background: linear-gradient(90deg, transparent, rgba(80, 160, 180, 0.35), transparent);
}

.dark-theme .dhd-circle {
    border-color: rgba(80, 160, 180, 0.15);
}

.dm-header .blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dm-header .blog-date,
.dm-header .blog-category,
.dm-header .blog-original {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a9a9a;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(100, 180, 180, 0.2);
    border-radius: 2px;
}

.dark-theme .dm-header .blog-date,
.dark-theme .dm-header .blog-category,
.dark-theme .dm-header .blog-original {
    color: #6a9a9a;
    border-color: rgba(80, 160, 180, 0.2);
}

.dm-header .blog-article-title {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2a4a4a;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.dark-theme .dm-header .blog-article-title {
    color: #a8d0d0;
}

.dm-header .blog-article-subtitle {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a8a8a;
    letter-spacing: 0.02em;
    text-shadow: 0 0 15px rgba(100, 180, 180, 0.6), 0 0 30px rgba(100, 180, 180, 0.3);
    transition: all 0.3s ease;
}

.dark-theme .dm-header .blog-article-subtitle {
    color: #7ab0b0;
    text-shadow: 0 0 15px rgba(100, 180, 180, 0.6), 0 0 30px rgba(100, 180, 180, 0.3);
}

.dm-header .blog-article-subtitle:hover {
    text-shadow: 0 0 20px rgba(100, 180, 180, 0.8), 0 0 40px rgba(100, 180, 180, 0.5);
    transform: scale(1.02);
    display: inline-block;
}

.dm-article .article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.article-section {
    margin-bottom: 4rem;
}

.section-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sd-num {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.85rem;
    font-weight: 300;
    color: #6a9a9a;
    letter-spacing: 0.1em;
}

.dark-theme .sd-num {
    color: #5a8a8a;
}

.sd-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(100, 180, 180, 0.3), transparent);
}

.dark-theme .sd-line {
    background: linear-gradient(90deg, rgba(80, 160, 180, 0.25), transparent);
}

.article-section h2 {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2a4a4a;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.dark-theme .article-section h2 {
    color: #a8d0d0;
}

.article-section p {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #3a5a5a;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.dark-theme .article-section p {
    color: #9ac0c0;
}

.highlight {
    color: #4a8a8a;
    font-weight: 500;
}

.dark-theme .highlight {
    color: #7ab0b0;
}

.intro-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(120, 200, 200, 0.08) 0%, rgba(180, 220, 220, 0.04) 100%);
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
    margin-bottom: 4rem;
}

.dark-theme .intro-section {
    background: linear-gradient(135deg, rgba(60, 120, 140, 0.08) 0%, rgba(40, 100, 120, 0.04) 100%);
    border-color: rgba(80, 160, 180, 0.15);
}

.intro-letter {
    position: relative;
}

.letter-date {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.8rem;
    color: #6a9a9a;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.dark-theme .letter-date {
    color: #5a8a8a;
}

.story-quote {
    padding: 1.5rem 2rem;
    background: rgba(120, 200, 200, 0.06);
    border-left: 2px solid #6a9a9a;
    margin: 2rem 0;
}

.dark-theme .story-quote {
    background: rgba(60, 120, 140, 0.06);
    border-left-color: #5a8a8a;
}

.story-quote p {
    font-style: italic;
    margin-bottom: 0;
}

.soul-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid rgba(100, 180, 180, 0.2);
    margin: 2rem 0;
}

.dark-theme .soul-question {
    border-color: rgba(80, 160, 180, 0.2);
}

.sq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.soul-question p {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0;
}

.dark-theme .soul-question p {
    color: #8ababa;
}

.big-number {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.bn-num {
    display: block;
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 5rem;
    font-weight: 300;
    color: #4a8a8a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dark-theme .bn-num {
    color: #7ab0b0;
}

.bn-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    color: #6a9a9a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dark-theme .bn-text {
    color: #5a8a8a;
}

.app-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.ac-card {
    padding: 1.5rem;
    background: rgba(120, 200, 200, 0.04);
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dark-theme .ac-card {
    background: rgba(60, 120, 140, 0.04);
    border-color: rgba(80, 160, 180, 0.15);
}

.ac-card:hover {
    transform: translateY(-2px);
    border-color: rgba(100, 180, 180, 0.3);
}

.dark-theme .ac-card:hover {
    border-color: rgba(80, 160, 180, 0.3);
}

.ac-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.ac-card h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a7a7a;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.dark-theme .ac-card h4 {
    color: #8ababa;
}

.ac-card p {
    font-size: 0.85rem;
    color: #5a8a8a;
    margin-bottom: 0;
}

.dark-theme .ac-card p {
    color: #7ab0b0;
}

.wechat-moment {
    background: #ffffff;
    border-radius: 2px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dark-theme .wechat-moment {
    background: #1a2a3a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, #6a9a9a 0%, #8ababa 100%);
}

.wm-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wm-name {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a4a4a;
}

.dark-theme .wm-name {
    color: #a8d0d0;
}

.wm-time {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.75rem;
    color: #9a9a9a;
}

.dark-theme .wm-time {
    color: #7a7a7a;
}

.wm-content {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.95rem;
    color: #3a5a5a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dark-theme .wm-content {
    color: #9ac0c0;
}

.wm-comments {
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem;
}

.dark-theme .wm-comments {
    background: rgba(255, 255, 255, 0.03);
}

.wm-comment {
    font-size: 0.85rem;
    color: #5a7a7a;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.dark-theme .wm-comment {
    color: #8ab0b0;
}

.wm-comment:last-child {
    margin-bottom: 0;
}

.wm-cname {
    font-weight: 500;
    color: #4a7a7a;
    margin-right: 0.25rem;
}

.dark-theme .wm-cname {
    color: #7ababa;
}

.three-axes {
    margin: 2rem 0;
}

.ta-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(100, 180, 180, 0.1);
}

.dark-theme .ta-item {
    border-bottom-color: rgba(80, 160, 180, 0.1);
}

.ta-item:last-child {
    border-bottom: none;
}

.ta-num {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #6a9a9a;
    flex-shrink: 0;
}

.dark-theme .ta-num {
    color: #5a8a8a;
}

.ta-content h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0.5rem;
}

.dark-theme .ta-content h4 {
    color: #8ababa;
}

.ta-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.ta-result {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a8a8a;
    margin-top: 0.5rem;
}

.dark-theme .ta-result {
    color: #7ab0b0;
}

.app-count-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(120, 200, 200, 0.06);
    border-radius: 2px;
}

.dark-theme .app-count-progress {
    background: rgba(60, 120, 140, 0.06);
}

.acp-item {
    text-align: center;
}

.acp-num {
    display: block;
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #4a8a8a;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.dark-theme .acp-num {
    color: #7ab0b0;
}

.acp-label {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.8rem;
    color: #6a9a9a;
    letter-spacing: 0.05em;
}

.dark-theme .acp-label {
    color: #5a8a8a;
}

.acp-arrow {
    font-size: 1.5rem;
    color: #6a9a9a;
}

.dark-theme .acp-arrow {
    color: #5a8a8a;
}

.app-torture {
    margin: 2rem 0;
}

.at-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(120, 200, 200, 0.04);
    border-left: 2px solid #6a9a9a;
}

.dark-theme .at-card {
    background: rgba(60, 120, 140, 0.04);
    border-left-color: #5a8a8a;
}

.at-category {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a7a7a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.dark-theme .at-category {
    color: #8ababa;
}

.at-list {
    margin-bottom: 0.75rem;
}

.at-item {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.at-item.bad {
    color: #7a6a6a;
    text-decoration: line-through;
    opacity: 0.6;
}

.dark-theme .at-item.bad {
    color: #9a7a7a;
}

.at-result {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a8a8a;
}

.dark-theme .at-result {
    color: #7ab0b0;
}

.final-apps {
    margin: 2rem 0;
}

.fa-section {
    margin-bottom: 2rem;
}

.fas-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6a9a9a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(100, 180, 180, 0.2);
}

.dark-theme .fas-title {
    color: #5a8a8a;
    border-bottom-color: rgba(80, 160, 180, 0.2);
}

.fas-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fas-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(120, 200, 200, 0.03);
    border: 1px solid rgba(100, 180, 180, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dark-theme .fas-item {
    background: rgba(60, 120, 140, 0.03);
    border-color: rgba(80, 160, 180, 0.1);
}

.fas-item:hover {
    border-color: rgba(100, 180, 180, 0.3);
    transform: translateX(4px);
}

.dark-theme .fas-item:hover {
    border-color: rgba(80, 160, 180, 0.3);
}

.fasi-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fasi-info {
    flex: 1;
}

.fasi-name {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0.25rem;
}

.dark-theme .fasi-name {
    color: #8ababa;
}

.fasi-desc {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    color: #6a9a9a;
}

.dark-theme .fasi-desc {
    color: #7ab0b0;
}

.old-phone-joke {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(120, 200, 200, 0.05);
    border-radius: 2px;
    margin: 2rem 0;
}

.dark-theme .old-phone-joke {
    background: rgba(60, 120, 140, 0.05);
}

.opj-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-phone-joke p {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-style: italic;
    margin-bottom: 0;
}

.zhenxiang-moments {
    margin: 2rem 0;
}

.zm-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(120, 200, 200, 0.04);
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
}

.dark-theme .zm-item {
    background: rgba(60, 120, 140, 0.04);
    border-color: rgba(80, 160, 180, 0.15);
}

.zm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 180, 180, 0.15);
}

.dark-theme .zm-header {
    border-bottom-color: rgba(80, 160, 180, 0.15);
}

.zm-num {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a8a8a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dark-theme .zm-num {
    color: #7ab0b0;
}

.zm-tag {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.8rem;
    color: #6a9a9a;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(100, 180, 180, 0.2);
    border-radius: 2px;
}

.dark-theme .zm-tag {
    color: #5a8a8a;
    border-color: rgba(80, 160, 180, 0.2);
}

.zm-item p {
    font-size: 0.95rem;
}

.zm-highlight {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    color: #4a8a8a;
    padding: 1rem;
    background: rgba(120, 200, 200, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
}

.dark-theme .zm-highlight {
    color: #7ab0b0;
    background: rgba(60, 120, 140, 0.1);
}

.data-comparison {
    margin: 2rem 0;
    overflow-x: auto;
}

.dc-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Sans SC', sans-serif;
}

.dc-table thead {
    background: rgba(120, 200, 200, 0.1);
}

.dark-theme .dc-table thead {
    background: rgba(60, 120, 140, 0.1);
}

.dc-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a7a7a;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(100, 180, 180, 0.3);
}

.dark-theme .dc-table th {
    color: #8ababa;
    border-bottom-color: rgba(80, 160, 180, 0.3);
}

.dc-table td {
    padding: 1rem;
    font-size: 0.95rem;
    color: #5a8a8a;
    border-bottom: 1px solid rgba(100, 180, 180, 0.1);
}

.dark-theme .dc-table td {
    color: #7ab0b0;
    border-bottom-color: rgba(80, 160, 180, 0.1);
}

.dc-good {
    color: #4a8a6a;
    font-weight: 500;
}

.dark-theme .dc-good {
    color: #7aba9a;
}

.subjective-feelings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.sf-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(120, 200, 200, 0.04);
    border-radius: 2px;
}

.dark-theme .sf-item {
    background: rgba(60, 120, 140, 0.04);
}

.sfi-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.sfi-content h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0.5rem;
}

.dark-theme .sfi-content h4 {
    color: #8ababa;
}

.sfi-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.psychology-mechanisms {
    margin: 2rem 0;
}

.pm-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(100, 180, 180, 0.1);
}

.dark-theme .pm-item {
    border-bottom-color: rgba(80, 160, 180, 0.1);
}

.pm-item:last-child {
    border-bottom: none;
}

.pm-num {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #6a9a9a;
    flex-shrink: 0;
}

.dark-theme .pm-num {
    color: #5a8a8a;
}

.pm-content h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0.5rem;
}

.dark-theme .pm-content h4 {
    color: #8ababa;
}

.pm-desc {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-style: italic;
    color: #6a9a9a;
    margin-bottom: 0.75rem;
}

.dark-theme .pm-desc {
    color: #7ab0b0;
}

.pm-solution {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.95rem;
    color: #4a8a8a;
}

.dark-theme .pm-solution {
    color: #7ab0b0;
}

.four-week-plan {
    margin: 2rem 0;
}

.fw-week {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(120, 200, 200, 0.04);
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
}

.dark-theme .fw-week {
    background: rgba(60, 120, 140, 0.04);
    border-color: rgba(80, 160, 180, 0.15);
}

.fww-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(100, 180, 180, 0.15);
}

.dark-theme .fww-header {
    border-bottom-color: rgba(80, 160, 180, 0.15);
}

.fww-num {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a8a8a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dark-theme .fww-num {
    color: #7ab0b0;
}

.fww-title {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a7a7a;
}

.dark-theme .fww-title {
    color: #8ababa;
}

.fww-tasks {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.fww-tasks li {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 0.95rem;
    color: #5a8a8a;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.dark-theme .fww-tasks li {
    color: #7ab0b0;
}

.fww-goal {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a8a8a;
    padding: 0.75rem 1rem;
    background: rgba(120, 200, 200, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
}

.dark-theme .fww-goal {
    color: #7ab0b0;
    background: rgba(60, 120, 140, 0.1);
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.dark-theme .faq-item {
    border-color: rgba(80, 160, 180, 0.15);
}

.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(120, 200, 200, 0.06);
}

.dark-theme .faq-q {
    background: rgba(60, 120, 140, 0.06);
}

.faq-q-icon {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4a8a8a;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 180, 180, 0.15);
    border-radius: 2px;
    flex-shrink: 0;
}

.dark-theme .faq-q-icon {
    color: #7ab0b0;
    background: rgba(80, 160, 180, 0.15);
}

.faq-q p {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0;
}

.dark-theme .faq-q p {
    color: #8ababa;
}

.faq-a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.faq-a-icon {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6a9a9a;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 180, 180, 0.08);
    border-radius: 2px;
    flex-shrink: 0;
}

.dark-theme .faq-a-icon {
    color: #5a8a8a;
    background: rgba(80, 160, 180, 0.08);
}

.faq-a p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.truths {
    margin: 2rem 0;
}

.truth-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(100, 180, 180, 0.1);
}

.dark-theme .truth-item {
    border-bottom-color: rgba(80, 160, 180, 0.1);
}

.truth-item:last-child {
    border-bottom: none;
}

.truth-num {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #6a9a9a;
    flex-shrink: 0;
}

.dark-theme .truth-num {
    color: #5a8a8a;
}

.truth-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.final-question {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
}

.final-question p {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a7a7a;
    font-style: italic;
}

.dark-theme .final-question p {
    color: #8ababa;
}

.final-quote {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(120, 200, 200, 0.08) 0%, rgba(180, 220, 220, 0.04) 100%);
    border: 1px solid rgba(100, 180, 180, 0.2);
    border-radius: 2px;
}

.dark-theme .final-quote {
    background: linear-gradient(135deg, rgba(60, 120, 140, 0.08) 0%, rgba(40, 100, 120, 0.04) 100%);
    border-color: rgba(80, 160, 180, 0.2);
}

.final-quote p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.final-question-highlight {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a8a8a;
    font-style: italic;
}

.dark-theme .final-question-highlight {
    color: #7ab0b0;
}

.article-footer-date {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 180, 180, 0.15);
}

.dark-theme .article-footer-date {
    border-top-color: rgba(80, 160, 180, 0.15);
}

.article-footer-date p {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    color: #6a9a9a;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.dark-theme .article-footer-date p {
    color: #5a8a8a;
}

.appendix-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(120, 200, 200, 0.04);
    border: 1px solid rgba(100, 180, 180, 0.15);
    border-radius: 2px;
}

.dark-theme .appendix-section {
    background: rgba(60, 120, 140, 0.04);
    border-color: rgba(80, 160, 180, 0.15);
}

.appendix-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 180, 180, 0.15);
}

.dark-theme .appendix-title {
    border-bottom-color: rgba(80, 160, 180, 0.15);
}

.appendix-title span {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #6a9a9a;
}

.dark-theme .appendix-title span {
    color: #5a8a8a;
}

.appendix-title p {
    font-family: 'Noto Serif SC', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a7a7a;
    margin-bottom: 0;
}

.dark-theme .appendix-title p {
    color: #8ababa;
}

.appendix-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.al-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(100, 180, 180, 0.1);
}

.dark-theme .al-item {
    border-bottom-color: rgba(80, 160, 180, 0.1);
}

.al-item:last-child {
    border-bottom: none;
}

.ali-label {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a7a7a;
}

.dark-theme .ali-label {
    color: #8ababa;
}

.ali-content {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    color: #6a9a9a;
}

.dark-theme .ali-content {
    color: #7ab0b0;
}

.dm-article .blog-like-section {
    text-align: center;
    padding: 3rem 0;
    margin: 2rem 0;
}

.dm-article .bls-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #6a9a9a;
    margin-bottom: 1.5rem;
}

.dark-theme .dm-article .bls-text {
    color: #5a8a8a;
}

.dm-article .like-btn-large {
    padding: 1rem 2.5rem;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(100, 180, 180, 0.3);
    border-radius: 2px;
    color: #4a8a8a;
    gap: 1rem;
    transition: all 0.3s ease;
}

.dark-theme .dm-article .like-btn-large {
    border-color: rgba(80, 160, 180, 0.3);
    color: #7ab0b0;
}

.dm-article .like-btn-large:hover {
    background: rgba(100, 180, 180, 0.08);
    border-color: #6a9a9a;
    color: #4a7a7a;
}

.dark-theme .dm-article .like-btn-large:hover {
    background: rgba(80, 160, 180, 0.08);
    border-color: #5a8a8a;
    color: #7ab0b0;
}

.dm-article .like-btn-large.liked {
    background: rgba(100, 180, 180, 0.1);
    border-color: #6a9a9a;
    color: #4a7a7a;
}

.dark-theme .dm-article .like-btn-large.liked {
    background: rgba(80, 160, 180, 0.1);
    border-color: #5a8a8a;
    color: #7ab0b0;
}

.dm-article .article-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 180, 180, 0.15);
}

.dark-theme .dm-article .article-actions {
    border-top-color: rgba(80, 160, 180, 0.15);
}

.dm-article .article-actions .btn {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    background: transparent;
    border: 1px solid rgba(100, 180, 180, 0.3);
    border-radius: 2px;
    color: #4a8a8a;
    transition: all 0.3s ease;
}

.dark-theme .dm-article .article-actions .btn {
    border-color: rgba(80, 160, 180, 0.3);
    color: #7ab0b0;
}

.dm-article .article-actions .btn:hover {
    background: rgba(100, 180, 180, 0.08);
    border-color: #4a7a7a;
    color: #2a5a5a;
}

.dark-theme .dm-article .article-actions .btn:hover {
    background: rgba(80, 160, 180, 0.08);
    border-color: #7ab0b0;
    color: #a8d0d0;
}

@media (max-width: 768px) {
    .dm-header {
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .dm-header .blog-article-title {
        font-size: 1.8rem;
    }
    
    .dm-header .blog-article-subtitle {
        font-size: 0.9rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem 3rem !important;
        margin: 0 1rem !important;
        border-radius: 4px;
    }
    
    .app-categories {
        grid-template-columns: 1fr;
    }
    
    .subjective-feelings {
        grid-template-columns: 1fr;
    }
    
    .ta-item,
    .pm-item,
    .truth-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ta-num,
    .pm-num,
    .truth-num {
        font-size: 1.2rem;
    }
    
    .app-count-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .acp-arrow {
        transform: rotate(90deg);
    }
    
    .final-question p,
    .final-question-highlight {
        font-size: 1.1rem;
    }
    
    .bn-num {
        font-size: 3.5rem;
    }
    
    .dm-bg-overlay {
        background-attachment: scroll;
    }
    
    .dark-theme .dm-bg-overlay {
        background-attachment: scroll;
    }
}
