:root {
            --color-dark: #7c7575;
            --color-mid: #b8b0b0;
            --color-light: #dfd3d3;
            --color-bg: #fbf0f0;
            --color-white: #ffffff;
            --color-accent: #8b6f6f;
            --color-accent-hover: #6b5555;
            --shadow-sm: 0 2px 8px rgba(124, 117, 117, 0.1);
            --shadow-md: 0 4px 16px rgba(124, 117, 117, 0.15);
            --shadow-lg: 0 8px 32px rgba(124, 117, 117, 0.2);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --transition: 0.3s ease;
            --max-width: 1320px;
            --nav-height: 64px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        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: var(--color-bg);
            color: var(--color-dark);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .top-nav {
            width: 100%;
            height: var(--nav-height);
            background: var(--color-white);
            border-bottom: 1px solid var(--color-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            padding: 0 20px;
        }
        .nav-inner {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .nav-brand h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
            white-space: nowrap;
            letter-spacing: 1px;
            margin: 0;
        }
        .nav-brand h1 a {
            text-decoration: none;
            color: inherit;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links li a {
            display: inline-block;
            padding: 8px 14px;
            text-decoration: none;
            color: var(--color-dark);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-links li a:hover,
        .nav-links li a:focus {
            background: var(--color-bg);
            color: var(--color-accent);
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-user .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--color-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--color-dark);
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .nav-user .user-avatar:hover {
            border-color: var(--color-accent);
        }
        .nav-user .login-btn {
            padding: 8px 18px;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-user .login-btn:hover {
            background: var(--color-accent-hover);
            box-shadow: var(--shadow-md);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--color-dark);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--color-white);
            box-shadow: var(--shadow-lg);
            padding: 16px;
            z-index: 999;
            flex-direction: column;
            gap: 6px;
            max-height: 70vh;
            overflow-y: auto;
        }
        .mobile-menu.active {
            display: flex;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .mobile-menu a:hover {
            background: var(--color-bg);
            color: var(--color-accent);
        }
        .banner-section {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: var(--color-dark);
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 6;
            min-height: 320px;
            max-height: 560px;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s 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;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
            display: flex;
            align-items: center;
            padding: 40px 6%;
        }
        .banner-text {
            max-width: 600px;
            color: #ffffff;
        }
        .banner-text h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .banner-text p {
            font-size: clamp(0.9rem, 1.5vw, 1.15rem);
            margin-bottom: 20px;
            opacity: 0.9;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }
        .banner-play-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border: 2px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
        }
        .banner-play-btn:hover {
            background: rgba(255, 255, 255, 0.35);
            border-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .banner-play-btn img {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }
        .banner-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .banner-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.7);
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }
        .banner-dots button.active {
            background: #fff;
            border-color: #fff;
            transform: scale(1.2);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(6px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            z-index: 10;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            border-color: #fff;
        }
        .banner-arrow.prev {
            left: 16px;
        }
        .banner-arrow.next {
            right: 16px;
        }
        .main-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 24px 20px;
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }
        .main-content {
            flex: 1;
            min-width: 0;
        }
        .sidebar {
            width: 320px;
            flex-shrink: 0;
            position: sticky;
            top: calc(var(--nav-height) + 20px);
            align-self: flex-start;
        }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--color-accent);
            display: inline-block;
            letter-spacing: 1px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 8px;
        }
        .section-header .view-all {
            font-size: 0.85rem;
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        .section-header .view-all:hover {
            text-decoration: underline;
        }
        .section-block {
            margin-bottom: 40px;
        }
        .platform-intro-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-light);
            margin-bottom: 28px;
        }
        .platform-intro-card p {
            font-size: 0.95rem;
            color: var(--color-dark);
            line-height: 1.8;
        }
        .platform-intro-card .highlight-nums {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .highlight-nums .num-item {
            text-align: center;
            min-width: 80px;
        }
        .highlight-nums .num-item .num {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-accent);
        }
        .highlight-nums .num-item .label {
            font-size: 0.8rem;
            color: var(--color-mid);
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .movie-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-light);
        }
        .movie-card .poster-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2 / 3;
            background: var(--color-light);
        }
        .movie-card .poster-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .poster-wrap img {
            transform: scale(1.06);
        }
        .movie-card .card-info {
            padding: 10px 12px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .movie-card .card-info .movie-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .movie-card .card-info .movie-meta {
            font-size: 0.7rem;
            color: var(--color-mid);
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .movie-card .card-info .movie-tag {
            display: inline-block;
            font-size: 0.65rem;
            padding: 3px 8px;
            background: var(--color-bg);
            color: var(--color-accent);
            border-radius: 10px;
            align-self: flex-start;
            margin-top: 2px;
        }
        .weekly-rank {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-light);
        }
        .weekly-rank .rank-list {
            list-style: none;
            counter-reset: rank;
        }
        .weekly-rank .rank-list li {
            counter-increment: rank;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--color-bg);
            transition: var(--transition);
            cursor: pointer;
        }
        .weekly-rank .rank-list li:last-child {
            border-bottom: none;
        }
        .weekly-rank .rank-list li:hover {
            background: var(--color-bg);
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius-sm);
        }
        .rank-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
            background: var(--color-light);
            color: var(--color-dark);
        }
        .rank-list li:nth-child(1) .rank-num {
            background: #e8c170;
            color: #fff;
        }
        .rank-list li:nth-child(2) .rank-num {
            background: #c0c0c0;
            color: #fff;
        }
        .rank-list li:nth-child(3) .rank-num {
            background: #c9a882;
            color: #fff;
        }
        .rank-info .rank-title {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-dark);
        }
        .rank-info .rank-sub {
            font-size: 0.75rem;
            color: var(--color-mid);
        }
        .stars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .star-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
        }
        .star-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-light);
        }
        .star-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .star-card .star-name {
            font-weight: 700;
            font-size: 1rem;
            padding: 12px 8px 4px;
            color: var(--color-dark);
        }
        .star-card .star-works {
            font-size: 0.8rem;
            color: var(--color-mid);
            padding: 0 8px 14px;
        }
        .star-badge {
            display: inline-block;
            background: #ffe0c0;
            color: #b87030;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
            margin-top: 4px;
        }
        .plot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .plot-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 16px;
            padding: 16px;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
        }
        .plot-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-light);
        }
        .plot-card img {
            width: 120px;
            height: 160px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .plot-card .plot-info h4 {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-dark);
            margin-bottom: 6px;
        }
        .plot-card .plot-info p {
            font-size: 0.85rem;
            color: var(--color-mid);
            line-height: 1.6;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .detail-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            padding: 20px;
            border: 1px solid var(--color-light);
            transition: var(--transition);
        }
        .detail-card:hover {
            box-shadow: var(--shadow-md);
        }
        .detail-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-dark);
            margin-bottom: 10px;
        }
        .detail-card .detail-meta {
            font-size: 0.8rem;
            color: var(--color-mid);
            margin-bottom: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .detail-card .detail-meta span {
            background: var(--color-bg);
            padding: 4px 10px;
            border-radius: 10px;
            font-size: 0.75rem;
        }
        .detail-card p {
            font-size: 0.9rem;
            color: var(--color-dark);
            line-height: 1.7;
        }
        .sidebar .side-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-light);
            margin-bottom: 20px;
        }
        .side-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-dark);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--color-bg);
        }
        .side-card .total-read-num {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
        }
        .side-card .update-time {
            font-size: 0.8rem;
            color: var(--color-mid);
            margin-top: 6px;
        }
        .side-stat-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .side-stat-item {
            flex: 1;
            min-width: 80px;
            text-align: center;
            background: var(--color-bg);
            border-radius: var(--radius-md);
            padding: 14px 10px;
        }
        .side-stat-item .stat-val {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
        }
        .side-stat-item .stat-lbl {
            font-size: 0.75rem;
            color: var(--color-mid);
            margin-top: 2px;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .comment-item {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--color-light);
            transition: var(--transition);
        }
        .comment-item:hover {
            border-left-color: var(--color-accent);
            box-shadow: var(--shadow-md);
        }
        .comment-item .comment-user {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-dark);
            margin-bottom: 6px;
        }
        .comment-item .comment-text {
            font-size: 0.9rem;
            color: var(--color-dark);
            line-height: 1.7;
        }
        .comment-item .comment-time {
            font-size: 0.75rem;
            color: var(--color-mid);
            margin-top: 6px;
        }
        .download-section {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-light);
            text-align: center;
        }
        .download-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 8px;
        }
        .download-section .download-sub {
            font-size: 0.9rem;
            color: var(--color-mid);
            margin-bottom: 24px;
        }
        .download-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: 2px solid var(--color-light);
            background: var(--color-white);
            color: var(--color-dark);
            cursor: pointer;
        }
        .download-btn:hover {
            background: var(--color-bg);
            border-color: var(--color-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .download-btn .app-icon {
            flex-shrink: 0;
        }
        .footer-nav {
            width: 100%;
            background: var(--color-white);
            border-top: 1px solid var(--color-light);
            padding: 32px 20px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: space-between;
            align-items: center;
        }
        .footer-info {
            font-size: 0.85rem;
            color: var(--color-mid);
            line-height: 1.8;
        }
        .footer-info a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 500;
        }
        .footer-info a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--color-mid);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--color-accent);
        }
        @media (max-width: 1200px) {
            .movie-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .sidebar {
                width: 280px;
            }
            .stars-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 992px) {
            .main-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                position: static;
                order: 10;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .stars-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .plot-grid,
            .detail-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .banner-carousel {
                aspect-ratio: 16 / 7;
                min-height: 260px;
                max-height: 400px;
            }
        }
        @media (max-width: 640px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .banner-carousel {
                aspect-ratio: 16 / 10;
                min-height: 200px;
                max-height: 300px;
            }
            .banner-overlay {
                padding: 20px 5%;
            }
            .banner-text h2 {
                font-size: 1.2rem;
            }
            .banner-text p {
                font-size: 0.8rem;
            }
            .banner-play-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .banner-arrow {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .nav-brand h1 {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .download-btns {
                gap: 10px;
            }
            .download-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .plot-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .plot-card img {
                width: 100%;
                height: auto;
                aspect-ratio: 3/2;
                max-width: 280px;
            }
            .side-stat-row {
                flex-direction: column;
            }
        }