:root {
            --primary: #f76b8a;
            --white: #fcfefe;
            --light-bg: #eaf6f6;
            --accent: #66bfbf;
            --text: #2c3e50;
            --text-light: #5a6c7d;
            --border: #d8e8e8;
            --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
            --radius: 10px;
            --radius-sm: 6px;
            --transition: 0.25s ease;
            --nav-height: 62px;
            --max-width: 1300px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: #f5f8f8;
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .top-nav {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--nav-height);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
        }
        .top-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 0 20px;
        }
        .nav-brand h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .nav-brand h1 a {
            color: inherit;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links li a {
            display: inline-block;
            padding: 7px 14px;
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-links li a:hover,
        .nav-links li a.active {
            background: var(--light-bg);
            color: var(--primary);
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            white-space: nowrap;
        }
        .nav-user .avatar-circle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .nav-user .login-text {
            color: var(--primary);
            font-weight: 600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--text);
            padding: 4px;
        }
        .main-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            gap: 24px;
            padding: 20px;
        }
        .main-content {
            flex: 1;
            min-width: 0;
        }
        .sidebar {
            width: 320px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .banner-section {
            margin-bottom: 24px;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-hover);
            background: #ddd;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 2.4 / 1;
            max-height: 440px;
            overflow: hidden;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.7s ease;
            pointer-events: none;
        }
        .banner-slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 30px 28px 20px;
            pointer-events: none;
        }
        .banner-overlay h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .banner-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .banner-dots {
            position: absolute;
            bottom: 12px;
            right: 20px;
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .banner-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        .banner-dots span.active {
            background: #fff;
            transform: scale(1.3);
        }
        .banner-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
            z-index: 5;
        }
        .banner-arrows button {
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-arrows button:hover {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 26px;
            background: var(--primary);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .section-title .sub {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
            margin-left: auto;
        }
        .platform-intro-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .platform-intro-card .intro-text {
            flex: 1;
            min-width: 220px;
        }
        .platform-intro-card .intro-text h3 {
            font-size: 1.15rem;
            color: var(--primary);
            margin-bottom: 6px;
            font-weight: 700;
        }
        .platform-intro-card .intro-text p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .platform-intro-card .intro-img {
            width: 160px;
            height: 100px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .platform-intro-card .intro-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .movie-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .movie-card .card-img {
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #e8ecec;
            flex-shrink: 0;
        }
        .movie-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .card-img img {
            transform: scale(1.05);
        }
        .movie-card .card-info {
            padding: 10px 12px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .movie-card .card-info h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-card .card-info .meta {
            font-size: 0.73rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 2px 8px;
        }
        .movie-card .card-info .meta span {
            white-space: nowrap;
        }
        .movie-card .card-info .type-tag {
            display: inline-block;
            background: var(--light-bg);
            color: var(--accent);
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
            align-self: flex-start;
            margin-top: 2px;
        }
        .weekly-rank {
            background: #fff;
            border-radius: var(--radius);
            padding: 18px 16px;
            box-shadow: var(--shadow);
        }
        .weekly-rank h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .weekly-rank ol {
            list-style: none;
            counter-reset: rank;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .weekly-rank ol li {
            counter-increment: rank;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            padding: 6px 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .weekly-rank ol li:hover {
            background: var(--light-bg);
        }
        .weekly-rank ol li::before {
            content: counter(rank);
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: var(--light-bg);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .weekly-rank ol li:nth-child(1)::before {
            background: #ffe0e8;
            color: #d4456a;
        }
        .weekly-rank ol li:nth-child(2)::before {
            background: #ffe8d0;
            color: #c77a30;
        }
        .weekly-rank ol li:nth-child(3)::before {
            background: #fff3d0;
            color: #b8941f;
        }
        .weekly-rank .rank-img {
            width: 42px;
            height: 56px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .weekly-rank .rank-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .stars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .star-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            padding-bottom: 14px;
            transition: var(--transition);
            cursor: pointer;
        }
        .star-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .star-card .star-img {
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #e8ecec;
        }
        .star-card .star-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .star-card:hover .star-img img {
            transform: scale(1.06);
        }
        .star-card h4 {
            margin-top: 10px;
            font-size: 0.95rem;
            font-weight: 700;
        }
        .star-card .role {
            font-size: 0.75rem;
            color: var(--text-light);
        }
        .hot-stars-mini {
            background: #fff;
            border-radius: var(--radius);
            padding: 16px;
            box-shadow: var(--shadow);
        }
        .hot-stars-mini h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary);
        }
        .hot-stars-mini .mini-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hot-stars-mini .mini-star {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--light-bg);
            border-radius: 20px;
            padding: 5px 12px 5px 5px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        .hot-stars-mini .mini-star:hover {
            background: #d8f0f0;
        }
        .hot-stars-mini .mini-star .mini-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .hot-stars-mini .mini-star .mini-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .plot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .plot-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            gap: 14px;
            padding: 14px;
            transition: var(--transition);
            cursor: pointer;
        }
        .plot-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .plot-card .plot-img {
            width: 100px;
            height: 140px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .plot-card .plot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .plot-card .plot-content h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .plot-card .plot-content p {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .detail-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            gap: 14px;
            padding: 14px;
            transition: var(--transition);
            cursor: pointer;
        }
        .detail-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .detail-card .detail-img {
            width: 110px;
            height: 150px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .detail-card .detail-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .detail-card .detail-content h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .detail-card .detail-content .d-meta {
            font-size: 0.73rem;
            color: var(--text-light);
            line-height: 1.5;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }
        .total-read {
            text-align: center;
            padding: 8px 0;
        }
        .total-read .read-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .total-read .read-label {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .total-read .update-time {
            font-size: 0.7rem;
            color: #999;
            margin-top: 4px;
        }
        .stat-row {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .stat-item {
            flex: 1;
            text-align: center;
            background: var(--light-bg);
            border-radius: var(--radius-sm);
            padding: 12px 8px;
        }
        .stat-item .stat-val {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
        }
        .stat-item .stat-label {
            font-size: 0.7rem;
            color: var(--text-light);
        }
        .comments-section {
            margin-bottom: 24px;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 16px 18px;
            box-shadow: var(--shadow);
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }
        .comment-item:hover {
            border-left-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        .comment-item .comment-user {
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 4px;
            color: var(--text);
        }
        .comment-item .comment-text {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .comment-item .comment-time {
            font-size: 0.7rem;
            color: #aaa;
            margin-top: 4px;
        }
        .app-download-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            text-align: center;
        }
        .app-download-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .app-download-section .subtitle {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 18px;
        }
        .app-download-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .app-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
            white-space: nowrap;
        }
        .app-download-btn.android {
            background: #e8f8f0;
            color: #1a7a4c;
            border-color: #3ddc84;
        }
        .app-download-btn.android:hover {
            background: #d0f4e0;
        }
        .app-download-btn.ios {
            background: #f5f5f5;
            color: #1a1a1a;
            border-color: #999;
        }
        .app-download-btn.ios:hover {
            background: #e8e8e8;
        }
        .app-download-btn.pc {
            background: #eef3f7;
            color: #3a4f62;
            border-color: #52616b;
        }
        .app-download-btn.pc:hover {
            background: #dde6ed;
        }
        .app-download-btn.mac {
            background: #f0f0f5;
            color: #333;
            border-color: #888;
        }
        .app-download-btn.mac:hover {
            background: #e4e4ec;
        }
        .app-icon {
            flex-shrink: 0;
        }
        .bottom-nav {
            width: 100%;
            background: #2c3e50;
            color: #ccc;
            padding: 32px 20px 20px;
            margin-top: 32px;
        }
        .bottom-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .bottom-nav .bn-col h5 {
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .bottom-nav .bn-col a {
            display: block;
            color: #aaa;
            text-decoration: none;
            font-size: 0.8rem;
            margin-bottom: 5px;
            transition: var(--transition);
        }
        .bottom-nav .bn-col a:hover {
            color: var(--primary);
        }
        .bottom-nav .copyright {
            width: 100%;
            text-align: center;
            margin-top: 20px;
            font-size: 0.75rem;
            color: #777;
            border-top: 1px solid #3a4a58;
            padding-top: 16px;
        }
        .bottom-nav .copyright a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }
        .bottom-nav .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1100px) {
            .main-wrapper {
                flex-direction: column;
                padding: 14px;
            }
            .sidebar {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 14px;
            }
            .sidebar>* {
                flex: 1 1 260px;
                min-width: 240px;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .stars-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
            .nav-links li a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 768px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .plot-grid,
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .sidebar {
                flex-direction: column;
                gap: 14px;
            }
            .sidebar>* {
                flex: 1 1 auto;
                min-width: auto;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #fff;
                border-bottom: 2px solid var(--border);
                padding: 12px 20px;
                gap: 4px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            .banner-carousel {
                aspect-ratio: 1.6/1;
                max-height: 280px;
            }
            .banner-overlay h2 {
                font-size: 1.2rem;
            }
            .platform-intro-card {
                flex-direction: column;
                text-align: center;
            }
            .platform-intro-card .intro-img {
                width: 100%;
                height: 140px;
            }
            .top-nav-inner {
                padding: 0 12px;
            }
            .nav-brand h1 {
                font-size: 1.2rem;
            }
            .app-download-btns {
                flex-direction: column;
                align-items: center;
            }
            .app-download-btn {
                width: 80%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .movie-card .card-info h4 {
                font-size: 0.8rem;
            }
            .movie-card .card-info .meta {
                font-size: 0.68rem;
            }
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .banner-carousel {
                aspect-ratio: 1.4/1;
                max-height: 220px;
            }
            .banner-overlay {
                padding: 16px 14px 10px;
            }
            .banner-overlay h2 {
                font-size: 1rem;
            }
            .banner-overlay p {
                font-size: 0.75rem;
            }
            .section-title {
                font-size: 1.05rem;
            }
            .bottom-nav-inner {
                flex-direction: column;
                gap: 16px;
            }
        }