:root {
            --color-warm-cream: #fbead1;
            --color-soft-pink: #f5d9d9;
            --color-light-blush: #fceaea;
            --color-teal: #5ba19b;
            --color-teal-dark: #4a8b85;
            --color-teal-light: #7dbdb8;
            --color-white: #ffffff;
            --color-dark: #2c2c2c;
            --color-gray-50: #fafafa;
            --color-gray-100: #f5f5f5;
            --color-gray-200: #eeeeee;
            --color-gray-300: #e0e0e0;
            --color-gray-400: #bdbdbd;
            --color-gray-500: #9e9e9e;
            --color-gray-600: #757575;
            --color-gray-700: #555555;
            --color-gray-800: #333333;
            --color-text: #2c2c2c;
            --color-text-secondary: #555555;
            --color-accent: #e87461;
            --color-star: #f5a623;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.06);
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1320px;
            --nav-height: 60px;
            --nav-height-mobile: 54px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height-mobile);
            font-size: 15px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background-color: #fdf8f4;
            color: var(--color-text);
            line-height: 1.6;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-gray-200);
            box-shadow: var(--shadow-sm);
            height: var(--nav-height-mobile);
            display: flex;
            align-items: center;
            transition: var(--transition-smooth);
        }
        .top-nav-inner {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            height: 100%;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            text-decoration: none;
        }
        .nav-brand h1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-teal);
            letter-spacing: -0.02em;
            white-space: nowrap;
            margin: 0;
            line-height: 1;
        }
        .nav-brand .brand-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-accent);
            flex-shrink: 0;
        }
        .nav-links {
            display: none;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links a {
            display: inline-block;
            padding: 7px 13px;
            text-decoration: none;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 20px;
            transition: var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            background: var(--color-light-blush);
            color: var(--color-teal-dark);
            outline: none;
        }
        .nav-user-status {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 22px;
            background: var(--color-light-blush);
            transition: var(--transition-fast);
            border: 1.5px solid transparent;
            white-space: nowrap;
        }
        .nav-user-status:hover {
            border-color: var(--color-teal-light);
            background: #fff;
        }
        .nav-user-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--color-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .nav-user-text {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text);
        }
        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: transparent;
            cursor: pointer;
            flex-shrink: 0;
            color: var(--color-text);
            transition: var(--transition-fast);
        }
        .mobile-menu-btn:active {
            background: var(--color-gray-100);
        }
        .mobile-menu-btn svg {
            width: 22px;
            height: 22px;
        }
        .mobile-nav-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            border-bottom: 2px solid var(--color-teal-light);
            box-shadow: var(--shadow-lg);
            padding: 12px 16px;
            z-index: 999;
            flex-wrap: wrap;
            gap: 6px;
        }
        .mobile-nav-dropdown.active {
            display: flex;
        }
        .mobile-nav-dropdown a {
            display: inline-block;
            padding: 8px 14px;
            text-decoration: none;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 18px;
            background: var(--color-gray-100);
            transition: var(--transition-fast);
            white-space: nowrap;
        }
        .mobile-nav-dropdown a:hover,
        .mobile-nav-dropdown a:focus-visible {
            background: var(--color-teal);
            color: #fff;
            outline: none;
        }
        .banner-section {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 16px 16px 0;
            position: relative;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16 / 7;
            min-height: 200px;
            max-height: 420px;
            background: var(--color-gray-200);
            box-shadow: var(--shadow-lg);
        }
        .banner-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            flex-shrink: 0;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }
        .banner-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            z-index: 2;
            color: #fff;
        }
        .banner-overlay h2 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
        .banner-overlay p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin: 0;
            line-height: 1.4;
        }
        .banner-tag {
            display: inline-block;
            background: var(--color-accent);
            color: #fff;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .banner-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 12px 0;
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }
        .banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition-fast);
            border: 2px solid transparent;
        }
        .banner-dot.active {
            background: #fff;
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.25);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--color-text);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
            box-shadow: var(--shadow-md);
            opacity: 0;
        }
        .banner-carousel:hover .banner-arrow {
            opacity: 1;
        }
        .banner-arrow.prev {
            left: 10px;
        }
        .banner-arrow.next {
            right: 10px;
        }
        .banner-arrow:active {
            background: #fff;
            transform: translateY(-50%) scale(0.93);
        }
        .section-container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 24px 16px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 22px;
            border-radius: 2px;
            background: var(--color-teal);
            flex-shrink: 0;
        }
        .section-subtitle {
            font-size: 0.8rem;
            color: var(--color-gray-500);
            font-weight: 400;
        }
        .section-more {
            font-size: 0.85rem;
            color: var(--color-teal);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition-fast);
            white-space: nowrap;
        }
        .section-more:hover {
            color: var(--color-teal-dark);
            text-decoration: underline;
        }
        .intro-card {
            background: var(--color-warm-cream);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .intro-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-teal-dark);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .intro-card p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .intro-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 14px;
        }
        .intro-feature-item {
            background: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--color-teal-dark);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }
        .hot-movies-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .movie-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }
        .movie-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-teal-light);
        }
        .movie-card-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background: var(--color-gray-200);
        }
        .movie-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .movie-card-img-wrap img {
            transform: scale(1.06);
        }
        .movie-card-rating {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
            letter-spacing: 0.02em;
        }
        .movie-card-body {
            padding: 10px 12px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .movie-card-body h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-card-meta {
            font-size: 0.7rem;
            color: var(--color-gray-500);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-card-tag {
            display: inline-block;
            background: var(--color-light-blush);
            color: var(--color-teal-dark);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.68rem;
            font-weight: 500;
            align-self: flex-start;
            margin-top: 2px;
        }
        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            align-items: start;
        }
        .main-col {
            min-width: 0;
        }
        .side-col {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .side-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-gray-200);
        }
        .side-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .side-card h4::before {
            content: '';
            width: 3px;
            height: 16px;
            border-radius: 2px;
            background: var(--color-teal);
            flex-shrink: 0;
        }
        .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 7px 0;
            border-bottom: 1px dashed var(--color-gray-200);
            font-size: 0.85rem;
        }
        .stat-row:last-child {
            border-bottom: none;
        }
        .stat-value {
            font-weight: 700;
            color: var(--color-teal-dark);
        }
        .update-time {
            font-size: 0.7rem;
            color: var(--color-gray-500);
            margin-top: 6px;
            text-align: right;
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            padding: 6px 0;
            border-bottom: 1px solid var(--color-gray-100);
        }
        .rank-list li:last-child {
            border-bottom: none;
        }
        .rank-num {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--color-teal);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .rank-num.top {
            background: var(--color-accent);
        }
        .rank-list li span:last-child {
            color: var(--color-text-secondary);
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .star-cards-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .star-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
            cursor: pointer;
        }
        .star-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-soft-pink);
        }
        .star-card-img-wrap {
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background: var(--color-gray-200);
        }
        .star-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .star-card:hover .star-card-img-wrap img {
            transform: scale(1.05);
        }
        .star-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 8px 2px;
            color: var(--color-text);
        }
        .star-card p {
            font-size: 0.7rem;
            color: var(--color-gray-500);
            padding: 0 8px 10px;
        }
        .story-cards-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .story-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 16px;
            box-shadow: var(--shadow-sm);
            border-left: 3px solid var(--color-teal);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .story-card:hover {
            box-shadow: var(--shadow-md);
            border-left-color: var(--color-accent);
            transform: translateX(2px);
        }
        .story-card h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }
        .story-card p {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .story-card .story-meta {
            font-size: 0.7rem;
            color: var(--color-gray-500);
            margin-top: 4px;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .comment-item {
            background: #fff;
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-gray-100);
            transition: var(--transition-fast);
        }
        .comment-item:hover {
            box-shadow: var(--shadow-md);
        }
        .comment-item .comment-user {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-teal-dark);
            margin-bottom: 4px;
        }
        .comment-item .comment-text {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            line-height: 1.65;
        }
        .comment-item .comment-date {
            font-size: 0.7rem;
            color: var(--color-gray-400);
            margin-top: 4px;
        }
        .app-download-section {
            background: linear-gradient(135deg, var(--color-warm-cream) 0%, var(--color-light-blush) 50%, var(--color-soft-pink) 100%);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }
        .app-download-section h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-teal-dark);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .app-download-section>p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-bottom: 16px;
        }
        .app-download-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .app-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 24px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition-smooth);
            border: 2px solid transparent;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: var(--shadow-sm);
        }
        .app-download-btn.android {
            background: #e8f5e9;
            color: #2e7d32;
            border-color: #c8e6c9;
        }
        .app-download-btn.android:hover {
            background: #c8e6c9;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .app-download-btn.ios {
            background: #f5f5f5;
            color: #333;
            border-color: #ddd;
        }
        .app-download-btn.ios:hover {
            background: #e0e0e0;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .app-download-btn.pc {
            background: #e8eaf6;
            color: #283593;
            border-color: #c5cae9;
        }
        .app-download-btn.pc:hover {
            background: #c5cae9;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .app-download-btn.mac {
            background: #fafafa;
            color: #444;
            border-color: #e0e0e0;
        }
        .app-download-btn.mac:hover {
            background: #e0e0e0;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .app-icon {
            flex-shrink: 0;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-gray-100);
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            padding: 14px 16px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            user-select: none;
        }
        .faq-question .faq-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--color-teal-light);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            font-weight: 700;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--color-accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 16px;
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 16px 14px;
        }
        .footer-nav {
            width: 100%;
            background: var(--color-dark);
            color: #ccc;
            padding: 28px 16px 20px;
            margin-top: 20px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .footer-col h5 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 0.01em;
        }
        .footer-col a {
            display: block;
            color: #aaa;
            text-decoration: none;
            font-size: 0.8rem;
            padding: 3px 0;
            transition: var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--color-teal-light);
        }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 16px auto 0;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.75rem;
            color: #888;
            grid-column: 1 / -1;
        }
        .footer-bottom a {
            color: var(--color-teal-light);
            text-decoration: none;
            font-weight: 500;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        @media (min-width: 600px) {
            .hot-movies-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            .star-cards-row {
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }
            .story-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .banner-overlay h2 {
                font-size: 1.7rem;
            }
            .banner-overlay p {
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .footer-inner {
                grid-template-columns: repeat(3, 1fr);
            }
            .two-col-layout {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .nav-links {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
            .mobile-nav-dropdown {
                display: none !important;
            }
            html {
                scroll-padding-top: var(--nav-height);
            }
            .top-nav {
                height: var(--nav-height);
            }
            .nav-brand h1 {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 960px) {
            .hot-movies-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 16px;
            }
            .story-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .banner-carousel {
                aspect-ratio: 21 / 8;
                max-height: 440px;
            }
            .banner-overlay {
                padding: 36px 28px;
            }
            .banner-overlay h2 {
                font-size: 2rem;
            }
            .banner-overlay p {
                font-size: 1rem;
            }
            .section-container {
                padding: 28px 20px;
            }
            .section-title {
                font-size: 1.45rem;
            }
            .two-col-layout {
                grid-template-columns: 1fr 340px;
                gap: 24px;
            }
            .footer-inner {
                grid-template-columns: repeat(4, 1fr);
                gap: 28px;
            }
            .movie-card-body h4 {
                font-size: 0.85rem;
            }
            .movie-card-meta {
                font-size: 0.7rem;
            }
        }
        @media (min-width: 1200px) {
            .section-container {
                padding: 32px 24px;
            }
            .two-col-layout {
                grid-template-columns: 1fr 380px;
                gap: 28px;
            }
            .banner-carousel {
                max-height: 460px;
            }
        }
        @media print {
            .top-nav,
            .footer-nav,
            .banner-arrow,
            .banner-dots {
                display: none !important;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }