:root {
            --main: #10b981;
            --accent: #fbbf24;
            --bg: #0a1410;
            --text: #ecfdf5;
            --border: #1f3d2e;
            --card-bg: #11231a;
            --hover-glow: #10b981;
        }
        * { box-sizing: border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
            letter-spacing: 0.2px;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
            padding: 0;
        }
        /* 标题手写/圆体感 */
        h1, h2, h3, h4, .hand-font {
            font-family: 'Segoe Script', 'Brush Script MT', 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h2.section-title {
            font-size: 2rem;
            border-bottom: 2px solid var(--border);
            padding-bottom: 0.5rem;
            margin: 1.8rem 0 1rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h2.section-title i {
            color: var(--accent);
            font-size: 1.8rem;
        }
        a { color: var(--text); text-decoration: none; }
        a:hover { color: var(--main); }
        .navbar {
            background-color: #0d1a13 !important;
            border-bottom: 1px solid var(--border);
            padding: 0.4rem 1rem;
            backdrop-filter: blur(6px);
            min-height: 54px;
        }
        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text) !important;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .navbar-brand i { color: var(--accent); font-size: 1.8rem; }
        .navbar-nav .nav-link {
            color: var(--text) !important;
            margin-right: 1rem;
            font-size: 0.9rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .navbar-nav .nav-link:hover {
            border-bottom-color: var(--main);
            color: var(--accent) !important;
        }
        .navbar-toggler { border-color: var(--border); }
        .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16, 185, 129, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
        /* Hero */
        .hero {
            position: relative;
            min-height: 78vh;
            background-image: url('{随机图片}'); /* 背景图占位符，视觉压暗 */
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed; /* parallax effect */
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            border-bottom: 2px solid var(--border);
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10,20,16,0.95) 5%, rgba(10,20,16,0.55) 60%, rgba(10,20,16,0.7) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding-bottom: 3rem;
            width: 100%;
        }
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 0 0 30px rgba(0,0,0,0.6);
            color: white;
        }
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            padding: 10px 20px;
            border-radius: 40px;
            border: 1px solid var(--border);
        }
        .hero-tag { color: var(--accent); }
        /* 胶囊按钮分类入口 */
        .category-chips {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 1.2rem 0;
        }
        .chip {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .chip:hover {
            border-color: var(--main);
            background-color: rgba(16,185,129,0.1);
            color: var(--main);
        }
        .chip i { font-size: 0.8rem; }
        /* 海报网格卡片 */
        .poster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 14px;
            margin-top: 1rem;
        }
        .poster-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s ease, border-color 0.2s;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .poster-card:hover {
            transform: scale(1.02);
            border-color: var(--main);
        }
        .poster-card .img-wrap {
            width: 100%;
            aspect-ratio: 2 / 3;
            background-color: #1b2d22;
            overflow: hidden;
            position: relative;
        }
        .poster-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .poster-info {
            padding: 8px 6px 10px;
        }
        .poster-info .title {
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text);
        }
        .poster-info .meta {
            display: flex;
            justify-content: space-between;
            color: var(--main);
            font-size: 0.7rem;
            margin-top: 3px;
        }
        .poster-info .rating {
            background-color: var(--accent);
            color: #0a1410;
            padding: 0 6px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.7rem;
        }
        .score-badge {
            background-color: rgba(251,191,36,0.2);
            border: 1px solid var(--accent);
            color: var(--accent);
            border-radius: 12px;
            padding: 0 6px;
        }
        /* 排行榜奖牌 */
        .rank-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #11231a;
            border: 1px solid var(--border);
            padding: 6px 12px;
            border-radius: 8px;
        }
        .rank-medal {
            width: 28px;
            text-align: center;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .rank-1 { color: #ffd700; }
        .rank-2 { color: #c0c0c0; }
        .rank-3 { color: #cd7f32; }
        .rank-name { flex: 1; font-size: 0.9rem; }
        .rank-score { color: var(--accent); font-weight: 700; }
        /* 对比表格 */
        .feature-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            background: #11231a;
            border: 1px solid var(--border);
        }
        .feature-table th, .feature-table td {
            border: 1px solid var(--border);
            padding: 8px 12px;
            text-align: left;
            font-size: 0.85rem;
        }
        .feature-table th {
            background-color: #1d3327;
            color: var(--accent);
            font-weight: 600;
        }
        /* 编号清单 */
        .numbered-list {
            list-style: none;
            counter-reset: my-counter;
            padding-left: 0;
        }
        .numbered-list li {
            counter-increment: my-counter;
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            gap: 8px;
        }
        .numbered-list li::before {
            content: counter(my-counter);
            background: var(--main);
            color: #0a1410;
            font-weight: 700;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.8rem;
        }
        .bordered-box {
            border: 1px solid var(--border);
            padding: 1rem;
            margin: 1.2rem 0;
            background: rgba(16,185,129,0.02);
        }
        .btn-backtop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--main);
            color: #0a1410;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }
        .btn-backtop.show {
            opacity: 1;
            visibility: visible;
        }
        footer {
            border-top: 1px solid var(--border);
            padding: 1.5rem 0;
            margin-top: 3rem;
            background: #071009;
            color: #b7c9be;
        }
        .friend-links {
            margin: 1.5rem 0 0;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
        }
        /* 弹窗 */
        .modal-mask {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(3px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-card {
            background: #f8faf9;
            color: #0f2a1c;
            width: min(680px, 92%);
            border-radius: 20px;
            display: flex;
            flex-wrap: wrap;
            position: relative;
            padding: 20px;
            gap: 20px;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-card .poster-side {
            flex: 1 1 180px;
            max-width: 180px;
        }
        .modal-card .poster-side img {
            width: 100%;
            border-radius: 12px;
        }
        .modal-card .info-side {
            flex: 2 1 300px;
        }
        .close-modal {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 2rem;
            background: none;
            border: none;
            color: #0a1410;
            cursor: pointer;
            line-height: 1;
        }
        .modal-mask.active { display: flex; }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero { min-height: 60vh; }
            .hero-content h1 { font-size: 2.5rem; }
            .poster-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
            .navbar-nav { background-color: #0d1a13; }
        }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .guide-hero {
            background: linear-gradient(145deg, rgba(16,185,129,0.08) 0%, rgba(10,20,16,0.9) 100%);
            border-bottom: 1px solid var(--border);
            padding: 3rem 0 2.5rem;
        }
.guide-hero h1 {
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.guide-hero .lead {
            color: rgba(236,253,245,0.75);
            max-width: 720px;
        }
.guide-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(31,61,46,0.5);
        }
.guide-section h2 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.guide-section h2 i {
            color: var(--main);
            font-size: 1.3rem;
        }
.guide-section h3 {
            color: var(--text);
            font-weight: 600;
            font-size: 1.15rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            border-left: 3px solid var(--main);
            padding-left: 0.75rem;
        }
.guide-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
.guide-card:hover {
            border-color: var(--hover-glow);
            box-shadow: 0 4px 15px rgba(16,185,129,0.15);
        }
.guide-card .step-num {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--main);
            background: rgba(16,185,129,0.15);
            display: inline-block;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            margin-bottom: 0.4rem;
        }
.guide-card p {
            color: var(--text);
            opacity: 0.85;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }
.guide-card ul, .guide-card ol {
            color: var(--text);
            opacity: 0.9;
            padding-left: 1.25rem;
            margin-bottom: 0.3rem;
        }
.guide-card li {
            margin-bottom: 0.3rem;
        }
.guide-tip {
            background: rgba(251,191,36,0.06);
            border-left: 3px solid var(--accent);
            padding: 0.8rem 1rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0 0.2rem;
            font-size: 0.95rem;
        }
.guide-tip i {
            color: var(--accent);
            margin-right: 0.5rem;
        }
.device-icon {
            color: var(--main);
            margin-right: 0.4rem;
            width: 1.4rem;
            text-align: center;
        }
.badge-杏吧 {
            background: rgba(16,185,129,0.2);
            color: var(--main);
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-block;
            margin-right: 0.5rem;
        }
.table-杏吧 {
            width: 100%;
            color: var(--text);
            border-collapse: collapse;
        }
.table-杏吧 th {
            background: rgba(16,185,129,0.12);
            color: var(--text);
            font-weight: 600;
            padding: 0.6rem 0.8rem;
            border: 1px solid var(--border);
        }
.table-杏吧 td {
            padding: 0.6rem 0.8rem;
            border: 1px solid var(--border);
            background: rgba(17,35,26,0.5);
        }
.table-杏吧 td:first-child {
            font-weight: 500;
            color: var(--accent);
        }

/* --- 子页面追加 --- */
.about-hero {
            background: linear-gradient(135deg, rgba(16,185,129,.12) 0%, transparent 60%);
            border-bottom: 1px solid var(--border);
            padding: 5rem 0 3rem;
        }
.about-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
.about-hero .lead {
            color: rgba(236,253,245,.75);
            max-width: 720px;
            font-size: 1.15rem;
            line-height: 1.7;
        }
.about-section {
            padding: 4rem 0;
            border-bottom: 1px solid var(--border);
        }
.about-section:last-of-type {
            border-bottom: none;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1.2rem;
        }
.about-section h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.35rem;
            width: 4px;
            height: 1.4rem;
            background: var(--main);
            border-radius: 2px;
            box-shadow: 0 0 12px var(--hover-glow);
        }
.about-section p {
            color: rgba(236,253,245,.8);
            line-height: 1.85;
            margin-bottom: 1rem;
            font-size: 1.02rem;
        }
.about-section p strong {
            color: var(--text);
        }
.stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }
.stat-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            flex: 1;
            min-width: 140px;
            text-align: center;
            transition: all .3s ease;
        }
.stat-item:hover {
            border-color: var(--main);
            box-shadow: 0 0 20px rgba(16,185,129,.15);
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--main);
            display: block;
        }
