:root {
            --color-primary: #6a9c78;
            --color-primary-light: #c4e3cb;
            --color-accent: #fff1bc;
            --color-bg: #f9f8ed;
            --color-white: #ffffff;
            --color-text: #2c3e2d;
            --color-text-light: #5a6b5b;
            --color-border: #d5e8d8;
            --color-shadow: rgba(106, 156, 120, 0.12);
            --color-card-hover: #e8f5ea;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --shadow-card: 0 2px 12px rgba(106, 156, 120, 0.10);
            --shadow-hover: 0 8px 28px rgba(106, 156, 120, 0.18);
            --shadow-nav: 0 1px 8px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --font-xs: 0.75rem;
            --font-sm: 0.85rem;
            --font-base: 0.95rem;
            --font-md: 1.05rem;
            --font-lg: 1.2rem;
            --font-xl: 1.4rem;
            --font-2xl: 1.7rem;
            --font-3xl: 2rem;
            --max-width: 1320px;
            --nav-height: 60px;
        }
        *,
        *::before,
        *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; min-height: 100vh; overflow-x: hidden;
        }
        .back-to-top {
            position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%;
            background: var(--color-primary); color: #fff; border: none; cursor: pointer; font-size: 1.3rem;
            font-weight: 700; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 16px rgba(106, 156, 120, 0.45); z-index: 9999;
            opacity: 0; visibility: hidden; transform: translateY(20px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        }
        .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { box-shadow: 0 6px 24px rgba(106, 156, 120, 0.65); transform: scale(1.05); }
        @media (max-width: 600px) { .back-to-top { bottom: 20px; right: 16px; width: 38px; height: 38px; font-size: 1.1rem; } }
        .site-header {
            position: sticky; top: 0; z-index: 1000; width: 100%; background: var(--color-white);
            border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-nav);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        }
        .header-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; height: var(--nav-height); gap: 12px; }
        .site-brand { flex-shrink: 0; }
        .site-brand h1 { font-size: var(--font-xl); font-weight: 700; color: var(--color-primary); letter-spacing: -0.02em; white-space: nowrap; margin: 0; line-height: 1.2; }
        .site-brand h1 span { color: #3d5a45; }
        .nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; list-style: none; }
        .nav-links a { display: inline-block; padding: 7px 13px; text-decoration: none; color: var(--color-text); font-size: var(--font-sm); font-weight: 500; border-radius: 20px; transition: all var(--transition-fast); white-space: nowrap; }
        .nav-links a:hover, .nav-links a:focus-visible { background: var(--color-primary-light); color: #2c4d34; outline: none; }
        .header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .user-login-status { display: flex; align-items: center; gap: 7px; padding: 7px 15px; background: var(--color-primary); color: #fff; border-radius: 22px; font-size: var(--font-sm); font-weight: 500; cursor: pointer; transition: all var(--transition-fast); white-space: nowrap; text-decoration: none; }
        .user-login-status:hover { background: #5a8b68; box-shadow: 0 4px 14px rgba(106, 156, 120, 0.35); }
        .user-avatar-placeholder { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
        .nav-scroll-wrapper { display: none; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; background: var(--color-white); border-top: 1px solid var(--color-border); padding: 6px 10px; gap: 4px; }
        .nav-scroll-wrapper::-webkit-scrollbar { display: none; }
        .nav-scroll-inner { display: flex; gap: 4px; white-space: nowrap; padding: 0 4px; }
        .nav-scroll-inner a { display: inline-block; padding: 7px 14px; text-decoration: none; color: var(--color-text); font-size: var(--font-xs); font-weight: 500; border-radius: 18px; transition: all var(--transition-fast); white-space: nowrap; flex-shrink: 0; background: #f5f9f6; }
        .nav-scroll-inner a:hover, .nav-scroll-inner a:focus-visible { background: var(--color-primary-light); color: #2c4d34; outline: none; }
        .main-content { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }
        .section { margin: 28px 0; scroll-margin-top: 80px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
        .section-title { font-size: var(--font-xl); font-weight: 700; color: #2c3d2e; position: relative; padding-left: 16px; letter-spacing: -0.01em; line-height: 1.3; }
        .section-title::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; background: var(--color-primary); border-radius: 3px; }
        .section-subtitle { font-size: var(--font-sm); color: var(--color-text-light); }
        .section-tag { display: inline-block; padding: 4px 12px; background: var(--color-accent); color: #5a4a1a; border-radius: 14px; font-size: var(--font-xs); font-weight: 600; }
        .banner-carousel { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: #e8efe9; box-shadow: var(--shadow-card); margin-top: 8px; }
        .carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; width: 100%; }
        .carousel-slide { min-width: 100%; display: flex; align-items: center; padding: 28px 24px; gap: 20px; background: linear-gradient(135deg, #f0f7f1 0%, #e4f0e7 40%, #dcecdf 100%); }
        .carousel-slide .slide-text { flex: 1; min-width: 0; }
        .carousel-slide .slide-text .slide-badge { display: inline-block; padding: 5px 14px; background: var(--color-primary); color: #fff; border-radius: 16px; font-size: var(--font-xs); font-weight: 600; margin-bottom: 10px; }
        .carousel-slide .slide-text h2 { font-size: var(--font-2xl); font-weight: 700; color: #1e3322; margin: 6px 0; line-height: 1.25; }
        .carousel-slide .slide-text p { font-size: var(--font-sm); color: var(--color-text-light); margin: 6px 0 14px; line-height: 1.5; }
        .carousel-slide .slide-text .slide-btn { display: inline-block; padding: 10px 22px; background: var(--color-primary); color: #fff; border-radius: 22px; text-decoration: none; font-weight: 600; font-size: var(--font-sm); transition: all var(--transition-fast); }
        .carousel-slide .slide-text .slide-btn:hover { background: #5a8b68; box-shadow: 0 6px 18px rgba(106,156,120,0.35); transform: translateY(-1px); }
        .carousel-slide .slide-img-wrap { flex-shrink: 0; width: 180px; height: 240px; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); background: #dce4dd; }
        .carousel-slide .slide-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
        .carousel-dots button { width: 28px; height: 5px; border-radius: 3px; border: none; background: rgba(106,156,120,0.35); cursor: pointer; transition: all var(--transition-fast); padding: 0; }
        .carousel-dots button.active { background: var(--color-primary); width: 36px; }
        .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.85); border: 1px solid var(--color-border); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); color: var(--color-text); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
        .carousel-arrow:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.10); }
        .carousel-arrow.prev { left: 10px; } .carousel-arrow.next { right: 10px; }
        .platform-intro { background: linear-gradient(135deg, #f9fbf9 0%, #f2f8f3 100%); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; border: 1px solid var(--color-border); box-shadow: var(--shadow-card); }
        .platform-intro h2 { font-size: var(--font-xl); font-weight: 700; color: #2c3d2e; margin-bottom: 8px; }
        .platform-intro p { font-size: var(--font-sm); color: var(--color-text-light); max-width: 680px; margin: 0 auto; line-height: 1.7; }
        .weekly-rank-scroll { display: flex; gap: 14px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 10px; }
        .weekly-rank-scroll::-webkit-scrollbar { display: none; }
        .weekly-rank-card { flex-shrink: 0; width: 150px; background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition-normal); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
        .weekly-rank-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .weekly-rank-card .rank-img { width: 100%; height: 200px; background: #e8efe9; position: relative; overflow: hidden; }
        .weekly-rank-card .rank-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .weekly-rank-card .rank-badge { position: absolute; top: 8px; left: 8px; background: var(--color-primary); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
        .weekly-rank-card .rank-info { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
        .weekly-rank-card .rank-title { font-weight: 600; font-size: var(--font-sm); color: #2c3d2e; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .weekly-rank-card .rank-meta { font-size: var(--font-xs); color: var(--color-text-light); }
        .hot-movies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
        .movie-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition-normal); display: flex; flex-direction: column; cursor: pointer; }
        .movie-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .movie-card .movie-poster { width: 100%; aspect-ratio: 2/3; background: #e8efe9; overflow: hidden; position: relative; }
        .movie-card .movie-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .movie-card .movie-poster .movie-type-tag { position: absolute; top: 8px; right: 8px; background: rgba(106,156,120,0.9); color: #fff; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
        .movie-card .movie-info { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
        .movie-card .movie-title { font-weight: 700; font-size: var(--font-base); color: #2c3d2e; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .movie-card .movie-meta { font-size: var(--font-xs); color: var(--color-text-light); line-height: 1.4; }
        .movie-card .movie-meta span { display: inline-block; margin-right: 6px; }
        .stars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
        .star-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); text-align: center; padding: 16px 12px; transition: all var(--transition-normal); display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .star-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
        .star-card .star-avatar { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; background: #e8efe9; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .star-card .star-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .star-card .star-name { font-weight: 700; font-size: var(--font-base); color: #2c3d2e; }
        .star-card .star-desc { font-size: var(--font-xs); color: var(--color-text-light); line-height: 1.4; }
        .hot-stars-scroll { display: flex; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 10px; }
        .hot-stars-scroll::-webkit-scrollbar { display: none; }
        .hot-star-mini { flex-shrink: 0; width: 100px; text-align: center; text-decoration: none; color: inherit; transition: all var(--transition-fast); }
        .hot-star-mini:hover { transform: translateY(-2px); }
        .hot-star-mini .hs-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin: 0 auto 6px; background: #e8efe9; box-shadow: 0 3px 10px rgba(0,0,0,0.07); }
        .hot-star-mini .hs-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .hot-star-mini .hs-name { font-weight: 600; font-size: var(--font-xs); color: #2c3d2e; }
        .plot-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
        .plot-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: all var(--transition-normal); }
        .plot-card:hover { box-shadow: var(--shadow-hover); }
        .plot-card .plot-img { width: 100%; height: 180px; background: #e8efe9; overflow: hidden; }
        .plot-card .plot-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .plot-card .plot-content { padding: 14px 16px; flex: 1; }
        .plot-card .plot-content h4 { font-weight: 700; font-size: var(--font-base); color: #2c3d2e; margin-bottom: 4px; }
        .plot-card .plot-content p { font-size: var(--font-sm); color: var(--color-text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .detail-layout { display: flex; flex-direction: column; gap: 18px; }
        .detail-main { display: flex; flex-direction: column; gap: 14px; }
        .detail-card { background: var(--color-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: all var(--transition-normal); }
        .detail-card:hover { box-shadow: var(--shadow-hover); }
        .detail-card .detail-img { width: 100%; height: 200px; background: #e8efe9; overflow: hidden; }
        .detail-card .detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .detail-card .detail-body { padding: 14px 16px; flex: 1; }
        .detail-card .detail-body h4 { font-weight: 700; font-size: var(--font-base); color: #2c3d2e; margin-bottom: 6px; }
        .detail-card .detail-body .detail-meta { font-size: var(--font-xs); color: var(--color-text-light); line-height: 1.5; margin-bottom: 4px; }
        .detail-card .detail-body .detail-desc { font-size: var(--font-sm); color: var(--color-text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
        .detail-sidebar { display: flex; flex-direction: column; gap: 16px; }
        .sidebar-card { background: var(--color-white); border-radius: var(--radius-md); padding: 18px 16px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
        .sidebar-card h3 { font-weight: 700; font-size: var(--font-md); color: #2c3d2e; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--color-primary-light); }
        .sidebar-card .update-time { font-size: var(--font-xs); color: #999; margin-bottom: 10px; }
        .reading-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .reading-list li { display: flex; align-items: center; gap: 8px; font-size: var(--font-sm); color: var(--color-text); padding: 6px 0; border-bottom: 1px dotted #e8efe9; }
        .reading-list li .rn { width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; color: #2c4d34; flex-shrink: 0; }
        .reading-list li:nth-child(1) .rn { background: #f5c842; color: #5a3e08; } .reading-list li:nth-child(2) .rn { background: #d4dce0; color: #3a4a50; } .reading-list li:nth-child(3) .rn { background: #e8d5b0; color: #5a3e08; }
        .stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .stat-item { text-align: center; padding: 14px 10px; background: #f9fbf9; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }
        .stat-item .stat-val { font-size: var(--font-2xl); font-weight: 700; color: var(--color-primary); line-height: 1; }
        .stat-item .stat-label { font-size: var(--font-xs); color: var(--color-text-light); margin-top: 4px; }
        .comments-list { display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: var(--color-white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-card); border-left: 3px solid var(--color-primary-light); transition: all var(--transition-fast); }
        .comment-card:hover { border-left-color: var(--color-primary); box-shadow: var(--shadow-hover); }
        .comment-card .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-card .comment-user { font-weight: 600; font-size: var(--font-sm); color: #2c3d2e; }
        .comment-card .comment-time { font-size: 11px; color: #aaa; }
        .comment-card .comment-body { font-size: var(--font-sm); color: var(--color-text-light); line-height: 1.6; }
        .app-download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .app-download-card { background: var(--color-white); border-radius: var(--radius-md); padding: 18px 14px; text-align: center; box-shadow: var(--shadow-card); text-decoration: none; color: inherit; transition: all var(--transition-normal); display: flex; flex-direction: column; align-items: center; gap: 8px; border: 2px solid transparent; }
        .app-download-card:hover { border-color: var(--color-primary-light); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
        .app-download-card .app-icon-wrap { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #f5f9f6; border-radius: 12px; }
        .app-download-card .app-icon { width: 32px; height: 32px; object-fit: contain; }
        .app-download-card .app-name { font-weight: 700; font-size: var(--font-sm); color: #2c3d2e; }
        .app-download-card .app-ver { font-size: 11px; color: #aaa; }
        .faq-list { display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: var(--color-white); border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-card); border: 1px solid transparent; transition: all var(--transition-fast); }
        .faq-item:hover { border-color: var(--color-primary-light); background: #fafdfa; }
        .faq-item .faq-q { font-weight: 700; font-size: var(--font-base); color: #2c3d2e; margin-bottom: 4px; }
        .faq-item .faq-a { font-size: var(--font-sm); color: var(--color-text-light); line-height: 1.5; }
        .site-footer { width: 100%; background: #2c3d2e; color: #c5d4c8; padding: 28px 16px 20px; margin-top: 32px; text-align: center; }
        .footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .footer-links a { color: #c5d4c8; text-decoration: none; font-size: var(--font-sm); transition: color var(--transition-fast); padding: 4px 8px; border-radius: 4px; }
        .footer-links a:hover { color: #fff; text-decoration: underline; }
        .footer-brand-mobile { font-weight: 600; color: var(--color-accent); font-size: var(--font-sm); text-decoration: none; padding: 6px 14px; border: 1px solid rgba(255,241,188,0.4); border-radius: 20px; transition: all var(--transition-fast); }
        .footer-brand-mobile:hover { background: rgba(255,241,188,0.1); border-color: var(--color-accent); }
        .footer-copy { font-size: var(--font-xs); color: #8a9a8c; }
        @media (min-width: 600px) {
            .hot-movies-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
            .stars-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
            .plot-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .app-download-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
            .carousel-slide { padding: 36px 32px; gap: 30px; }
            .carousel-slide .slide-img-wrap { width: 200px; height: 270px; }
            .detail-card { flex-direction: row; }
            .detail-card .detail-img { width: 220px; height: auto; flex-shrink: 0; min-height: 200px; }
        }
        @media (min-width: 1024px) {
            .nav-scroll-wrapper { display: none !important; }
            .nav-links { display: flex !important; }
            .hot-movies-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
            .plot-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
            .detail-layout { flex-direction: row; align-items: flex-start; gap: 22px; }
            .detail-main { flex: 1; min-width: 0; }
            .detail-sidebar { width: 340px; flex-shrink: 0; position: sticky; top: 80px; align-self: flex-start; }
            .detail-card .detail-img { width: 240px; min-height: 220px; }
            .comments-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
        }
        @media (max-width: 767px) {
            .nav-scroll-wrapper { display: flex; } .nav-links { display: none; }
            .carousel-slide { flex-direction: column; padding: 20px 16px; gap: 14px; }
            .carousel-slide .slide-img-wrap { width: 140px; height: 190px; order: -1; }
        }