/* ========== 基础变量与重置 ========== */
:root {
    --color-purple-light: #e8d3ff;
    --color-blue-purple: #c6cfff;
    --color-blue-light: #deecff;
    --color-blue-pale: #f3f8ff;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-text-muted: #7f8c9b;
    --color-accent: #6c5ce7;
    --color-accent-warm: #e17055;
    --color-gold: #f0a500;
    --color-border: #e8ecf1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1320px;
    --nav-height: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #f3f8ff 0%, #f8fafd 100%);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== 顶部导航（所有页面共用） ========== */
.site-header {
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo h1 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #4a3f8a;
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin: 0;
    background: linear-gradient(135deg, #5b4fcf, #8b7cf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-logo .logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.6); opacity: 1; }
}

/* 导航栏目 */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 1;
    mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--color-blue-pale);
    color: var(--color-accent);
}
.nav-links a.nav-active {
    background: var(--color-blue-purple);
    color: #4a3f8a;
    font-weight: 600;
}

/* 用户状态 */
.user-status {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 22px;
    background: var(--color-blue-pale);
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}
.user-status:hover {
    background: var(--color-blue-light);
    border-color: var(--color-blue-purple);
}
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c6cfff, #e8d3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #4a3f8a;
    flex-shrink: 0;
}

/* ========== 主容器 ========== */
.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 板块标题 ========== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 16px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #8b7cf0, #c6cfff);
}
.section-more {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}
.section-more:hover {
    color: #4a3f8a;
    text-decoration: underline;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8d3ff, #c6cfff);
    color: #4a3f8a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.02em;
    margin-left: 8px;
    vertical-align: middle;
}

/* ========== Banner 轮播 ========== */
.banner-section {
    margin: 20px 0 28px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e8d3ff;
}
.banner-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: 440px;
    min-height: 200px;
    overflow: hidden;
}
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 25, 60, 0.7) 0%, rgba(30, 25, 60, 0.35) 45%, rgba(30, 25, 60, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}
.banner-content {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 500px;
    color: #fff;
    pointer-events: none;
}
.banner-content h2 {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}
.banner-content p {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    opacity: 0.9;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    line-height: 1.5;
    margin-bottom: 16px;
}
.banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.banner-dots {
    position: absolute;
    bottom: 16px;
    right: 20px;
    z-index: 5;
    display: flex;
    gap: 8px;
}
.banner-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.banner-dots button.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* ========== 两栏布局容器 ========== */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin: 28px 0;
    align-items: start;
}

/* ========== 热门影视网格 ========== */
.hot-movies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.movie-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue-purple);
}
.movie-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    background: #deecff;
    flex-shrink: 0;
}
.movie-card-info {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.movie-card-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.movie-card-meta {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1.4;
}
.movie-card-meta span {
    background: var(--color-blue-pale);
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}
.movie-card-rating {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ========== 右侧面板 ========== */
.side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}
.side-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-blue-pale);
    letter-spacing: -0.01em;
}
.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rank-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--color-blue-pale);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}
.rank-list li:hover { background: var(--color-blue-light); }
.rank-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b7cf0, #c6cfff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.rank-list li:nth-child(1) .rank-num { background: linear-gradient(135deg, #f0a500, #f7c948); }
.rank-list li:nth-child(2) .rank-num { background: linear-gradient(135deg, #b0b0b0, #d0d0d0); }
.rank-list li:nth-child(3) .rank-num { background: linear-gradient(135deg, #c8946e, #d4a87c); }

.star-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.star-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 55px;
}
.star-mini:hover { transform: translateY(-3px); }
.star-mini img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-blue-purple);
    flex-shrink: 0;
    background: #deecff;
}
.star-mini span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    line-height: 1.2;
}

/* ========== 明星介绍网格 ========== */
.stars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.star-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    padding-bottom: 14px;
}
.star-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue-purple);
}
.star-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #deecff;
}
.star-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 10px 0 3px;
    color: #2c3e50;
}
.star-card p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 0 8px;
    line-height: 1.4;
}

/* ========== 剧情介绍 ========== */
.plot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.plot-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-blue-purple);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.plot-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-accent);
    transform: translateX(3px);
}
.plot-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}
.plot-card p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.plot-card .plot-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: #8b7cf0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ========== 电影详细介绍 ========== */
.detail-two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    margin: 28px 0;
    align-items: start;
}
.detail-cards { display: flex; flex-direction: column; gap: 16px; }
.detail-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue-purple);
}
.detail-card img {
    width: 90px;
    height: 125px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #deecff;
}
.detail-card-content { flex: 1; min-width: 0; }
.detail-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 6px;
}
.detail-card-content .detail-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    line-height: 1.5;
}
.detail-card-content .detail-meta strong { color: var(--color-text); font-weight: 600; }
.detail-card-content p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 6px 0 0;
    line-height: 1.5;
}

