:root {
            --color-light: #e3e3e3;
            --color-red: #f95959;
            --color-blue: #455d7a;
            --color-dark: #233142;
            --color-white: #ffffff;
            --color-bg: #f5f5f5;
            --color-text: #333333;
            --color-text-light: #666666;
            --color-border: #e0e0e0;
            --color-star: #ffc107;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --transition: all 0.3s ease;
            --max-width: 1400px;
            --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', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: var(--color-dark);
            color: var(--color-white);
            height: var(--nav-height);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        .top-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .nav-logo h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-white);
            letter-spacing: 1px;
            white-space: nowrap;
            margin: 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-logo h1:hover {
            color: var(--color-red);
        }
        .nav-logo h1 span {
            color: var(--color-red);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        .nav-links a {
            color: var(--color-light);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 8px 14px;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover,
        .nav-links a:focus {
            background: rgba(255, 255, 255, 0.12);
            color: var(--color-white);
        }
        .nav-links a.nav-hot {
            background: var(--color-red);
            color: #fff;
            font-weight: 600;
            animation: pulse-nav 2s infinite;
        }
        @keyframes pulse-nav {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(249, 89, 89, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(249, 89, 89, 0);
            }
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            cursor: pointer;
            padding: 6px 16px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .nav-user:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            flex-shrink: 0;
        }
        .nav-user-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4caf50;
            flex-shrink: 0;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-shrink: 0;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .main-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 20px;
            display: flex;
            gap: 24px;
        }
        .main-content {
            flex: 1;
            min-width: 0;
        }
        .sidebar {
            width: 340px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .banner-section {
            margin-bottom: 28px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-lg);
            background: var(--color-dark);
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 21/9;
            min-height: 320px;
            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;
        }
        .banner-slide.active {
            opacity: 1;
            z-index: 1;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(35, 49, 66, 0.85) 30%, rgba(35, 49, 66, 0.3) 70%, rgba(35, 49, 66, 0.1) 100%);
            z-index: 2;
            display: flex;
            align-items: center;
            padding: 40px 60px;
        }
        .banner-text {
            color: #fff;
            max-width: 520px;
            z-index: 3;
        }
        .banner-text h2 {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }
        .banner-text p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .banner-text .banner-meta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 16px;
        }
        .banner-text .banner-meta span {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.8rem;
        }
        .banner-btn {
            display: inline-block;
            background: var(--color-red);
            color: #fff;
            padding: 12px 28px;
            border-radius: 24px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
        }
        .banner-btn:hover {
            background: #e84848;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 89, 89, 0.4);
        }
        .banner-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 4;
        }
        .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: var(--color-red);
            width: 28px;
            border-radius: 5px;
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            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;
        }
        .banner-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        .banner-arrow.prev {
            left: 16px;
        }
        .banner-arrow.next {
            right: 16px;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 3px solid var(--color-red);
            position: relative;
        }
        .section-title h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: 0.5px;
            margin: 0;
            white-space: nowrap;
        }
        .section-title .title-icon {
            width: 6px;
            height: 28px;
            background: var(--color-red);
            border-radius: 3px;
            flex-shrink: 0;
        }
        .section-title .title-badge {
            font-size: 0.75rem;
            background: var(--color-red);
            color: #fff;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .section-title .title-link {
            margin-left: auto;
            font-size: 0.85rem;
            color: var(--color-blue);
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
            transition: var(--transition);
        }
        .section-title .title-link:hover {
            color: var(--color-red);
        }
        .platform-intro {
            display: flex;
            gap: 28px;
            align-items: center;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
            border-left: 5px solid var(--color-blue);
        }
        .platform-intro-text {
            flex: 1;
        }
        .platform-intro-text h3 {
            font-size: 1.35rem;
            color: var(--color-dark);
            margin-bottom: 10px;
            font-weight: 700;
        }
        .platform-intro-text p {
            color: var(--color-text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .platform-intro-image {
            flex-shrink: 0;
            width: 260px;
            height: 180px;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .platform-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }
        .movie-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .movie-card-img {
            width: 100%;
            aspect-ratio: 2/3;
            overflow: hidden;
            position: relative;
            background: var(--color-light);
        }
        .movie-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .movie-card-img img {
            transform: scale(1.06);
        }
        .movie-card-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--color-red);
            color: #fff;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
        }
        .movie-card-rating {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--color-star);
            padding: 3px 7px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
        }
        .movie-card-info {
            padding: 10px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .movie-card-info h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-card-info .movie-meta {
            font-size: 0.7rem;
            color: var(--color-text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .movie-card-info .movie-meta span {
            background: var(--color-light);
            padding: 2px 7px;
            border-radius: 3px;
            font-size: 0.65rem;
        }
        .movie-card-info .movie-stars {
            font-size: 0.7rem;
            color: var(--color-blue);
            font-weight: 500;
        }
        .weekly-ranking {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
        }
        .ranking-list {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 8px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--color-blue) transparent;
        }
        .ranking-list::-webkit-scrollbar {
            height: 5px;
        }
        .ranking-list::-webkit-scrollbar-thumb {
            background: var(--color-blue);
            border-radius: 10px;
        }
        .ranking-item {
            flex-shrink: 0;
            width: 140px;
            text-align: center;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }
        .ranking-item:hover {
            transform: translateY(-3px);
        }
        .ranking-item .rank-num {
            position: absolute;
            top: -8px;
            left: 6px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-red);
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            box-shadow: 0 2px 6px rgba(249, 89, 89, 0.5);
        }
        .ranking-item:nth-child(1) .rank-num {
            background: #ff6b6b;
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }
        .ranking-item:nth-child(2) .rank-num {
            background: #ff8e53;
        }
        .ranking-item:nth-child(3) .rank-num {
            background: #ffb347;
        }
        .ranking-item img {
            width: 140px;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
        }
        .ranking-item .rank-title {
            font-size: 0.78rem;
            font-weight: 600;
            margin-top: 6px;
            color: var(--color-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .stars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }
        .star-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }
        .star-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .star-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: var(--color-light);
        }
        .star-card .star-info {
            padding: 14px;
        }
        .star-card .star-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0 0 4px 0;
        }
        .star-card .star-info p {
            font-size: 0.78rem;
            color: var(--color-text-light);
            margin: 0;
        }
        .hot-stars-scroll {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 8px;
            margin-bottom: 28px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--color-red) transparent;
        }
        .hot-stars-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .hot-stars-scroll::-webkit-scrollbar-thumb {
            background: var(--color-red);
            border-radius: 10px;
        }
        .hot-star-item {
            flex-shrink: 0;
            width: 120px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }
        .hot-star-item:hover {
            transform: translateY(-3px);
        }
        .hot-star-item img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--color-red);
            box-shadow: var(--shadow-sm);
        }
        .hot-star-item .hs-name {
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 6px;
            color: var(--color-dark);
        }
        .plot-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }
        .plot-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 18px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--color-blue);
            transition: var(--transition);
            cursor: pointer;
        }
        .plot-card:hover {
            box-shadow: var(--shadow-md);
            border-left-color: var(--color-red);
        }
        .plot-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0 0 8px 0;
        }
        .plot-card p {
            font-size: 0.85rem;
            color: var(--color-text-light);
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .detail-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }
        .detail-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 16px;
            transition: var(--transition);
            cursor: pointer;
        }
        .detail-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .detail-card img {
            width: 100px;
            height: 140px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            background: var(--color-light);
        }
        .detail-card .detail-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-dark);
            margin: 0 0 6px 0;
        }
        .detail-card .detail-info p {
            font-size: 0.78rem;
            color: var(--color-text-light);
            line-height: 1.5;
            margin: 0 0 4px 0;
        }
        .detail-card .detail-info .detail-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 6px;
        }
        .detail-card .detail-info .detail-tags span {
            font-size: 0.65rem;
            background: var(--color-light);
            padding: 2px 8px;
            border-radius: 10px;
            color: var(--color-blue);
            font-weight: 500;
        }
        .sidebar-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-dark);
            margin: 0 0 14px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--color-light);
        }
        .total-reads {
            text-align: center;
            padding: 10px 0;
        }
        .total-reads .big-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-red);
            line-height: 1;
        }
        .total-reads .update-time {
            font-size: 0.75rem;
            color: var(--color-text-light);
            margin-top: 6px;
        }
        .stat-row {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
        }
        .stat-item {
            flex: 1;
            text-align: center;
            background: var(--color-bg);
            border-radius: var(--radius-sm);
            padding: 14px 10px;
        }
        .stat-item .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-blue);
        }
        .stat-item .stat-label {
            font-size: 0.7rem;
            color: var(--color-text-light);
            margin-top: 2px;
        }
        .sidebar-comment {
            padding: 10px 0;
            border-bottom: 1px solid var(--color-border);
        }
        .sidebar-comment:last-child {
            border-bottom: none;
        }
        .sidebar-comment .comment-user {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-comment .comment-user .avatar-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--color-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
        }
        .sidebar-comment .comment-text {
            font-size: 0.78rem;
            color: var(--color-text-light);
            line-height: 1.5;
            margin-top: 4px;
        }
        .app-download-section {
            background: var(--color-dark);
            color: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            margin-bottom: 28px;
            text-align: center;
            box-shadow: var(--shadow-md);
        }
        .app-download-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .app-download-section .app-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 24px;
        }
        .app-download-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 700px;
            margin: 0 auto;
        }
        .app-download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }
        .app-download-btn:hover {
            background: var(--color-red);
            border-color: var(--color-red);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 89, 89, 0.4);
        }
        .app-download-btn .app-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
        }
        .bottom-nav {
            width: 100%;
            background: var(--color-dark);
            color: var(--color-light);
            padding: 40px 20px 24px;
            margin-top: 20px;
        }
        .bottom-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .bottom-nav-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .bottom-nav-col a {
            display: block;
            color: var(--color-light);
            text-decoration: none;
            font-size: 0.82rem;
            padding: 4px 0;
            transition: var(--transition);
        }
        .bottom-nav-col a:hover {
            color: var(--color-red);
            padding-left: 6px;
        }
        .bottom-copyright {
            max-width: var(--max-width);
            margin: 20px auto 0;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .bottom-copyright a {
            color: var(--color-red);
            text-decoration: none;
            font-weight: 500;
        }
        .bottom-copyright a:hover {
            text-decoration: underline;
        }
        .desktop-comments { display: block; }
        .mobile-comments { display: none; }
        @media (max-width: 1200px) {
            .movie-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .sidebar {
                width: 280px;
            }
            .app-download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 992px) {
            .main-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .plot-list,
            .detail-list {
                grid-template-columns: 1fr;
            }
            .platform-intro {
                flex-direction: column;
                text-align: center;
            }
            .platform-intro-image {
                width: 100%;
                height: 200px;
            }
            .bottom-nav-inner {
                grid-template-columns: repeat(2, 1fr);
            }
            .banner-overlay {
                padding: 24px 30px;
            }
            .banner-text h2 {
                font-size: 1.5rem;
            }
            .banner-carousel {
                aspect-ratio: 16/9;
                min-height: 240px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.mobile-open {
                display: flex;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background: var(--color-dark);
                flex-direction: column;
                padding: 16px;
                gap: 4px;
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }
            .desktop-comments {
                display: none;
            }
            .mobile-comments {
                display: block;
            }
        }
        @media (max-width: 768px) {
            .movie-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: 10px;
            }
            .banner-carousel {
                aspect-ratio: 4/3;
                min-height: 200px;
            }
            .banner-overlay {
                padding: 16px 20px;
            }
            .banner-text h2 {
                font-size: 1.2rem;
            }
            .banner-text p {
                font-size: 0.8rem;
            }
            .banner-arrow {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .nav-logo h1 {
                font-size: 1.1rem;
            }
            .section-title h2 {
                font-size: 1.15rem;
            }
            .ranking-item {
                width: 110px;
            }
            .ranking-item img {
                width: 110px;
                height: 155px;
            }
            .star-card img {
                height: 160px;
            }
            .detail-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .detail-card img {
                width: 80px;
                height: 110px;
            }
            .bottom-nav-inner {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .movie-card-info h4 {
                font-size: 0.75rem;
            }
            .movie-card-info .movie-meta {
                font-size: 0.65rem;
            }
            .total-reads .big-number {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .stars-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .app-download-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .main-wrapper {
                padding: 10px;
            }
            .platform-intro {
                padding: 16px;
            }
            .banner-carousel {
                min-height: 170px;
            }
            .banner-text h2 {
                font-size: 1rem;
            }
            .movie-card-info {
                padding: 6px 8px;
            }
            .movie-card-info h4 {
                font-size: 0.7rem;
            }
            .movie-card-info .movie-meta span {
                font-size: 0.6rem;
                padding: 1px 5px;
            }
            .star-card img {
                height: 130px;
            }
            .nav-logo h1 {
                font-size: 1rem;
            }
            .nav-user {
                font-size: 0.75rem;
                padding: 4px 10px;
            }
            .section-title h2 {
                font-size: 1rem;
            }
        }