/* ============================================
   独白/关于页面 - GFL 统一风格
   ============================================ */

/* ---------- 基础 ---------- */
.abouts-page {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-content, #334155);
    margin: -1px -1px 0;
}

.abouts-page p {
    margin: 0 0 10px;
}

.abouts-page p:last-child {
    margin-bottom: 0;
}

/* ---------- Hero 区域 ---------- */
.abouts-hero {
    position: relative;
    padding: 60px 40px 70px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bg-card, #fff) 0%, var(--bg-secondary, #f8fafc) 100%);
    border: 1px solid var(--border-primary, #e5e7eb);
}

.abouts-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.abouts-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: abouts-float 8s ease-in-out infinite;
}

.abouts-hero__blob--1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--theme-color, #41B883), #6dd5a0);
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.abouts-hero__blob--2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    bottom: -60px;
    left: 10%;
    animation-delay: -3s;
    opacity: 0.3;
}

.abouts-hero__blob--3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: 30%;
    right: 30%;
    animation-delay: -5s;
    opacity: 0.25;
}

@keyframes abouts-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.abouts-hero__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.abouts-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(65, 184, 131, 0.12);
    color: var(--theme-color, #41B883);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.abouts-hero__badge svg {
    width: 16px;
    height: 16px;
}

.abouts-hero__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--caption-color, #1e293b);
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.abouts-hero__desc {
    font-size: 16px;
    color: var(--text-secondary, #475569);
    margin: 0 0 28px;
    line-height: 1.7;
}

.abouts-hero__stats {
    display: flex;
    gap: 40px;
}

.abouts-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.abouts-hero__stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color, #41B883);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--theme-color, #41B883), #6dd5a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abouts-hero__stat-label {
    font-size: 13px;
    color: var(--text-tertiary, #64748b);
}

/* ---------- 内容区 ---------- */
.abouts-content {
    padding: 0;
}

/* ---------- 区块通用 ---------- */
.abouts-section {
    margin-bottom: 40px;
}

.abouts-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.abouts-section__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 184, 131, 0.12), rgba(65, 184, 131, 0.06));
    color: var(--theme-color, #41B883);
    border-radius: 12px;
    border: 1px solid rgba(65, 184, 131, 0.2);
}

.abouts-section__icon svg {
    width: 22px;
    height: 22px;
}

.abouts-section__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--caption-color, #1e293b);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.abouts-section__subtitle {
    font-size: 14px;
    color: var(--text-tertiary, #64748b);
    margin: 4px 0 0;
    line-height: 1.5;
}

.abouts-section__body {
    /* content wrapper */
}

/* ---------- 三卡片网格 ---------- */
.abouts-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.abouts-card-box {
    position: relative;
    padding: 26px 24px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.abouts-card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-color, #41B883);
    opacity: 0.8;
}

