/* ==================== 基础变量 ==================== */
:root {
    /* 黑夜模式（默认） */
    --bg-color: #0f0f1e;
    --card-bg: #1a1a2e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --text: #eaeaea;
    --text-muted: #a0a0a0;
    --code-bg: #16213e;
    --cat-pink: #ffb6c1;
    --border-color: rgba(255,255,255,0.1);
    --shadow-color: rgba(0,0,0,0.3);
    --hover-bg: rgba(255,255,255,0.05);
    --gradient-start: #0f0f1e;
    --gradient-end: #1a1a2e;
}

/* 白昼模式 */
[data-theme="light"] {
    --bg-color: #f0f4f8;
    --card-bg: #ffffff;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --text: #1e293b;
    --text-muted: #64748b;
    --code-bg: #f1f5f9;
    --cat-pink: #ec4899;
    --border-color: rgba(0,0,0,0.1);
    --shadow-color: rgba(0,0,0,0.1);
    --hover-bg: rgba(59,130,246,0.05);
    --gradient-start: #e0f2fe;
    --gradient-end: #f0f9ff;
}

/* ==================== 基础样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Fira+Code:wght@400;600&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--bg-color);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: background 0.3s, color 0.3s;
}

/* ==================== 主题切换按钮 ==================== */
.theme-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px var(--shadow-color);
}

/* ==================== 星空/云朵背景 ==================== */
.stars, .clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.cloud {
    position: absolute;
    background: rgba(255,255,255,0.8);
    border-radius: 100px;
    opacity: 0.6;
    animation: float-cloud 20s infinite linear;
}

[data-theme="light"] .cloud {
    opacity: 0.8;
    background: rgba(255,255,255,0.9);
}

@keyframes float-cloud {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* ==================== 飘浮粒子 ==================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    font-size: 20px;
    opacity: 0.4;
    animation: float-up 20s infinite linear;
    filter: drop-shadow(0 0 5px var(--cat-pink));
}

@keyframes float-up {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ==================== 主容器 ==================== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* ==================== 头部 ==================== */
.header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease;
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.avatar-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

.avatar-rings:nth-child(2) {
    width: 120%;
    height: 120%;
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--cat-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(233, 69, 96, 0.4);
}

[data-theme="light"] .avatar {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.avatar:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 60px rgba(233, 69, 96, 0.6);
}

h1 {
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--accent), var(--cat-pink), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    cursor: default;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2em;
    font-style: italic;
    min-height: 30px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: var(--accent);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ==================== 卡片样式 ==================== */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease backwards;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hover-bg), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-color);
    border-color: rgba(233, 69, 96, 0.3);
}

[data-theme="light"] .card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.card-title {
    font-size: 1.4em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-light);
    font-weight: 700;
}

.card-title span:first-child {
    font-size: 1.3em;
    filter: drop-shadow(0 0 10px var(--accent));
}

/* ==================== 属性表格 ==================== */
.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table tr {
    transition: all 0.3s;
}

.stats-table tr:hover {
    background: var(--hover-bg);
    transform: translateX(10px);
}

.stats-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stats-table td:first-child {
    width: 35%;
    color: var(--text-muted);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.highlight {
    color: var(--accent-light);
    font-weight: bold;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.stats-table tr:hover .highlight::after {
    width: 100%;
}

/* ==================== 技能条 ==================== */
.skill-item {
    margin: 20px 0;
    position: relative;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.skill-name {
    font-family: 'Fira Code', monospace;
    color: var(--text);
}

.skill-desc {
    color: var(--text-muted);
    font-size: 0.85em;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.skill-item:hover .skill-desc {
    opacity: 1;
    transform: translateY(0);
}

.skill-bar {
    height: 25px;
    background: var(--code-bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px var(--shadow-color);
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cat-pink));
    border-radius: 12px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.5s 1s;
}

.skill-fill.active .skill-percent {
    opacity: 1;
}

/* ==================== 信仰区 ==================== */
.faith-section {
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 182, 193, 0.15));
    border: 2px solid var(--cat-pink);
    position: relative;
}

.faith-section::before {
    content: '🐱';
    position: absolute;
    font-size: 150px;
    opacity: 0.08;
    right: -30px;
    top: -30px;
    animation: float-cat 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-cat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.faith-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cat-pink), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    animation: pulse-badge 2s infinite;
    cursor: pointer;
    transition: transform 0.3s;
}

.faith-badge:hover {
    transform: scale(1.05);
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(233, 69, 96, 0.6); }
}