.stat-label {
            font-size: .9rem;
            color: rgba(236,253,245,.6);
            margin-top: .3rem;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
.feature-box {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            transition: all .3s ease;
        }
.feature-box:hover {
            border-color: var(--main);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(16,185,129,.12);
        }
.feature-icon {
            font-size: 2rem;
            color: var(--main);
            margin-bottom: 1rem;
        }
.feature-box h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: .6rem;
            color: var(--text);
        }
.feature-box p {
            font-size: .92rem;
            color: rgba(236,253,245,.7);
            line-height: 1.65;
            margin: 0;
        }
.timeline {
            margin-top: 2rem;
            position: relative;
            padding-left: 2rem;
        }
.timeline::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }
.timeline-item:last-child {
            padding-bottom: 0;
        }
.timeline-dot {
            position: absolute;
            left: -2rem;
            top: 0.35rem;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--main);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--main);
        }
.timeline-year {
            font-weight: 700;
            color: var(--main);
            font-size: 1.05rem;
            margin-bottom: .3rem;
        }
.timeline-text {
            color: rgba(236,253,245,.75);
            line-height: 1.7;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0;
        }
.value-list li {
            padding: .8rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-icon {
            font-size: 1.2rem;
            color: var(--main);
            flex-shrink: 0;
            margin-top: .15rem;
        }
.value-text strong {
            color: var(--text);
            display: block;
            margin-bottom: .2rem;
        }
.value-text span {
            color: rgba(236,253,245,.7);
            font-size: .95rem;
            line-height: 1.6;
        }
.cta-box {
            background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(251,191,36,.05));
            border: 1px solid var(--main);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 2rem;
        }