.abouts-card-box--primary::before {
    background: linear-gradient(90deg, var(--theme-color, #41B883), #6dd5a0);
}

.abouts-card-box--accent::before {
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

.abouts-card-box--warn::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.abouts-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--border-hover, #cbd5e1);
}

.abouts-card-box__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 16px;
    color: var(--theme-color, #41B883);
    background: rgba(65, 184, 131, 0.1);
}

.abouts-card-box__icon svg {
    width: 24px;
    height: 24px;
}

.abouts-card-box--primary .abouts-card-box__icon {
    color: var(--theme-color, #41B883);
    background: rgba(65, 184, 131, 0.1);
}

.abouts-card-box--accent .abouts-card-box__icon {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.abouts-card-box--warn .abouts-card-box__icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.abouts-card-box__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--caption-color, #1e293b);
    margin: 0 0 12px;
    line-height: 1.4;
}

.abouts-card-box__content {
    font-size: 14px;
    color: var(--text-secondary, #475569);
    line-height: 1.7;
}

.abouts-card-box__content p {
    margin: 0 0 6px;
}

.abouts-card-box__content p:last-child {
    margin-bottom: 0;
}

/* ---------- 关于我卡片内 ---------- */
.abouts-me {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.abouts-me__avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-primary);
}

.abouts-me__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abouts-me__info {
    flex: 1;
    min-width: 0;
}

.abouts-me__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    margin-bottom: 2px;
}

.abouts-me__sign {
    font-size: 12px;
    color: var(--text-tertiary, #64748b);
    margin-bottom: 6px;
}

.abouts-me__desc {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary, #475569);
    line-height: 1.6;
}

/* 技能标签 */
.abouts-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-secondary, #f1f5f9);
}

.abouts-skill {
    padding: 3px 10px;
    font-size: 12px;
    color: var(--theme-color, #41B883);
    background: rgba(65, 184, 131, 0.08);
    border-radius: 4px;
    line-height: 1.5;
}

/* ---------- 联系方式列表 ---------- */
.abouts-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abouts-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-secondary, #f1f5f9);
    font-size: 13.5px;
}

.abouts-contact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.abouts-contact-list li:first-child {
    padding-top: 0;
}

.abouts-contact-list__label {
    flex-shrink: 0;
    color: var(--text-tertiary, #64748b);
    min-width: 72px;
    font-size: 13px;
}

.abouts-contact-list__value {
    flex: 1;
    color: var(--text-primary, #1e293b);
    word-break: break-all;
    font-weight: 500;
}

.abouts-contact-list__value a {
    color: var(--color-link, #41B883);
    font-weight: 400;
    text-decoration: none;
    word-break: break-all;
}

.abouts-contact-list__value a:hover {
    text-decoration: underline;
}

/* ---------- 域名列表 ---------- */
.abouts-domains {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.abouts-domain {
    padding: 18px 20px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.abouts-domain:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--border-hover, #cbd5e1);
}

.abouts-domain__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.abouts-domain__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

.abouts-domain__icp {
    font-size: 11px;
    color: var(--text-tertiary, #64748b);
    padding: 2px 8px;
    background: var(--bg-secondary, #f8fafc);
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.abouts-domain__desc {
    font-size: 13px;
    color: var(--text-secondary, #475569);
    line-height: 1.6;
}

/* ---------- 其他网站 ---------- */
.abouts-websites {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abouts-website {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.abouts-website:hover {
    transform: translateX(4px);
    border-color: var(--theme-color, #41B883);
    box-shadow: 0 4px 16px rgba(65, 184, 131, 0.1);
}

.abouts-website__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 184, 131, 0.12), rgba(65, 184, 131, 0.06));
    color: var(--theme-color, #41B883);
    border-radius: 10px;
}

.abouts-website__icon svg {
    width: 20px;
    height: 20px;
}

.abouts-website__body {
    flex: 1;
    min-width: 0;
}

.abouts-website__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    margin-bottom: 3px;
}

.abouts-website__desc {
    font-size: 13px;
    color: var(--text-secondary, #475569);
    line-height: 1.5;
    margin-bottom: 2px;
}

.abouts-website__url {
    font-size: 12px;
    color: var(--text-tertiary, #64748b);
    word-break: break-all;
}

.abouts-website__arrow {
    flex-shrink: 0;
    color: var(--text-tertiary, #64748b);
    font-size: 18px;
    transition: all 0.3s ease;
}

.abouts-website:hover .abouts-website__arrow {
    color: var(--theme-color, #41B883);
    transform: translateX(4px);
}

/* ---------- 博客架构 ---------- */
.abouts-arch__image {
    margin-bottom: 16px;
    text-align: center;
}

.abouts-arch__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-primary, #e5e7eb);
}

.abouts-arch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
    padding: 20px 24px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 12px;
}

.abouts-arch__item {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-secondary, #f1f5f9);
}

.abouts-arch__item:last-child {
    border-bottom: none;
}

.abouts-arch__label {
    color: var(--text-tertiary, #64748b);
    flex-shrink: 0;
    /* min-width: 80px; */
}

.abouts-arch__sep {
    color: var(--text-tertiary, #64748b);
    margin: 0 8px 0 2px;
}

.abouts-arch__value {
    color: var(--text-primary, #1e293b);
    font-weight: 500;
}

.abouts-arch__value a {
    color: var(--color-link, #41B883);
    text-decoration: none;
    font-weight: 400;
}

.abouts-arch__value a:hover {
    text-decoration: underline;
}

/* ---------- 备注 ---------- */
.abouts-note {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-left: 4px solid var(--theme-color, #41B883);
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-secondary, #475569);
    line-height: 1.7;
}

.abouts-note__icon {
    flex-shrink: 0;
    color: var(--theme-color, #41B883);
    margin-top: 2px;
}

.abouts-note__icon svg {
    width: 20px;
    height: 20px;
}

.abouts-note__content strong {
    color: var(--text-primary, #1e293b);
    font-weight: 600;
}

/* ---------- 时间线 ---------- */
.abouts-timeline {
    position: relative;
    padding-left: 64px;
}

.abouts-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--theme-color, #41B883) 0%,
        rgba(65, 184, 131, 0.4) 30%,
        var(--border-primary, #e5e7eb) 100%
    );
    border-radius: 2px;
}

/* 年份标签 */
.abouts-timeline__year {
    position: relative;
    margin: 24px 0 14px -64px;
    padding-left: 64px;
}

.abouts-timeline__year:first-child {
    margin-top: 4px;
}

.abouts-timeline__year-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 26px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-color, #41B883), #6dd5a0);
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(65, 184, 131, 0.35);
}

/* 时间线条目 */
.abouts-timeline__item {
    position: relative;
    margin-bottom: 12px;
}

.abouts-timeline__item:last-child {
    margin-bottom: 0;
}

/* 节点 */
.abouts-timeline__node {
    position: absolute;
    left: -47px;
    top: 16px;
    width: 16px;
    height: 16px;
    z-index: 2;
}

.abouts-timeline__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color, #41B883);
    transition: all 0.3s ease;
}

.abouts-timeline__ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--theme-color, #41B883);
    opacity: 0.25;
    transition: all 0.3s ease;
}

.abouts-timeline__item:hover .abouts-timeline__dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 4px rgba(65, 184, 131, 0.2);
}

.abouts-timeline__item:hover .abouts-timeline__ring {
    opacity: 0.5;
    transform: scale(1.15);
}

/* 卡片 */
.abouts-timeline__card {
    padding: 14px 18px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.abouts-timeline__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--theme-color, #41B883);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.abouts-timeline__item:hover .abouts-timeline__card {
    transform: translateX(4px);
    border-color: rgba(65, 184, 131, 0.4);
    box-shadow: 0 6px 20px rgba(65, 184, 131, 0.08);
}

.abouts-timeline__item:hover .abouts-timeline__card::before {
    opacity: 1;
}

/* 日期 */
.abouts-timeline__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-tertiary, #64748b);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.abouts-timeline__date svg {
    width: 13px;
    height: 13px;
    color: var(--theme-color, #41B883);
}

/* 标题 */
.abouts-timeline__title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #1e293b);
    line-height: 1.6;
}

a.abouts-timeline__title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary, #1e293b);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.abouts-timeline__title:hover {
    color: var(--theme-color, #41B883);
}

.abouts-timeline__arrow {
    font-size: 13px;
    opacity: 0;
    transform: translate(-2px, 2px);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.abouts-timeline__item:hover .abouts-timeline__arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- 页面内容 ---------- */
.abouts-page-content {
    margin-top: 30px;
    padding: 32px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-primary, #e5e7eb);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ============================================
   深色模式适配
   ============================================ */
html[data-theme="dark"] .abouts-hero {
    background: linear-gradient(135deg, var(--bg-card, #2a2a2a) 0%, var(--bg-secondary, #222) 100%);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-hero__blob--1 {
    opacity: 0.25;
}

html[data-theme="dark"] .abouts-hero__blob--2 {
    opacity: 0.18;
}

html[data-theme="dark"] .abouts-hero__blob--3 {
    opacity: 0.15;
}

html[data-theme="dark"] .abouts-hero__badge {
    background: rgba(65, 184, 131, 0.18);
}

html[data-theme="dark"] .abouts-hero__title {
    color: var(--caption-color, #e8e8e8);
}

html[data-theme="dark"] .abouts-hero__desc {
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-hero__stat-label {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-section__title {
    color: var(--caption-color, #e8e8e8);
}

html[data-theme="dark"] .abouts-section__subtitle {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-section__icon {
    background: rgba(65, 184, 131, 0.15);
    border-color: rgba(65, 184, 131, 0.25);
}

html[data-theme="dark"] .abouts-card-box {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-card-box:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--border-hover, #555);
}

html[data-theme="dark"] .abouts-card-box__title {
    color: var(--caption-color, #e8e8e8);
}

html[data-theme="dark"] .abouts-card-box__content {
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-me__name {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-me__sign {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-me__desc {
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-skills {
    border-top-color: var(--border-secondary, #2a2a2a);
}

html[data-theme="dark"] .abouts-skill {
    background: rgba(65, 184, 131, 0.15);
    color: var(--theme-color, #41B883);
}

html[data-theme="dark"] .abouts-contact-list li {
    border-bottom-color: var(--border-secondary, #2a2a2a);
}

html[data-theme="dark"] .abouts-contact-list__label {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-contact-list__value {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-domain {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-domain:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--border-hover, #555);
}

html[data-theme="dark"] .abouts-domain__name {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-domain__icp {
    color: var(--text-tertiary, #888);
    background: var(--bg-secondary, #333);
}

html[data-theme="dark"] .abouts-domain__desc {
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-website {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-website:hover {
    border-color: var(--theme-color, #41B883);
    box-shadow: 0 4px 16px rgba(65, 184, 131, 0.15);
}

html[data-theme="dark"] .abouts-website__name {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-website__desc {
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-website__url {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-arch {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-arch__item {
    border-bottom-color: var(--border-secondary, #2a2a2a);
}

html[data-theme="dark"] .abouts-arch__label {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-arch__value {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-note {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
    border-left-color: var(--theme-color, #41B883);
    color: var(--text-secondary, #b0b0b0);
}

html[data-theme="dark"] .abouts-note__content strong {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] .abouts-timeline::before {
    background: linear-gradient(
        to bottom,
        var(--theme-color, #41B883) 0%,
        rgba(65, 184, 131, 0.3) 30%,
        var(--border-primary, #3a3a3a) 100%
    );
}

html[data-theme="dark"] .abouts-timeline__year-text {
    box-shadow: 0 2px 10px rgba(65, 184, 131, 0.4);
}

html[data-theme="dark"] .abouts-timeline__card {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
}

html[data-theme="dark"] .abouts-timeline__item:hover .abouts-timeline__card {
    border-color: rgba(65, 184, 131, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .abouts-timeline__date {
    color: var(--text-tertiary, #888);
}

html[data-theme="dark"] .abouts-timeline__title {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] a.abouts-timeline__title {
    color: var(--text-primary, #e8e8e8);
}

html[data-theme="dark"] a.abouts-timeline__title:hover {
    color: var(--theme-color, #41B883);
}

html[data-theme="dark"] .abouts-timeline__ring {
    border-color: var(--theme-color, #41B883);
}

html[data-theme="dark"] .abouts-timeline__dot {
    background: var(--theme-color, #41B883);
}

html[data-theme="dark"] .abouts-page-content {
    background: var(--bg-card, #2a2a2a);
    border-color: var(--border-primary, #3a3a3a);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 960px) {
    .abouts-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abouts-domains {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .abouts-hero {
        padding: 40px 24px 50px;
        border-radius: 12px;
    }

    .abouts-hero__title {
        font-size: 28px;
    }

    .abouts-hero__desc {
        font-size: 15px;
    }

    .abouts-hero__stats {
        gap: 30px;
    }

    .abouts-hero__stat-num {
        font-size: 24px;
    }

    .abouts-section {
        margin-bottom: 32px;
    }

    .abouts-section__title {
        font-size: 19px;
    }

    .abouts-section__icon {
        width: 40px;
        height: 40px;
    }

    .abouts-section__icon svg {
        width: 18px;
        height: 18px;
    }

    .abouts-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .abouts-card-box {
        padding: 22px 20px;
        border-radius: 12px;
    }

    .abouts-arch {
        grid-template-columns: 1fr;
        padding: 16px 20px;
    }

    .abouts-note {
        padding: 16px 18px;
        margin-bottom: 32px;
    }

    .abouts-timeline {
        padding-left: 52px;
    }

    .abouts-timeline::before {
        left: 18px;
    }

    .abouts-timeline__year {
        margin-left: -52px;
        padding-left: 52px;
    }

    .abouts-timeline__year-text {
        width: 42px;
        height: 22px;
        font-size: 12px;
    }

    .abouts-timeline__node {
        left: -41px;
        top: 14px;
    }

    .abouts-timeline__card {
        padding: 12px 14px;
        border-radius: 8px;
    }

    .abouts-page-content {
        padding: 24px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .abouts-hero {
        padding: 32px 20px 40px;
    }

    .abouts-hero__title {
        font-size: 24px;
    }

    .abouts-hero__stats {
        gap: 24px;
    }

    .abouts-hero__blob--1 {
        width: 200px;
        height: 200px;
    }

    .abouts-hero__blob--2 {
        width: 150px;
        height: 150px;
    }

    .abouts-section__header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .abouts-section__title {
        font-size: 18px;
    }

    .abouts-domain {
        padding: 14px 16px;
    }

    .abouts-website {
        padding: 14px 16px;
        gap: 12px;
    }
}
