:root {
            --bg-light: #efecec;
            --accent: #62929a;
            --text-gray: #5c5757;
            --text-dark: #363434;
            --white: #ffffff;
            --shadow: 0 2px 12px rgba(54, 52, 52, 0.08);
            --shadow-lg: 0 8px 32px rgba(54, 52, 52, 0.12);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1320px;
            --nav-height: 64px;
            --font-xs: clamp(0.7rem, 1.2vw, 0.78rem);
            --font-sm: clamp(0.8rem, 1.4vw, 0.9rem);
            --font-base: clamp(0.9rem, 1.6vw, 1rem);
            --font-md: clamp(1rem, 1.8vw, 1.15rem);
            --font-lg: clamp(1.15rem, 2.2vw, 1.4rem);
            --font-xl: clamp(1.4rem, 2.8vw, 1.8rem);
            --font-2xl: clamp(1.6rem, 3.2vw, 2.2rem);
            --font-3xl: clamp(2rem, 4vw, 2.8rem);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-gray);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: var(--white);
            border-bottom: 1px solid rgba(98, 146, 154, 0.15);
            box-shadow: 0 1px 8px rgba(54, 52, 52, 0.06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: var(--nav-height);
        }
        .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-brand h1 {
            font-size: var(--font-lg);
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
            letter-spacing: -0.02em;
            margin: 0;
        }
        .nav-brand h1 span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(8px, 2vw, 20px);
            list-style: none;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0;
            margin: 0;
            mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-gray);
            font-size: var(--font-sm);
            font-weight: 500;
            white-space: nowrap;
            padding: 6px 10px;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--accent);
            background: rgba(98, 146, 154, 0.08);
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-user .avatar-placeholder {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #4a7a82);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: var(--font-sm);
            flex-shrink: 0;
        }
        .nav-user .login-text {
            font-size: var(--font-sm);
            color: var(--text-dark);
            font-weight: 500;
            white-space: nowrap;
        }
        @media (max-width: 640px) {
            .nav-user .login-text {
                display: none;
            }
            .nav-links {
                gap: 4px;
            }
            .nav-links a {
                padding: 5px 8px;
                font-size: var(--font-xs);
            }
        }
        .hamburger-checkbox {
            display: none;
        }
        .hamburger-label {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            flex-shrink: 0;
        }
        .hamburger-label span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: var(--transition);
        }
        @media (max-width: 768px) {
            .hamburger-label {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 20px;
                gap: 8px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
                border-bottom: 2px solid var(--accent);
                overflow-y: auto;
                max-height: 60vh;
                mask-image: none;
                -webkit-mask-image: none;
            }
            .hamburger-checkbox:checked~.nav-links {
                transform: translateY(0);
                opacity: 1;
            }
            .hamburger-checkbox:checked~.hamburger-label span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger-checkbox:checked~.hamburger-label span:nth-child(2) {
                opacity: 0;
            }
            .hamburger-checkbox:checked~.hamburger-label span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
            .nav-links a {
                width: 100%;
                padding: 10px 14px;
                font-size: var(--font-base);
                border-radius: var(--radius-sm);
            }
        }
        .main-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
        }
        .section {
            padding: clamp(32px, 5vw, 56px) 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: clamp(18px, 3vw, 28px);
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-title {
            font-size: var(--font-xl);
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            padding-left: 16px;
            letter-spacing: -0.01em;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 24px;
            background: var(--accent);
            border-radius: 2px;
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: var(--font-xs);
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .section-badge--hot {
            background: #e85d5d;
        }
        .view-all {
            color: var(--accent);
            text-decoration: none;
            font-size: var(--font-sm);
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }
        .view-all:hover {
            color: var(--text-dark);
            text-decoration: underline;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            height: clamp(280px, 40vw, 480px);
            overflow: hidden;
            border-radius: var(--radius);
            margin-top: 16px;
            box-shadow: var(--shadow-lg);
            background: var(--text-dark);
        }
        .banner-slides {
            display: flex;
            width: 300%;
            height: 100%;
            animation: bannerSlide 15s ease-in-out infinite;
        }
        .banner-slide {
            width: 33.333%;
            height: 100%;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-slide .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(54, 52, 52, 0.85) 0%, rgba(54, 52, 52, 0.2) 50%, rgba(54, 52, 52, 0.05) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(24px, 5vw, 48px);
            color: #fff;
        }
        .banner-overlay h2 {
            font-size: var(--font-2xl);
            font-weight: 700;
            margin-bottom: 6px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            letter-spacing: -0.02em;
        }
        .banner-overlay p {
            font-size: var(--font-base);
            opacity: 0.9;
            max-width: 560px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }
        .banner-dots {
            position: absolute;
            bottom: 16px;
            right: 24px;
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .banner-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            animation: dotPulse 5s ease-in-out infinite;
        }
        .banner-dots span:nth-child(2) {
            animation-delay: 1.66s;
        }
        .banner-dots span:nth-child(3) {
            animation-delay: 3.33s;
        }
        @keyframes bannerSlide {
            0%,
            28% {
                transform: translateX(0);
            }
            33%,
            61% {
                transform: translateX(-33.333%);
            }
            66%,
            94% {
                transform: translateX(-66.666%);
            }
            100% {
                transform: translateX(0);
            }
        }
        @keyframes dotPulse {
            0%,
            28% {
                background: rgba(255, 255, 255, 0.9);
                transform: scale(1.3);
            }
            33%,
            94% {
                background: rgba(255, 255, 255, 0.4);
                transform: scale(1);
            }
            100% {
                background: rgba(255, 255, 255, 0.9);
                transform: scale(1.3);
            }
        }
        .platform-intro {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .intro-card {
            background: var(--white);
            padding: clamp(20px, 3vw, 28px) 18px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .intro-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(98, 146, 154, 0.2);
        }
        .intro-card .intro-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--accent);
            display: block;
            font-weight: 700;
        }
        .intro-card h3 {
            font-size: var(--font-md);
            color: var(--text-dark);
            margin-bottom: 6px;
            font-weight: 600;
        }
        .intro-card p {
            font-size: var(--font-sm);
            color: var(--text-gray);
            line-height: 1.5;
        }
        .hot-movies-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .hot-movies-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 640px) {
            .hot-movies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        .movie-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(98, 146, 154, 0.25);
        }
        .movie-card img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            display: block;
            background: #dcd7d7;
        }
        .movie-card .movie-info {
            padding: 10px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .movie-info .movie-title {
            font-weight: 700;
            font-size: var(--font-sm);
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .movie-info .movie-meta {
            font-size: var(--font-xs);
            color: var(--text-gray);
            display: flex;
            flex-wrap: wrap;
            gap: 2px 8px;
            line-height: 1.4;
        }
        .movie-info .movie-type {
            display: inline-block;
            background: rgba(98, 146, 154, 0.12);
            color: var(--accent);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
            white-space: nowrap;
            align-self: flex-start;
        }
        .weekly-rank {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border-left: 4px solid #e85d5d;
        }
        .weekly-rank h3 {
            font-size: var(--font-md);
            color: var(--text-dark);
            margin-bottom: 14px;
            font-weight: 700;
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: var(--font-sm);
            color: var(--text-gray);
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .rank-list li:hover {
            background: rgba(98, 146, 154, 0.06);
        }
        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            background: #e8a020;
        }
        .rank-num.top2 {
            background: #8b8b8b;
        }
        .rank-num.top3 {
            background: #b87333;
        }
        .stars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        @media (max-width: 768px) {
            .stars-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .stars-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .star-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .star-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(98, 146, 154, 0.2);
        }
        .star-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
            background: #dcd7d7;
        }
        .star-card .star-info {
            padding: 12px 14px;
        }
        .star-info .star-name {
            font-weight: 700;
            font-size: var(--font-base);
            color: var(--text-dark);
        }
        .star-info .star-works {
            font-size: var(--font-xs);
            color: var(--text-gray);
            margin-top: 2px;
        }
        .plots-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        @media (max-width: 768px) {
            .plots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .plots-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }
        .plot-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow);
            border-top: 3px solid var(--accent);
            transition: var(--transition);
        }
        .plot-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .plot-card h4 {
            font-size: var(--font-base);
            color: var(--text-dark);
            margin-bottom: 6px;
            font-weight: 600;
        }
        .plot-card p {
            font-size: var(--font-sm);
            color: var(--text-gray);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        @media (max-width: 768px) {
            .detail-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }
        .detail-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .detail-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(98, 146, 154, 0.2);
        }
        .detail-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            display: block;
            background: #dcd7d7;
        }
        .detail-card .detail-info {
            padding: 14px 16px;
        }
        .detail-info h4 {
            font-weight: 700;
            font-size: var(--font-base);
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .detail-info .detail-meta {
            font-size: var(--font-xs);
            color: var(--text-gray);
            line-height: 1.5;
        }
        .comment-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 24px;
            align-items: start;
        }
        @media (max-width: 900px) {
            .comment-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 16px 18px;
            box-shadow: var(--shadow);
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }
        .comment-item:hover {
            box-shadow: var(--shadow-lg);
        }
        .comment-item .comment-user {
            font-weight: 600;
            font-size: var(--font-sm);
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .comment-item .comment-text {
            font-size: var(--font-sm);
            color: var(--text-gray);
            line-height: 1.6;
        }
        .comment-item .comment-time {
            font-size: var(--font-xs);
            color: #999;
            margin-top: 4px;
        }
        .sidebar-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: sticky;
            top: calc(var(--nav-height) + 20px);
        }
        @media (max-width: 900px) {
            .sidebar-panel {
                position: static;
            }
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(98, 146, 154, 0.1);
        }
        .sidebar-card h3 {
            font-size: var(--font-md);
            color: var(--text-dark);
            margin-bottom: 12px;
            font-weight: 700;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .stat-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
            font-size: var(--font-sm);
            color: var(--text-gray);
        }
        .stat-value {
            font-weight: 700;
            color: var(--accent);
            font-size: var(--font-md);
        }
        .update-time {
            font-size: var(--font-xs);
            color: #999;
            margin-top: 8px;
            text-align: right;
        }
        .hot-stars-mini {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 640px) {
            .hot-stars-mini {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        .hot-star-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .hot-star-mini:hover {
            border-color: rgba(98, 146, 154, 0.3);
            transform: translateX(3px);
        }
        .hot-star-mini img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background: #dcd7d7;
        }
        .hot-star-mini .hs-name {
            font-weight: 600;
            font-size: var(--font-sm);
            color: var(--text-dark);
        }
        .hot-star-mini .hs-role {
            font-size: var(--font-xs);
            color: var(--text-gray);
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 768px) {
            .download-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 400px) {
            .download-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .download-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 2px solid transparent;
            cursor: pointer;
        }
        .download-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .download-card .app-icon {
            width: 44px;
            height: 44px;
            object-fit: contain;
        }
        .download-card span {
            font-weight: 600;
            font-size: var(--font-sm);
        }
        .download-card small {
            font-size: var(--font-xs);
            color: var(--text-gray);
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            font-size: var(--font-base);
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: var(--transition);
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-answer {
            padding: 0 20px 16px;
            font-size: var(--font-sm);
            color: var(--text-gray);
            line-height: 1.6;
            display: none;
        }
        .faq-checkbox {
            display: none;
        }
        .faq-checkbox:checked+.faq-question+.faq-answer {
            display: block;
        }
        .faq-checkbox:checked+.faq-question {
            color: var(--accent);
            background: rgba(98, 146, 154, 0.04);
        }
        .faq-arrow {
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--accent);
        }
        .faq-checkbox:checked+.faq-question .faq-arrow {
            transform: rotate(180deg);
        }
        .footer-nav {
            width: 100%;
            background: var(--text-dark);
            color: #ccc;
            padding: clamp(28px, 4vw, 40px) 0 20px;
            margin-top: clamp(32px, 5vw, 56px);
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 24px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: var(--font-base);
            margin-bottom: 10px;
            font-weight: 600;
        }
        .footer-col a,
        .footer-col p {
            display: block;
            color: #b0b0b0;
            text-decoration: none;
            font-size: var(--font-sm);
            margin-bottom: 6px;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 20px auto 0;
            padding: 16px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: var(--font-xs);
            color: #888;
        }
        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .text-accent {
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        @media (max-width: 480px) {
            .section {
                padding: 24px 0;
            }
            .section-title {
                font-size: var(--font-lg);
            }
        }
            @media (max-width:900px) {
                #hot-movies>div {
                    grid-template-columns: 1fr !important;
                }
                #hot-movies .weekly-rank {
                    position: static !important;
                    order: -1;
                }
            }