.cta-box h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: .8rem;
        }
.cta-box p {
            color: rgba(236,253,245,.75);
            max-width: 520px;
            margin: 0 auto 1.5rem;
        }
.cta-btn {
            display: inline-block;
            background: var(--main);
            color: #0a1410;
            font-weight: 700;
            padding: .75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all .3s ease;
            border: none;
        }
.cta-btn:hover {
            background: var(--accent);
            color: #0a1410;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251,191,36,.3);
        }
.about-hero h1 { font-size: 1.9rem; }
.about-section h2 { font-size: 1.4rem; }
.about-hero { padding: 3.5rem 0 2rem; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(10, 20, 16, 0.9) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border);
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            margin-bottom: 28px;
            transition: all 0.3s ease;
        }
.disclaimer-section:hover {
            border-color: var(--main);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
        }
.disclaimer-section h2 {
            color: var(--main);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2 i {
            font-size: 1.3rem;
            color: var(--accent);
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            opacity: 0.9;
        }
.disclaimer-section ul {
            padding-left: 20px;
            list-style-type: none;
        }
.disclaimer-section ul li {
            padding: 6px 0;
            position: relative;
            padding-left: 24px;
        }
.disclaimer-section ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--main);
            font-size: 0.9rem;
            top: 10px;
        }
.update-info {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 8px;
            padding: 16px 20px;
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text);
            font-size: 0.9rem;
        }
.update-info i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.contact-box {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-top: 20px;
        }
.contact-box h3 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
.contact-box p {
            margin-bottom: 8px;
        }
.disclaimer-hero {
                padding: 60px 0 40px;
            }
.disclaimer-section {
                padding: 24px 20px;
            }
.disclaimer-section h2 {
                font-size: 1.2rem;
            }