:root {
            --color-yellow: #fbffb1;
            --color-pink-light: #ffccfc;
            --color-pink: #ffa8ec;
            --color-purple: #eb76ff;
            --color-purple-dark: #c44de0;
            --color-bg: #fdfdff;
            --color-surface: #ffffff;
            --color-text: #2d2033;
            --color-text-secondary: #5c4a63;
            --color-border: #f0e6f4;
            --color-shadow: rgba(180, 120, 200, 0.10);
            --color-shadow-lg: rgba(180, 120, 200, 0.16);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --radius-xl: 28px;
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', 'Segoe UI', system-ui, -apple-system, sans-serif;
            --nav-height: 60px;
            --max-width: 1320px;
            --gap-section: clamp(28px, 4vw, 48px);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-purple);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(235, 118, 255, 0.45);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 9999;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            box-shadow: 0 6px 24px rgba(235, 118, 255, 0.65);
            transform: scale(1.05);
        }
        @media (max-width: 600px) {
            .back-to-top {
                bottom: 20px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid var(--color-border);
            box-shadow: 0 1px 8px var(--color-shadow);
            height: var(--nav-height);
            transition: var(--transition);
        }
        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 clamp(14px, 3vw, 28px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .site-brand h1 {
            font-size: clamp(1.15rem, 2.2vw, 1.45rem);
            font-weight: 800;
            letter-spacing: -0.3px;
            color: var(--color-purple-dark);
            white-space: nowrap;
            cursor: pointer;
            transition: var(--transition);
            margin: 0;
            line-height: 1;
        }
        .nav-links {
            display: none;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-links a {
            display: inline-block;
            padding: 7px 13px;
            border-radius: 22px;
            text-decoration: none;
            color: var(--color-text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background: var(--color-yellow);
            color: #3d1a44;
        }
        .user-status {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-purple-dark);
            background: var(--color-pink-light);
            padding: 7px 16px;
            border-radius: 24px;
            transition: var(--transition);
            border: 1.5px solid transparent;
        }
        .user-status:hover {
            border-color: var(--color-purple);
            background: #fff;
        }
        .user-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #eb76ff, #ffa8ec);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #fff;
            font-weight: 700;
        }
        .mobile-nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            z-index: 1001;
            background: none;
            border: none;
            width: 34px;
            height: 28px;
            justify-content: center;
            align-items: center;
        }
        .mobile-nav-toggle span {
            display: block;
            width: 22px;
            height: 2.2px;
            border-radius: 3px;
            background: var(--color-purple-dark);
            transition: var(--transition);
        }
        #mobile-menu-checkbox {
            display: none;
        }
        #mobile-menu-checkbox:checked~.mobile-nav-panel {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(20, 10, 25, 0.55);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        #mobile-menu-checkbox:checked~.mobile-nav-overlay {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: min(78vw, 320px);
            height: 100vh;
            background: #fff;
            z-index: 999;
            padding: 80px 24px 32px;
            transform: translateX(100%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s;
            box-shadow: -6px 0 30px var(--color-shadow-lg);
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
        }
        .mobile-nav-panel a {
            display: block;
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--color-text);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }
        .mobile-nav-panel a:hover {
            background: var(--color-yellow);
        }
        .mobile-nav-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--color-text-secondary);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        @media (min-width: 820px) {
            .nav-links {
                display: flex;
            }
            .mobile-nav-toggle,
            .mobile-nav-overlay,
            .mobile-nav-panel {
                display: none;
            }
        }
        .section {
            padding: var(--gap-section) clamp(14px, 3vw, 28px);
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: clamp(16px, 2.5vw, 24px);
        }
        .section-title {
            font-size: clamp(1.2rem, 2.6vw, 1.55rem);
            font-weight: 800;
            letter-spacing: -0.2px;
            position: relative;
            padding-left: 16px;
            color: var(--color-text);
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 70%;
            border-radius: 6px;
            background: linear-gradient(180deg, var(--color-purple), var(--color-pink));
        }
        .banner-section {
            padding: 0 clamp(14px, 3vw, 28px);
            max-width: var(--max-width);
            margin: clamp(10px, 2vw, 20px) auto 0;
        }
        .banner-carousel {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16 / 7;
            min-height: 200px;
            max-height: 420px;
            background: #f3eaf7;
            box-shadow: 0 8px 32px var(--color-shadow-lg);
        }
        .banner-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.7s ease-in-out;
            display: flex;
            align-items: center;
            z-index: 1;
        }
        .banner-slide.active {
            opacity: 1;
            z-index: 2;
        }
        .banner-slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30,10,40,0.65) 0%, rgba(20,5,30,0.35) 50%, rgba(30,10,40,0.6) 100%);
            z-index: 1;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            padding: clamp(18px, 4vw, 40px);
            color: #fff;
            max-width: 600px;
        }
        .banner-content h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            font-weight: 900;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
            line-height: 1.2;
        }
        .banner-content p {
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            opacity: 0.9;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
            line-height: 1.5;
        }
        .banner-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 8px;
        }
        .banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }
        .banner-dot.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,255,255,0.7);
        }
        @media (max-width: 600px) {
            .banner-carousel {
                aspect-ratio: 16/9;
                min-height: 170px;
            }
            .banner-content h2 {
                font-size: 1.15rem;
            }
        }
        .intro-card {
            background: linear-gradient(135deg,#fffdf7 0%,#fff 40%,#fef5ff 100%);
            border-radius: var(--radius-lg);
            padding: clamp(18px,3vw,28px) clamp(16px,3vw,30px);
            border: 1.5px solid #f9e8ff;
            text-align: center;
            box-shadow: 0 4px 18px var(--color-shadow);
            line-height: 1.8;
        }
        .intro-card p {
            font-size: clamp(0.9rem,1.6vw,1.02rem);
            color: var(--color-text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        .intro-card strong {
            color: var(--color-purple-dark);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(10px,2vw,18px);
        }
        @media (min-width:520px) {
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width:820px) {
            .card-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (min-width:1100px) {
            .card-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        .movie-card {
            background: var(--color-surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 3px 14px var(--color-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            border: 1px solid transparent;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px var(--color-shadow-lg);
            border-color: #f0d4f8;
        }
        .movie-card-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background: #f3edf7;
        }
        .movie-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
            display: block;
        }
        .movie-card:hover .movie-card-img-wrap img {
            transform: scale(1.06);
        }
        .movie-card-body {
            padding: 10px 11px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .movie-card-body h3 {
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: -0.1px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: var(--color-text);
        }
        .movie-meta {
            font-size: 0.7rem;
            color: var(--color-text-secondary);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: auto;
            padding-top: 4px;
        }
        .movie-tags span {
            font-size: 0.66rem;
            padding: 2px 7px;
            border-radius: 10px;
            background: var(--color-pink-light);
            color: #5c2d6e;
            font-weight: 600;
            white-space: nowrap;
        }
        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--gap-section);
        }
        @media (min-width: 960px) {
            .two-col-layout {
                grid-template-columns: 1fr 310px;
                align-items: start;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--gap-section);
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: clamp(16px, 2.5vw, 22px);
            box-shadow: 0 3px 16px var(--color-shadow);
            border: 1px solid var(--color-border);
        }
        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.1px;
            color: var(--color-text);
        }
        .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #f3eaf7;
            font-size: 0.85rem;
            gap: 8px;
        }
        .stat-row:last-child {
            border-bottom: none;
        }
        .stat-val {
            font-weight: 700;
            color: var(--color-purple-dark);
            white-space: nowrap;
        }
        .update-time {
            font-size: 0.72rem;
            color: #999;
            text-align: right;
            margin-top: 8px;
        }
        .star-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 3px 14px var(--color-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid transparent;
        }
        .star-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px var(--color-shadow-lg);
            border-color: #f0d4f8;
        }
        .star-card-img-wrap {
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #f8f2fb;
        }
        .star-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
            display: block;
        }
        .star-card-body {
            padding: 10px 10px 14px;
        }
        .star-card-body h3 {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: -0.1px;
        }
        .story-card {
            background: #fff;
            border-radius: var(--radius);
            padding: clamp(14px,2vw,20px);
            box-shadow: 0 3px 14px var(--color-shadow);
            border-left: 4px solid var(--color-purple);
            transition: var(--transition);
        }
        .story-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .story-card p {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
        }
        .comment-card {
            background: #fff;
            border-radius: var(--radius);
            padding: clamp(14px,2vw,18px);
            box-shadow: 0 2px 10px var(--color-shadow);
            border: 1px solid #f9f0fc;
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .comment-user {
            font-weight: 700;
            font-size: 0.85rem;
        }
        .comment-time {
            font-size: 0.7rem;
            color: #aaa;
            margin-left: auto;
            white-space: nowrap;
        }
        .comment-body {
            font-size: 0.82rem;
            color: #4a3d50;
            line-height: 1.65;
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(8px,1.5vw,14px);
        }
        @media (min-width:600px) {
            .download-grid {
                grid-template-columns: repeat(4,1fr);
            }
        }
        .download-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: var(--transition);
            background: #fff;
            border: 2px solid #eee;
            color: var(--color-text);
            white-space: nowrap;
            justify-content: center;
        }
        .download-btn:hover {
            border-color: var(--color-purple);
            background: #fefaff;
            transform: translateY(-2px);
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 10px;
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .rank-list li:hover {
            background: var(--color-yellow);
        }
        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--color-pink-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.78rem;
            flex-shrink: 0;
            color: #5c2d6e;
        }
        .rank-num.top1 {
            background: #ffb800;
            color: #fff;
        }
        .rank-num.top2 {
            background: #c0c0c0;
            color: #fff;
        }
        .rank-num.top3 {
            background: #cd9b6b;
            color: #fff;
        }
        .site-footer {
            width: 100%;
            background: #2d2033;
            color: #d5c8dc;
            padding: clamp(20px,3vw,32px) clamp(14px,3vw,28px);
            text-align: center;
            font-size: 0.8rem;
            line-height: 2;
            margin-top: var(--gap-section);
        }
        .site-footer a {
            color: #f0c8ff;
            text-decoration: none;
            font-weight: 600;
        }
        .site-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 8px;
        }