:root {
            --coral: #e67a7a;
            --warm-yellow: #ffebb7;
            --cream: #fff4e1;
            --teal: #9ddcdc;
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-gray: #5a6c7d;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1320px;
            --nav-height: 64px;
        }
        *,
        *::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', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background-color: var(--cream);
            color: var(--text-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(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid #f0e8d8;
            gap: 16px;
        }
        .nav-brand h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--coral);
            letter-spacing: 0.5px;
            white-space: nowrap;
            margin: 0;
            line-height: 1;
        }
        .nav-brand h1 span {
            color: #3a7d7d;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: var(--warm-yellow);
            color: #b85353;
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 20px;
            background: #fdf6e8;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .nav-user:hover {
            border-color: var(--coral);
            background: #fff5f5;
        }
        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #2c5f5f;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-shrink: 0;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 2px;
            margin: 5px 0;
            transition: var(--transition);
        }
        .banner-section {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: #1a1a2e;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-slide.active {
            opacity: 1;
            z-index: 1;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
        }
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
            z-index: 2;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }
        .banner-content {
            max-width: 580px;
            color: #fff;
            z-index: 3;
            position: relative;
        }
        .banner-tag {
            display: inline-block;
            background: var(--coral);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .banner-content h2 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }
        .banner-content p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 24px;
            line-height: 1.7;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }
        .banner-btn {
            display: inline-block;
            background: var(--coral);
            color: #fff;
            padding: 12px 28px;
            border-radius: 28px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(230, 122, 122, 0.4);
        }
        .banner-btn:hover {
            background: #d46969;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 122, 122, 0.55);
        }
        .banner-indicators {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .banner-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }
        .banner-indicators button.active {
            background: var(--coral);
            border-color: var(--coral);
            transform: scale(1.2);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }
        .banner-arrow:hover {
            background: rgba(255, 255, 255, 0.35);
        }
        .banner-arrow.prev {
            left: 20px;
        }
        .banner-arrow.next {
            right: 20px;
        }
        .section-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            padding-left: 18px;
            letter-spacing: 0.5px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 26px;
            background: var(--coral);
            border-radius: 3px;
        }
        .section-more {
            color: var(--coral);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        .section-more:hover {
            text-decoration: underline;
        }
        .section-spacing {
            padding: 50px 0;
        }
        .bg-teal-light {
            background: #f0fafa;
        }
        .bg-yellow-light {
            background: #fffdf6;
        }
        .bg-white-block {
            background: var(--white);
        }
        .intro-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .intro-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .intro-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal);
        }
        .intro-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }
        .intro-icon.teal {
            background: #e0f7f7;
        }
        .intro-icon.yellow {
            background: #fff8e1;
        }
        .intro-icon.coral {
            background: #fde8e8;
        }
        .intro-icon.cream-bg {
            background: #fffdf4;
        }
        .intro-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .intro-card p {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.5;
        }
        .weekly-rank {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x proximity;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #ddd transparent;
        }
        .weekly-rank::-webkit-scrollbar {
            height: 6px;
        }
        .weekly-rank::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px;
        }
        .rank-card {
            flex: 0 0 200px;
            scroll-snap-align: start;
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            position: relative;
            display: block;
        }
        .rank-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .rank-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
        }
        .rank-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--coral);
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .rank-card .rank-info {
            padding: 12px 14px;
        }
        .rank-card .rank-info h4 {
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-card .rank-info span {
            font-size: 0.78rem;
            color: var(--coral);
            font-weight: 500;
        }
        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 28px;
            align-items: start;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .movie-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .movie-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            background: #f0f0f0;
        }
        .movie-card-body {
            padding: 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .movie-card-body h4 {
            font-size: 0.95rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-meta {
            font-size: 0.75rem;
            color: var(--text-gray);
            line-height: 1.5;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .movie-meta span {
            background: #fdf6e8;
            padding: 2px 8px;
            border-radius: 10px;
            white-space: nowrap;
            font-size: 0.72rem;
        }
        .movie-type-tag {
            display: inline-block;
            background: var(--teal);
            color: #2c5f5f;
            font-size: 0.72rem;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 500;
            align-self: flex-start;
            white-space: nowrap;
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 22px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 22px;
            border: 1px solid #f5ece0;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-dark);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--warm-yellow);
        }
        .total-read-num {
            font-size: 3rem;
            font-weight: 800;
            color: var(--coral);
            letter-spacing: 1px;
            line-height: 1;
        }
        .total-read-label {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-top: 4px;
        }
        .update-time {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 8px;
        }
        .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dotted #e8e0d0;
            font-size: 0.9rem;
        }
        .stat-row:last-child {
            border-bottom: none;
        }
        .stat-val {
            font-weight: 700;
            color: var(--coral);
        }
        .star-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .star-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            padding-bottom: 16px;
        }
        .star-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .star-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }
        .star-card h4 {
            margin-top: 12px;
            font-size: 1rem;
            font-weight: 600;
        }
        .star-card p {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-top: 2px;
        }
        .plot-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        .plot-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--teal);
            transition: var(--transition);
        }
        .plot-card:hover {
            box-shadow: var(--shadow-md);
            border-left-color: var(--coral);
        }
        .plot-card h4 {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        .plot-card p {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.7;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .detail-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            gap: 16px;
            padding: 16px;
            align-items: flex-start;
        }
        .detail-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .detail-card img {
            width: 120px;
            height: 170px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .detail-info h4 {
            font-weight: 600;
            margin-bottom: 6px;
        }
        .detail-info p {
            font-size: 0.8rem;
            color: var(--text-gray);
            line-height: 1.6;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #f5ece0;
            transition: var(--transition);
        }
        .comment-item:hover {
            border-color: var(--teal);
        }
        .comment-user {
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }
        .comment-text {
            font-size: 0.85rem;
            color: var(--text-dark);
            line-height: 1.7;
        }
        .comment-time {
            font-size: 0.72rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .app-download-section {
            background: linear-gradient(135deg, #fdf6e8 0%, #fef9f0 40%, #f0fafa 100%);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: center;
        }
        .app-download-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .app-download-section>p {
            color: var(--text-gray);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }
        .app-download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .app-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            border: 2px solid #e8dcc8;
            padding: 14px 22px;
            border-radius: 30px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }
        .app-download-btn:hover {
            border-color: var(--coral);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            background: #fffdf6;
        }
        .app-download-btn .app-icon {
            flex-shrink: 0;
        }
        .bottom-footer {
            width: 100%;
            background: #2c3e50;
            color: #ccc;
            padding: 40px 20px 24px;
            text-align: center;
        }
        .bottom-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 16px;
        }
        .bottom-footer .footer-links a {
            color: #bbb;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .bottom-footer .footer-links a:hover {
            color: #fff;
        }
        .bottom-footer .footer-brand {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .bottom-footer .footer-copy {
            font-size: 0.78rem;
            color: #999;
        }
        .bottom-footer .mobile-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--teal);
            font-weight: 500;
            text-decoration: underline;
            font-size: 0.85rem;
        }
        @media (max-width: 1200px) {
            .two-col-layout {
                grid-template-columns: 1fr 300px;
                gap: 20px;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            .star-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .banner-carousel {
                height: 380px;
            }
            .banner-content h2 {
                font-size: 2rem;
            }
            .banner-overlay {
                padding: 0 36px;
            }
        }
        @media (max-width: 900px) {
            .two-col-layout {
                grid-template-columns: 1fr;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .detail-grid {
                grid-template-columns: 1fr;
            }
            .plot-grid {
                grid-template-columns: 1fr;
            }
            .intro-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 16px 20px;
                box-shadow: var(--shadow-lg);
                gap: 4px;
                z-index: 999;
            }
            .nav-links.mobile-open a {
                display: block;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .banner-carousel {
                height: 300px;
            }
            .banner-content h2 {
                font-size: 1.5rem;
            }
            .banner-content p {
                font-size: 0.85rem;
            }
            .banner-overlay {
                padding: 0 20px;
            }
            .banner-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 600px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .movie-card img {
                height: 200px;
            }
            .movie-card-body {
                padding: 10px;
            }
            .movie-card-body h4 {
                font-size: 0.82rem;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .star-card img {
                height: 180px;
            }
            .intro-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .detail-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .detail-card img {
                width: 100px;
                height: 140px;
            }
            .weekly-rank .rank-card {
                flex: 0 0 150px;
            }
            .weekly-rank .rank-card img {
                height: 200px;
            }
            .banner-carousel {
                height: 240px;
            }
            .banner-content h2 {
                font-size: 1.2rem;
            }
            .banner-content p {
                font-size: 0.75rem;
                margin-bottom: 12px;
            }
            .banner-overlay {
                padding: 0 14px;
            }
            .banner-arrow {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .banner-arrow.prev {
                left: 6px;
            }
            .banner-arrow.next {
                right: 6px;
            }
            .app-download-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .total-read-num {
                font-size: 2.2rem;
            }
            .section-spacing {
                padding: 32px 0;
            }
            .nav-brand h1 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 400px) {
            .movie-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .movie-card img {
                height: 160px;
            }
            .star-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .star-card img {
                height: 140px;
            }
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .rank-card {
                flex: 0 0 130px;
            }
            .rank-card img {
                height: 170px;
            }
            .banner-carousel {
                height: 200px;
            }
            .banner-content h2 {
                font-size: 1rem;
            }
        }