
:root {
    --color-cream: #fff5a5;
    --color-orange: #ffaa64;
    --color-coral: #ff8264;
    --color-red: #ff6464;
    --color-white: #ffffff;
    --color-dark: #1a1a2e;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-border: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --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', 'Helvetica Neue', sans-serif;
    background-color: #fafaf8;
    color: #2c2c2c;
    line-height: 1.6;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== 顶部导航 ========== */
.top-nav {
    width: 100%;
    height: var(--nav-height);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.top-nav-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-brand {
    flex-shrink: 0;
}
.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 1px;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
}
.nav-brand h1 span {
    color: var(--color-coral);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}
.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-links a:hover,
.nav-links a:focus {
    background: var(--color-cream);
    color: #d44;
}
.nav-links a.active {
    background: var(--color-red);
    color: #fff;
}
.nav-user-status {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-user-status:hover {
    background: var(--color-cream);
    border-color: var(--color-orange);
}
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    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: 2.5px;
    background: #444;
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== Banner 轮播 ========== */
.banner-section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 20px 10px;
    position: relative;
}
.banner-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 6;
    min-height: 200px;
    background: #e8e8e8;
    box-shadow: var(--shadow-lg);
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.carousel-caption h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.carousel-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.carousel-dots {
    position: absolute;
    bottom: 14px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    opacity: 0.7;
}
.carousel-dots button.active {
    background: #fff;
    opacity: 1;
    transform: scale(1.25);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 5;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 700;
}
.carousel-arrow:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.carousel-arrow.prev {
    left: 16px;
}
.carousel-arrow.next {
    right: 16px;
}

/* ========== 通用区块 ========== */
.section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.section-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    padding-left: 16px;
    line-height: 1.3;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--color-red);
}
.section-subtitle {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.tag-hot {
    background: #ffe0e0;
    color: #d44;
}
.tag-new {
    background: #e0f0ff;
    color: #3a7bd5;
}
.tag-rank {
    background: #fff3d6;
    color: #c7850a;
}

/* ========== 平台介绍 ========== */
.platform-intro {
    background: linear-gradient(135deg, #fffef9 0%, #fff8ed 50%, #fff5e8 100%);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    text-align: center;
    border: 1px solid #fde8d0;
    margin-bottom: 10px;
}
.platform-intro h2 {
    font-size: 1.5rem;
    color: #c0392b;
    margin-bottom: 10px;
    font-weight: 700;
}
.platform-intro p {
    color: #555;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== 两栏布局容器 ========== */
.content-layout {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 20px;
}
.content-main {
    flex: 1;
    min-width: 0;
}
.content-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========== 热门影视网格 ========== */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.movie-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #ffe0d0;
}
.movie-card-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee;
}
.movie-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.movie-card:hover .movie-card-img-wrap img {
    transform: scale(1.06);
}
.movie-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.movie-card-info {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.movie-card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movie-card-info .meta-row {
    font-size: 0.73rem;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.4;
}
.movie-card-info .meta-row span {
    background: #f5f5f5;
    padding: 2px 7px;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 0.7rem;
}
.movie-card-info .meta-type {
    color: var(--color-coral);
    font-weight: 600;
    font-size: 0.72rem;
}

/* ========== 明星卡片 ========== */
.star-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.star-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    cursor: pointer;
}
.star-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.star-card-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eee;
}
.star-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.star-card:hover .star-card-img-wrap img {
    transform: scale(1.05);
}
.star-card-info {
    padding: 12px 10px;
}
.star-card-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}
.star-card-info p {
    font-size: 0.73rem;
    color: #888;
    margin-top: 2px;
}