/* 右侧数据统计 */
.stats-panel {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 80px;
}
.stats-panel h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-blue-pale);
}
.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.9rem;
}
.stat-item:last-child { border-bottom: none; }
.stat-value {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
}
.stat-value.new {
    color: #e17055;
    animation: pulse-num 1.5s ease-in-out infinite;
}
@keyframes pulse-num {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.stat-update-time {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 8px;
}

/* ========== 评论区域 ========== */
.comments-section { margin: 28px 0; }
.comments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.comment-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.comment-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue-purple);
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #deecff, #e8d3ff);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: #4a3f8a;
}
.comment-user {
    font-weight: 600;
    font-size: 0.85rem;
    color: #2c3e50;
}
.comment-time {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-left: auto;
}
.comment-body {
    font-size: 0.84rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ========== 平台介绍 ========== */
.intro-section {
    margin: 28px 0;
    padding: 28px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    text-align: center;
}
.intro-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.intro-section p {
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
}
.intro-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
}
.intro-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-blue-pale);
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a3f8a;
}
.intro-feature .feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* ========== APP下载 ========== */
.download-section {
    margin: 28px 0;
    background: linear-gradient(135deg, #f3f8ff 0%, #e8d3ff 40%, #c6cfff 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.download-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}
.download-section>p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    color: #2c3e50;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: #8b7cf0;
}

/* ========== 常见问题 ========== */
.faq-section { margin: 28px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
}
.faq-item:hover {
    border-color: var(--color-blue-purple);
    box-shadow: var(--shadow-md);
}
.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px;
}
.faq-item p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}
details.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b7cf0;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 8px;
}
details.faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}
details.faq-item p {
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ========== 友情链接 ========== */
.friendlinks-section {
    margin: 28px 0;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
}
.friendlinks-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 14px;
}
.friendlinks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.link_friendlinks_a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 4px;
}
.link_friendlinks_a:hover {
    color: var(--color-accent);
    background: var(--color-blue-pale);
    text-decoration: underline;
}

/* ========== 底部导航（所有页面共用） ========== */
.site-footer {
    width: 100%;
    background: #2c3e50;
    color: #c0c8d4;
    padding: 28px 20px 20px;
    margin-top: 32px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.footer-inner p {
    font-size: 0.82rem;
    margin: 4px 0;
    line-height: 1.6;
}
.footer-inner a {
    color: #c6cfff;
    text-decoration: none;
    transition: var(--transition);
}
.footer-inner a:hover { color: #fff; text-decoration: underline; }
.footer-mobile-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
    .hot-movies-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (max-width: 1024px) {
    .two-col-layout { grid-template-columns: 1fr 280px; gap: 16px; }
    .detail-two-col { grid-template-columns: 1fr 280px; gap: 16px; }
}
@media (max-width: 768px) {
    .header-inner { padding: 0 12px; gap: 8px; }
    .site-logo h1 { font-size: 1.2rem; }
    .nav-links a { padding: 6px 10px; font-size: 0.78rem; border-radius: 16px; }
    .user-status { padding: 4px 10px; font-size: 0.78rem; gap: 6px; }
    .user-avatar { width: 26px; height: 26px; font-size: 0.7rem; }
    .two-col-layout { grid-template-columns: 1fr; gap: 20px; }
    .banner-carousel { aspect-ratio: 16 / 9; max-height: 240px; min-height: 160px; }
    .banner-content { left: 4%; max-width: 280px; }
    .banner-content h2 { font-size: 1.1rem; }
    .banner-content p { font-size: 0.75rem; margin-bottom: 8px; }
    .banner-tag { font-size: 0.7rem; padding: 4px 10px; }
    .intro-section { padding: 18px 16px; }
    .section-title { font-size: 1.2rem; }
    .hot-movies-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .plot-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .comments-grid { grid-template-columns: 1fr; gap: 10px; }
    .detail-two-col { grid-template-columns: 1fr; gap: 20px; }
    .stats-panel { position: static; }
    .download-section { padding: 22px 14px; }
    .download-btn { padding: 10px 14px; font-size: 0.8rem; gap: 5px; }
}
@media (max-width: 480px) {
    .hot-movies-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .detail-card { flex-direction: column; align-items: center; text-align: center; }
    .detail-card img { width: 120px; height: 165px; }
}
@media (max-width: 400px) {
    .banner-carousel { aspect-ratio: 16 / 10; min-height: 140px; }
    .banner-content h2 { font-size: 0.95rem; }
    .banner-content p { font-size: 0.7rem; display: none; }
    .movie-card-info h3 { font-size: 0.78rem; }
    .movie-card-meta { font-size: 0.65rem; }
    .stars-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .plot-grid { grid-template-columns: 1fr; gap: 10px; }
}