.quote-box {
    background: rgba(0,0,0,0.2);
    border-left: 4px solid var(--cat-pink);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--cat-pink);
    font-size: 1.1em;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .quote-box {
    background: rgba(59,130,246,0.1);
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 60px;
    opacity: 0.2;
    font-family: serif;
}

.routine-container {
    background: var(--code-bg);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Fira Code', monospace;
    position: relative;
    overflow: hidden;
}

.routine-container::before {
    content: 'SCHEDULE';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 0.7em;
    color: var(--text-muted);
    opacity: 0.5;
}

.routine-item {
    display: flex;
    align-items: center;
    margin: 12px 0;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.routine-item:hover {
    background: var(--hover-bg);
    transform: translateX(10px);
}

.routine-time {
    color: var(--accent);
    font-weight: bold;
    min-width: 70px;
    font-size: 0.9em;
}

.routine-arrow {
    color: var(--text-muted);
    margin: 0 10px;
}

.routine-text {
    color: var(--text);
}

/* ==================== 代码块 ==================== */
.code-section {
    position: relative;
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 0 0 5px rgba(255,95,86,0.5);
}

.code-dot:nth-child(2) { background: #ffbd2e; box-shadow: 0 0 5px rgba(255,189,46,0.5); }
.code-dot:nth-child(3) { background: #27c93f; box-shadow: 0 0 5px rgba(39,201,63,0.5); }

.code-block {
    background: var(--code-bg);
    border-radius: 15px;
    padding: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
    overflow-x: auto;
    border: 1px solid var(--border-color);
    position: relative;
}

.code-block pre {
    line-height: 1.8;
    margin: 0;
}

.keyword { color: #ff79c6; }
.string { color: #f1fa8c; }
.comment { color: #6272a4; font-style: italic; }
.function { color: #8be9fd; }
.number { color: #bd93f9; }
.property { color: #50fa7b; }

[data-theme="light"] .keyword { color: #d73a49; }
[data-theme="light"] .string { color: #032f62; }
[data-theme="light"] .comment { color: #6a737d; }
[data-theme="light"] .function { color: #6f42c1; }
[data-theme="light"] .number { color: #005cc5; }
[data-theme="light"] .property { color: #22863a; }

.copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--hover-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8em;
    transition: all 0.3s;
    font-family: inherit;
}

.copy-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.copy-btn.copied {
    background: #27c93f;
    color: white;
    border-color: #27c93f;
}

/* ==================== 评论区 ==================== */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.comment-form {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-color);
    color: var(--text);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--cat-pink));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.5s;
    transition: all 0.3s;
}

.comment-item:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-time {
    font-size: 0.8em;
    color: var(--text-muted);
}

.comment-content {
    color: var(--text);
    line-height: 1.6;
    padding-left: 10px;
    border-left: 3px solid var(--border-color);
}

.comment-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== 页脚 ==================== */
.footer {
    margin-top: 60px;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 20px 20px 0 0;
    border-top: 3px solid var(--accent);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-main {
    text-align: center;
    margin-bottom: 30px;
}

.footer-text {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-sub {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 30px;
}

.cat-paw {
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(10deg); }
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.social-btn {
    background: var(--bg-color);
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s;
    z-index: -1;
}

.social-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

.social-btn:hover::before {
    left: 0;
}

/* 快速链接区域 */
.quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.quick-link-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-link-item a:hover {
    color: var(--accent-light);
    transform: translateY(-2px);
}

.company-badge {
    background: linear-gradient(135deg, var(--accent), var(--cat-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.company-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* ICP备案区域 */
.icp-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.icp-text {
    color: var(--text-muted);
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icp-number {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.icp-number:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--text-muted);
    opacity: 0.7;
}

.heart {
    color: var(--accent);
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==================== 动画定义 ==================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== 点击特效 ==================== */
.click-effect {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 30px;
    animation: burst 1s ease-out forwards;
}

@keyframes burst {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    100% { transform: scale(2) rotate(360deg); opacity: 0; }
}

/* ==================== 加载画面 ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.loading-cat {
    font-size: 80px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loading-text {
    margin-top: 20px;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--code-bg);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cat-pink));
    width: 0;
    transition: width 0.3s;
}

/* ==================== 实时时钟 ==================== */
.live-clock {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
    border: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s;
}

.clock-time {
    color: var(--accent);
    font-weight: bold;
}

.clock-status {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    .card { padding: 20px; }
    .live-clock { display: none; }
    .theme-toggle { top: 10px; left: 10px; width: 40px; height: 40px; font-size: 20px; }
    .stats-table td { display: block; width: 100% !important; }
    .stats-table td:first-child { margin-bottom: 5px; }
    .quick-links { flex-direction: column; gap: 15px; }
}

/* ==================== 滚动条 ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}