/* ========== 剧情介绍卡片 ========== */
.plot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.plot-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-orange);
    transition: var(--transition);
    cursor: pointer;
}
.plot-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-red);
    transform: translateX(2px);
}
.plot-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.plot-card p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 电影详情卡片 ========== */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.detail-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 14px;
    padding: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    align-items: flex-start;
}
.detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #ffe0d0;
}
.detail-card-img-wrap {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #eee;
}
.detail-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detail-card-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.detail-card-info .detail-meta {
    font-size: 0.73rem;
    color: #777;
    line-height: 1.5;
}
.detail-card-info .detail-desc {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.5;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 侧边栏 ========== */
.sidebar-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}
.sidebar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card h3 .icon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
    flex-shrink: 0;
}
.reading-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reading-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #fefefe;
    border-radius: var(--radius-sm);
    border: 1px solid #f2f2f2;
}
.reading-stat-item .stat-label {
    font-size: 0.82rem;
    color: #666;
}
.reading-stat-item .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-red);
}
.reading-update-time {
    font-size: 0.7rem;
    color: #aaa;
    text-align: right;
    margin-top: 4px;
}
.rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rank-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.85rem;
    background: #fafafa;
}
.rank-list li:hover {
    background: #fff8f0;
}
.rank-num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    flex-shrink: 0;
    color: #fff;
}
.rank-num.top1 { background: #e74c3c; }
.rank-num.top2 { background: #f39c12; }
.rank-num.top3 { background: #e67e22; }
.rank-num.normal { background: #b0b0b0; }
.hot-star-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: var(--transition);
}
.hot-star-mini:last-child {
    border-bottom: none;
}
.hot-star-mini:hover {
    background: #fffdf8;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: var(--radius-sm);
}
.hot-star-mini-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}
.hot-star-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hot-star-mini-info {
    font-size: 0.82rem;
}
.hot-star-mini-info strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.85rem;
}
.hot-star-mini-info span {
    color: #999;
    font-size: 0.7rem;
}

/* ========== 评论区域 ========== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comment-item {
    background: #fefefe;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}
.comment-item:hover {
    border-color: #ffe0d0;
    background: #fffefa;
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-user {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}
.comment-time {
    font-size: 0.7rem;
    color: #aaa;
    margin-left: auto;
}
.comment-body {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
}

/* ========== APP下载区域 ========== */
.app-download-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: #fff;
    text-align: center;
}
.app-download-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.app-download-section .app-subtitle {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 20px;
}
.app-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.app-download-btn.android {
    background: #3ddc84;
    color: #1a1a2e;
    border-color: #3ddc84;
}
.app-download-btn.android:hover {
    background: #2cc573;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.35);
}
.app-download-btn.ios {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}
.app-download-btn.ios:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.app-download-btn.pc {
    background: #52616b;
    color: #fff;
    border-color: #52616b;
}
.app-download-btn.pc:hover {
    background: #3e4a53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 97, 107, 0.4);
}
.app-download-btn.mac {
    background: #333;
    color: #fff;
    border-color: #555;
}
.app-download-btn.mac:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}
.app-icon {
    flex-shrink: 0;
}

/* ========== 数据统计区 ========== */
.stats-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.stat-box {
    flex: 1;
    min-width: 100px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}
.stat-box:hover {
    box-shadow: var(--shadow-md);
    border-color: #ffe0d0;
}
.stat-box .stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}
.stat-box .stat-desc {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
}

/* ========== 底部导航 ========== */
.footer-nav {
    width: 100%;
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 20px 20px;
    margin-top: 20px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 6px;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--color-orange);
}
.footer-bottom {
    width: 100%;
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 16px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.78rem;
    color: #888;
}
.footer-bottom a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== 响应式 ========== */
@media (max-width: 1100px) {
    .content-layout {
        flex-direction: column;
    }
    .content-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }
    .content-sidebar .sidebar-card {
        flex: 1;
        min-width: 260px;
    }
    .movie-grid { grid-template-columns: repeat(3, 1fr); }
    .star-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-grid { grid-template-columns: 1fr 1fr; }
    .plot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        border-bottom: 2px solid #f0f0f0;
        z-index: 999;
        gap: 2px;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
    }
    .mobile-menu-btn { display: block; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .star-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .plot-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-card { flex-direction: row; }
    .detail-card-img-wrap { width: 80px; height: 110px; }
    .banner-carousel { aspect-ratio: 16 / 9; min-height: 160px; }
    .carousel-caption h2 { font-size: 1.2rem; }
    .carousel-caption p { font-size: 0.78rem; }
    .carousel-arrow { width: 30px; height: 30px; font-size: 0.9rem; }
    .content-sidebar { flex-direction: column; }
    .content-sidebar .sidebar-card { min-width: auto; }
    .stats-row { gap: 8px; }
    .stat-box { padding: 12px 8px; }
    .stat-box .stat-number { font-size: 1.2rem; }
    .app-download-btns { flex-direction: column; align-items: center; }
    .app-download-btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.2rem; }
    .top-nav-inner { gap: 10px; }
    .nav-brand h1 { font-size: 1.2rem; }
}
@media (max-width: 420px) {
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .movie-card-info h3 { font-size: 0.8rem; }
    .movie-card-info .meta-row { font-size: 0.65rem; }
    .star-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .section { padding: 20px 10px; }
    .content-layout { padding: 0 10px 15px; }
    .banner-section { padding: 12px 10px 6px; }
    .carousel-caption { padding: 20px 14px 14px; }
    .carousel-caption h2 { font-size: 1rem; }
    .footer-nav { padding: 24px 12px 14px; }
    .platform-intro { padding: 18px 14px; }
}
