:root {
            --color-primary: #77abb7;
            --color-secondary: #476d7c;
            --color-dark: #254b62;
            --color-deeper: #1d3e53;
            --color-bg: #f5f7f8;
            --color-white: #ffffff;
            --color-text: #2c3e50;
            --color-text-light: #5a6c7d;
            --color-accent: #e8f4f8;
            --color-border: #dce8ed;
            --color-star: #f0a500;
            --color-tag: #eef6f9;
            --shadow-sm: 0 2px 8px rgba(29, 62, 83, 0.06);
            --shadow-md: 0 4px 16px rgba(29, 62, 83, 0.10);
            --shadow-lg: 0 8px 32px rgba(29, 62, 83, 0.12);
            --shadow-card: 0 2px 12px rgba(37, 75, 98, 0.07);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --max-width: 1320px;
            --nav-height: 60px;
            --banner-height-mobile: 220px;
            --banner-height-tablet: 340px;
            --banner-height-desktop: 420px;
            --img-poster-w: 300px;
            --img-poster-h: 200px;
            --img-star-w: 140px;
            --img-star-h: 140px;
            --img-banner-w: 100%;
            --img-banner-h: auto;
            --img-thumb-w: 100%;
            --img-thumb-h: 180px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .top-nav {
            width: 100%;
            background: var(--color-deeper);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }
        .top-nav-inner {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .top-nav .site-name h1 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.5px;
            white-space: nowrap;
            margin: 0;
            line-height: 1;
        }
        .top-nav .site-name h1 span {
            color: var(--color-primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        .nav-links a {
            color: #c8dce3;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 7px 13px;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: rgba(119, 171, 183, 0.2);
            color: #fff;
            outline: none;
        }
        .user-status {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e0edf1;
            font-size: 0.9rem;
            white-space: nowrap;
            cursor: pointer;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            font-weight: 500;
        }
        .user-status:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .user-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--color-primary);
            flex-shrink: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-shrink: 0;
        }
        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: #fff;
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .banner-section {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: var(--color-deeper);
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            height: var(--banner-height-mobile);
            overflow: hidden;
        }
        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            flex-shrink: 0;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(29, 62, 83, 0.85) 0%, rgba(29, 62, 83, 0.35) 40%, rgba(29, 62, 83, 0.1) 70%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 24px 20px;
            pointer-events: none;
        }
        .banner-overlay .banner-text {
            color: #fff;
            max-width: 600px;
        }
        .banner-overlay .banner-text h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 6px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
        }
        .banner-overlay .banner-text p {
            font-size: 0.9rem;
            opacity: 0.9;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }
        .banner-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .banner-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            cursor: pointer;
            padding: 0;
            transition: var(--transition);
        }
        .banner-dots button.active {
            background: #fff;
            transform: scale(1.2);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 5;
            transition: var(--transition);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-arrow:hover {
            background: rgba(255, 255, 255, 0.35);
        }
        .banner-arrow.prev {
            left: 12px;
        }
        .banner-arrow.next {
            right: 12px;
        }
        .main-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 20px 16px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            flex: 1;
        }
        .section-block {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }
        .section-block:hover {
            box-shadow: var(--shadow-md);
        }
        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-deeper);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--color-primary);
            display: inline-block;
            letter-spacing: 0.4px;
        }
        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }
        .section-title-wrapper .more-link {
            font-size: 0.85rem;
            color: var(--color-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .section-title-wrapper .more-link:hover {
            color: var(--color-primary);
        }
        .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-sm);
            transition: var(--transition);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        .movie-card img {
            width: 100%;
            height: var(--img-thumb-h);
            object-fit: cover;
            display: block;
            background: #e9eef2;
        }
        .movie-card-body {
            padding: 10px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .movie-card-body h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-deeper);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-card-body .meta {
            font-size: 0.75rem;
            color: var(--color-text-light);
            line-height: 1.4;
        }
        .movie-card-body .meta span {
            display: inline-block;
            background: var(--color-tag);
            color: var(--color-secondary);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            margin: 2px 2px 2px 0;
            font-weight: 500;
        }
        .movie-card-body .type-tag {
            display: inline-block;
            background: var(--color-accent);
            color: var(--color-dark);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.72rem;
            font-weight: 600;
            align-self: flex-start;
        }
        .stars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .star-card {
            text-align: center;
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 16px 10px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--color-border);
        }
        .star-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .star-card img {
            width: var(--img-star-w);
            height: var(--img-star-h);
            object-fit: cover;
            border-radius: 50%;
            display: block;
            margin: 0 auto 10px;
            border: 3px solid var(--color-primary);
            background: #e9eef2;
        }
        .star-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-deeper);
            margin-bottom: 2px;
        }
        .star-card .star-role {
            font-size: 0.78rem;
            color: var(--color-text-light);
        }
        .plot-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .plot-card {
            display: flex;
            gap: 12px;
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 14px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            align-items: flex-start;
        }
        .plot-card:hover {
            box-shadow: var(--shadow-md);
        }
        .plot-card img {
            width: 100px;
            height: 140px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            background: #e9eef2;
        }
        .plot-card-body h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-deeper);
            margin-bottom: 4px;
        }
        .plot-card-body p {
            font-size: 0.8rem;
            color: var(--color-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: 1fr;
            gap: 14px;
        }
        .detail-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 14px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }
        .detail-card:hover {
            box-shadow: var(--shadow-md);
        }
        .detail-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            margin-bottom: 10px;
            background: #e9eef2;
        }
        .detail-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-deeper);
            margin-bottom: 4px;
        }
        .detail-card .detail-meta {
            font-size: 0.78rem;
            color: var(--color-text-light);
            line-height: 1.5;
        }
        .detail-card .detail-meta strong {
            color: var(--color-dark);
        }
        .sidebar-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-block {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
        }
        .sidebar-block h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-deeper);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--color-primary);
            letter-spacing: 0.3px;
        }
        .total-reading {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--color-deeper);
            text-align: center;
            letter-spacing: 1px;
        }
        .total-reading .unit {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-light);
        }
        .update-time {
            text-align: center;
            font-size: 0.75rem;
            color: var(--color-text-light);
            margin-top: 4px;
        }
        .stat-numbers {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .stat-item {
            flex: 1;
            min-width: 80px;
            text-align: center;
            background: var(--color-accent);
            border-radius: var(--radius-md);
            padding: 14px 10px;
        }
        .stat-item .stat-val {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-deeper);
        }
        .stat-item .stat-label {
            font-size: 0.72rem;
            color: var(--color-text-light);
            margin-top: 2px;
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            background: var(--color-accent);
            transition: var(--transition);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
        }
        .rank-list li:hover {
            background: #d6eaf0;
        }
        .rank-badge {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            flex-shrink: 0;
        }
        .rank-badge.top1 {
            background: #e74c3c;
        }
        .rank-badge.top2 {
            background: #e67e22;
        }
        .rank-badge.top3 {
            background: #f39c12;
        }
        .rank-badge.topn {
            background: var(--color-secondary);
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: var(--color-accent);
            border-radius: var(--radius-md);
            padding: 14px 16px;
            border-left: 4px solid var(--color-primary);
            transition: var(--transition);
        }
        .comment-item:hover {
            border-left-color: var(--color-dark);
            box-shadow: var(--shadow-sm);
        }
        .comment-item .comment-user {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-deeper);
            margin-bottom: 4px;
        }
        .comment-item .comment-text {
            font-size: 0.82rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }
        .comment-item .comment-time {
            font-size: 0.7rem;
            color: #999;
            margin-top: 6px;
        }
        .app-download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .app-download-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 2px solid var(--color-border);
            background: var(--color-white);
            color: var(--color-deeper);
            cursor: pointer;
            justify-content: center;
        }
        .app-download-btn:hover {
            border-color: var(--color-primary);
            background: var(--color-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .app-download-btn .app-icon {
            flex-shrink: 0;
        }
        .app-download-btn.android {
            border-left: 4px solid #3ddc84;
        }
        .app-download-btn.ios {
            border-left: 4px solid #000;
        }
        .app-download-btn.pc {
            border-left: 4px solid #52616b;
        }
        .app-download-btn.mac {
            border-left: 4px solid #555;
        }
        .bottom-nav {
            width: 100%;
            background: var(--color-deeper);
            color: #c8dce3;
            padding: 24px 16px;
            margin-top: auto;
        }
        .bottom-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: center;
        }
        .bottom-nav-inner a {
            color: #c8dce3;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .bottom-nav-inner a:hover {
            color: #fff;
        }
        .bottom-nav .copyright {
            grid-column: 1 / -1;
            text-align: center;
            font-size: 0.75rem;
            color: #8aa4b0;
            margin-top: 8px;
        }
        .platform-intro {
            text-align: center;
            padding: 10px 0;
            line-height: 1.7;
            font-size: 0.9rem;
            color: var(--color-text-light);
        }
        .platform-intro strong {
            color: var(--color-deeper);
        }
        @media (min-width: 600px) {
            .banner-carousel {
                height: var(--banner-height-tablet);
            }
            .banner-overlay .banner-text h2 {
                font-size: 1.8rem;
            }
            .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;
            }
            .detail-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .app-download-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .bottom-nav-inner {
                grid-template-columns: repeat(4, 1fr);
                text-align: left;
            }
            .bottom-nav .copyright {
                text-align: center;
            }
            .movie-card-body h3 {
                font-size: 0.9rem;
            }
            :root {
                --img-thumb-h: 170px;
                --img-star-w: 120px;
                --img-star-h: 120px;
            }
            .section-block {
                padding: 22px 18px;
            }
            .banner-overlay {
                padding: 30px 28px;
            }
            .detail-card img {
                height: 180px;
            }
        }
        @media (min-width: 900px) {
            .main-container {
                grid-template-columns: 1fr 340px;
                gap: 28px;
                padding: 28px 20px;
            }
            .main-content {
                grid-column: 1;
            }
            .sidebar-panel {
                grid-column: 2;
            }
            .full-width-section {
                grid-column: 1 / -1;
            }
            .banner-carousel {
                height: var(--banner-height-desktop);
            }
            .banner-overlay .banner-text h2 {
                font-size: 2.2rem;
            }
            .banner-overlay .banner-text p {
                font-size: 1rem;
            }
            .hot-movies-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
            .plot-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .detail-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links a {
                font-size: 0.85rem;
                padding: 6px 11px;
            }
            :root {
                --img-thumb-h: 175px;
                --img-star-w: 130px;
                --img-star-h: 130px;
            }
            .section-block {
                padding: 24px 20px;
            }
            .detail-card img {
                height: 190px;
            }
            .plot-card img {
                width: 110px;
                height: 155px;
            }
        }
        @media (min-width: 1100px) {
            .hot-movies-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }
            .main-container {
                grid-template-columns: 1fr 370px;
                gap: 30px;
            }
            :root {
                --img-thumb-h: 185px;
            }
            .detail-card img {
                height: 200px;
            }
        }
        @media (max-width: 599px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background: var(--color-deeper);
                flex-direction: column;
                padding: 10px 16px;
                gap: 2px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                border-radius: 0 0 var(--radius-md) var(--radius-md);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .banner-carousel {
                height: 200px;
            }
            .banner-overlay .banner-text h2 {
                font-size: 1.2rem;
            }
            .banner-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .hot-movies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .app-download-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .app-download-btn {
                padding: 10px 12px;
                font-size: 0.78rem;
                gap: 6px;
            }
            :root {
                --img-thumb-h: 150px;
                --img-star-w: 100px;
                --img-star-h: 100px;
            }
            .section-block {
                padding: 14px 10px;
            }
            .detail-card img {
                height: 160px;
            }
            .plot-card img {
                width: 80px;
                height: 115px;
            }
            .movie-card-body h3 {
                font-size: 0.82rem;
            }
            .movie-card-body .meta {
                font-size: 0.7rem;
            }
            .total-reading {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 380px) {
            .hot-movies-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            :root {
                --img-thumb-h: 130px;
                --img-star-w: 80px;
                --img-star-h: 80px;
            }
            .movie-card-body {
                padding: 8px;
            }
            .movie-card-body h3 {
                font-size: 0.75rem;
            }
            .top-nav .site-name h1 {
                font-size: 1.15rem;
            }
            .banner-carousel {
                height: 170px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .banner-slides {
                transition: none;
            }
            * {
                transition-duration: 0.01ms !important;
            }
        }