/* ========== 全局变量 ========== */
:root {
    --gold: #f5cd6d;
    --gold-light: #f7e590;
    --gold-deep: #c8960c;
    --cyan-light: #dafdff;
    --cyan: #b9f9ff;
    --cyan-deep: #3a8f99;
    --bg: #fafaf9;
    --surface: #ffffff;
    --text: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-muted: #7a7a7a;
    --border: #e8e5df;
    --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 32px rgba(0, 0, 0, 0.10);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 60px;
    --max-width: 1280px;
}

*,
*::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: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; max-height: 480px; }

/* ========== 顶部导航 ========== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: var(--nav-height);
    background: #1c1c1e;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}
.top-nav .nav-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
}
.top-nav .nav-brand h1 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold);
    white-space: nowrap;
    margin: 0;
}
.top-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    mask-image: linear-gradient(to right, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 92%, transparent 100%);
}
.top-nav .nav-links::-webkit-scrollbar { display: none; }
.top-nav .nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 7px 13px;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
}
.top-nav .nav-links a:hover,
.top-nav .nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.top-nav .nav-login {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 7px 14px;
    border-radius: 20px;
    background: rgba(245, 205, 109, 0.15);
    border: 1px solid rgba(245, 205, 109, 0.35);
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 500;
    text-decoration: none;
}
.top-nav .nav-login:hover {
    background: rgba(245, 205, 109, 0.25);
    border-color: var(--gold);
    color: var(--gold);
}
.top-nav .nav-login .avatar-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1c1c1e;
    font-size: 0.8rem;
    flex-shrink: 0;
}

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

/* ========== 板块通用 ========== */
.section { padding: 32px 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1c1c1e;
    position: relative;
    padding-left: 14px;
    letter-spacing: 0.01em;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--gold);
}
.section-more {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}
.section-more:hover { color: var(--gold-deep); }

/* ========== 首页 Banner ========== */
.banner-wrapper { padding: 20px 0 28px; }
.banner {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 50%, #1c1c1e 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 28px 24px;
    min-height: 280px;
    box-shadow: var(--shadow-lg);
}
.banner-text { flex: 1; color: #fff; min-width: 0; }
.banner-text .badge {
    display: inline-block;
    background: var(--gold);
    color: #1c1c1e;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.banner-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    line-height: 1.25;
}
.banner-text p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 16px;
    line-height: 1.5;
}
.banner-text .btn-watch {
    display: inline-block;
    background: var(--gold);
    color: #1c1c1e;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.banner-text .btn-watch:hover {
    background: #e8b94a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 205, 109, 0.35);
}
.banner-image {
    flex-shrink: 0;
    width: 260px;
    height: 340px;
    max-width: 100%;
    max-height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 260px;
    max-height: 340px;
}

/* ========== 平台介绍 ========== */
.intro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.intro-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.intro-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.intro-card .icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.intro-card .icon-circle.gold { background: #fef9ed; color: var(--gold-deep); }
.intro-card .icon-circle.cyan { background: #f0fafb; color: var(--cyan-deep); }
.intro-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.intro-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ========== 热门影视网格 ========== */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.movie-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.movie-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.movie-card .poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #e8e8e8;
    position: relative;
    max-height: 320px;
}
.movie-card .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 320px;
}
.movie-card .poster .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gold);
    color: #1c1c1e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    letter-spacing: 0.03em;
}
.movie-card .info { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.movie-card .info .title {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movie-card .info .meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 周榜推荐 ========== */
.rank-list {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #f0ece6;
    transition: var(--transition);
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: #fefcf7; border-radius: 6px; padding-left: 6px; padding-right: 6px; }
.rank-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rank-num.top1 { background: #f5cd6d; color: #1c1c1e; }
.rank-num.top2 { background: #e0ddd6; color: #3a3a3a; }
.rank-num.top3 { background: #e8d5b0; color: #3a3a3a; }
.rank-num.normal { background: #f5f3ef; color: #666; }
.rank-info .rank-title { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.rank-info .rank-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ========== 明星卡片 ========== */
.star-recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.star-rec-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    padding-bottom: 12px;
    transition: var(--transition);
}
.star-rec-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.star-rec-card .star-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #e8e8e8;
    max-height: 220px;
}
.star-rec-card .star-img-wrap img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; max-height: 220px; }
.star-rec-card .star-name { font-weight: 700; font-size: 0.9rem; margin-top: 8px; }
.star-rec-card .star-role { font-size: 0.75rem; color: var(--text-muted); }

/* ========== 明星介绍 ========== */
.star-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.star-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.star-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.star-card .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    background: #e8e8e8;
    max-width: 90px;
    max-height: 90px;
}
.star-card .avatar img { width: 100%; height: 100%; object-fit: cover; max-width: 90px; max-height: 90px; }
.star-card h4 { font-weight: 700; font-size: 0.95rem; }
.star-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ========== 剧情介绍 ========== */
.plot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.plot-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.plot-card:hover { box-shadow: var(--shadow-md); }
.plot-card .plot-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e8e8e8;
    max-height: 200px;
}
.plot-card .plot-img img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; max-height: 200px; }
.plot-card .plot-content { padding: 12px 14px; }
.plot-card .plot-content h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.plot-card .plot-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 电影详情+右侧布局 ========== */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}
.detail-main .detail-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
    padding: 14px;
    transition: var(--transition);
}
.detail-main .detail-card:hover { box-shadow: var(--shadow-md); }
.detail-card .detail-poster {
    width: 120px;
    height: 170px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e8e8;
    max-width: 120px;
    max-height: 170px;
}
.detail-card .detail-poster img { width: 100%; height: 100%; object-fit: cover; max-width: 120px; max-height: 170px; }
.detail-card .detail-info h4 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.detail-card .detail-info .detail-meta { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.detail-card .detail-info .detail-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--nav-height) + 16px);
}
.sidebar-panel .panel-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-light);
}
.sidebar-panel .read-stat { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.5; }
.sidebar-panel .read-stat strong { color: var(--gold-deep); font-size: 1.1rem; }
.sidebar-panel .update-time { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 14px; }
.sidebar-panel .stat-row { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.sidebar-panel .stat-item {
    flex: 1;
    min-width: 70px;
    background: #fefcf7;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #f0e8d5;
}
.sidebar-panel .stat-item .stat-val { font-size: 1.3rem; font-weight: 800; color: var(--gold-deep); }
.sidebar-panel .stat-item .stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.sidebar-comments .comment-item {
    padding: 9px 0;
    border-bottom: 1px solid #f0ece6;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.sidebar-comments .comment-item:last-child { border-bottom: none; }
.sidebar-comments .comment-item .comment-user {
    font-weight: 600;
    font-size: 0.75rem;
    color: #1c1c1e;
    margin-bottom: 2px;
}

/* ========== 下载板块 ========== */
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.download-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.download-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }
.download-card .app-icon { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; max-width: 44px; max-height: 44px; }
.download-card .dl-label { font-weight: 700; font-size: 0.9rem; }
.download-card .dl-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ========== 常见问题 ========== */
.faq-list {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.faq-item { padding: 12px 0; border-bottom: 1px solid #f0ece6; }
.faq-item:last-child { border-bottom: none; }
.faq-item .faq-q { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; color: #1c1c1e; }
.faq-item .faq-a { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ========== 友情链接 ========== */
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 16px 0;
}
.friend-links a.link_friendlinks_a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 16px;
    background: #f5f3ef;
    transition: var(--transition);
    white-space: nowrap;
}
.friend-links a.link_friendlinks_a:hover { background: #e8e5df; color: #1c1c1e; }

/* ========== 底部 ========== */
.bottom-nav {
    width: 100%;
    background: #1c1c1e;
    color: #aaa;
    padding: 24px 16px;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.8;
}
.bottom-nav a { color: var(--gold-light); text-decoration: none; font-weight: 500; transition: var(--transition); }
.bottom-nav a:hover { color: var(--gold); text-decoration: underline; }
.bottom-nav .bottom-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 8px; }

/* ==================================================================
   页面专属样式
   ================================================================== */

/* ========== 影视列表页  ========== */
.list-filter-bar {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin: 20px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.list-filter-bar .filter-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-right: 4px;
}
.list-filter-bar .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}
.list-filter-bar .filter-tag {
    padding: 6px 14px;
    border-radius: 18px;
    background: #f5f3ef;
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}
.list-filter-bar .filter-tag:hover { background: #fef9ed; color: var(--gold-deep); }
.list-filter-bar .filter-tag.active {
    background: var(--gold);
    color: #1c1c1e;
    border-color: var(--gold-deep);
    font-weight: 700;
}
.list-table {
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-collapse: collapse;
}
.list-table thead {
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 100%);
    color: #fff;
}
.list-table thead th {
    padding: 14px 12px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.list-table tbody tr {
    border-bottom: 1px solid #f0ece6;
    transition: var(--transition);
}
.list-table tbody tr:hover { background: #fefcf7; }
.list-table tbody tr:last-child { border-bottom: none; }
.list-table tbody td {
    padding: 12px;
    font-size: 0.85rem;
    color: var(--text);
    vertical-align: middle;
}
.list-table .poster-cell {
    width: 60px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    max-width: 60px;
    max-height: 80px;
}
.list-table .poster-cell img { width: 100%; height: 100%; object-fit: cover; max-width: 60px; max-height: 80px; }
.list-table .movie-title-cell { font-weight: 700; color: #1c1c1e; }
.list-table .movie-title-cell a { color: #1c1c1e; text-decoration: none; }
.list-table .movie-title-cell a:hover { color: var(--gold-deep); }
.list-table .score-cell { color: #c8960c; font-weight: 700; }
.list-table .tag-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    background: #f5f3ef;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-right: 4px;
}
.list-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.list-pagination a {
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.list-pagination a:hover { background: var(--gold); border-color: var(--gold); color: #1c1c1e; }
.list-pagination a.active { background: var(--gold); border-color: var(--gold); color: #1c1c1e; font-weight: 700; }

/* ========== 影视内容页  ========== */
.detail-hero {
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 50%, #1c1c1e 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 20px 0 24px;
    padding: 32px;
    color: #fff;
    position: relative;
}
.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(245, 205, 109, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.detail-hero .hero-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.detail-hero .hero-poster {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    max-width: 260px;
    max-height: 390px;
}
.detail-hero .hero-poster img { width: 100%; height: 100%; object-fit: cover; max-width: 260px; max-height: 390px; }
.detail-hero .hero-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 0.02em;
}
.detail-hero .hero-info .hero-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}
.detail-hero .hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-bottom: 18px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.detail-hero .hero-meta-item {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}
.detail-hero .hero-meta-item strong { color: #fff; font-weight: 600; }
.detail-hero .hero-score {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}
.detail-hero .hero-score .score-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
}
.detail-hero .hero-score .score-text { font-size: 0.8rem; color: #aaa; }
.detail-hero .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.detail-hero .hero-tag {
    background: rgba(245, 205, 109, 0.15);
    border: 1px solid rgba(245, 205, 109, 0.4);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 600;
}
.detail-hero .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.detail-hero .btn-play {
    background: var(--gold);
    color: #1c1c1e;
    padding: 12px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.detail-hero .btn-play:hover { background: #e8b94a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245, 205, 109, 0.4); }
.detail-hero .btn-fav {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px 24px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.detail-hero .btn-fav:hover { background: rgba(255, 255, 255, 0.18); }

.detail-tabs {
    display: flex;
    gap: 4px;
    background: var(--surface);
    padding: 6px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    overflow-x: auto;
}
.detail-tabs a {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.detail-tabs a:hover { background: #fef9ed; color: var(--gold-deep); }
.detail-tabs a.active { background: var(--gold); color: #1c1c1e; }

.detail-content-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.detail-content-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail-content-card h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--gold);
    border-radius: 2px;
}
.detail-content-card p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text);
    text-indent: 2em;
    margin-bottom: 12px;
}

.episode-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    margin-top: 14px;
}
.episode-list a {
    background: #f5f3ef;
    text-align: center;
    padding: 10px 4px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}
.episode-list a:hover {
    background: var(--gold);
    color: #1c1c1e;
    border-color: var(--gold-deep);
    transform: translateY(-1px);
}

.detail-actor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 12px;
}
.detail-actor-card {
    background: #fafaf9;
    border-radius: var(--radius);
    padding: 12px 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.detail-actor-card:hover { background: #fef9ed; border-color: var(--gold-light); }
.detail-actor-card .actor-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    background: #e8e8e8;
    max-width: 64px;
    max-height: 64px;
}
.detail-actor-card .actor-avatar img { width: 100%; height: 100%; object-fit: cover; max-width: 64px; max-height: 64px; }
.detail-actor-card .actor-name { font-size: 0.85rem; font-weight: 700; color: #1c1c1e; }
.detail-actor-card .actor-role { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.comment-section {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.comment-form {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.comment-form input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}
.comment-form input:focus { border-color: var(--gold); }
.comment-form button {
    background: var(--gold);
    color: #1c1c1e;
    border: none;
    border-radius: var(--radius);
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.comment-form button:hover { background: #e8b94a; }
.comment-list .comment-block {
    padding: 12px 0;
    border-bottom: 1px solid #f0ece6;
}
.comment-list .comment-block:last-child { border-bottom: none; }
.comment-list .comment-user-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.comment-list .comment-user-line .user-name {
    font-weight: 700;
    color: #1c1c1e;
    font-size: 0.85rem;
}
.comment-list .comment-user-line .comment-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.comment-list .comment-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.related-movies {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.related-movie {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.related-movie:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-movie .related-img {
    aspect-ratio: 2/3;
    overflow: hidden;
    max-height: 200px;
}
.related-movie .related-img img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; max-height: 200px; }
.related-movie .related-info { padding: 8px 10px 12px; }
.related-movie .related-title { font-size: 0.85rem; font-weight: 700; color: #1c1c1e; margin-bottom: 2px; }
.related-movie .related-meta { font-size: 0.7rem; color: var(--text-muted); }

/* ========== 明星介绍页  ========== */
.star-hero {
    background: linear-gradient(135deg, #2a2a2d 0%, #1c1c1e 100%);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: #fff;
    margin: 20px 0 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
}
.star-hero .star-hero-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 30px rgba(245, 205, 109, 0.3);
    max-width: 220px;
    max-height: 220px;
}
.star-hero .star-hero-img img { width: 100%; height: 100%; object-fit: cover; max-width: 220px; max-height: 220px; }
.star-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.star-hero .star-hero-en {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.star-hero .star-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.star-hero .star-tag-pill {
    background: rgba(245, 205, 109, 0.15);
    color: var(--gold);
    border: 1px solid rgba(245, 205, 109, 0.3);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
}
.star-hero .star-stat-row {
    display: flex;
    gap: 28px;
    margin-top: 18px;
}
.star-hero .star-stat-item .stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.star-hero .star-stat-item .stat-label {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 2px;
}

.timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 16px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 100%);
}
.timeline-item {
    position: relative;
    padding-bottom: 18px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item .tl-year {
    font-weight: 800;
    color: var(--gold-deep);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.timeline-item .tl-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
}

.star-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 12px;
}
.star-work-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.star-work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.star-work-card .work-img {
    aspect-ratio: 2/3;
    overflow: hidden;
    max-height: 240px;
}
.star-work-card .work-img img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; max-height: 240px; }
.star-work-card .work-info { padding: 10px 12px 14px; }
.star-work-card .work-title { font-size: 0.9rem; font-weight: 700; color: #1c1c1e; margin-bottom: 2px; }
.star-work-card .work-year { font-size: 0.72rem; color: var(--text-muted); }

/* ========== 平台介绍页  ========== */
.platform-hero {
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 50%, #1c1c1e 100%);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    color: #fff;
    margin: 20px 0 28px;
    position: relative;
    overflow: hidden;
}
.platform-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 205, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.platform-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}
.platform-hero p {
    font-size: 1rem;
    color: #ccc;
    max-width: 720px;
    margin: 0 auto 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
.platform-hero .hero-data-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.platform-hero .hero-data-item .data-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.platform-hero .hero-data-item .data-label {
    font-size: 0.82rem;
    color: #aaa;
    margin-top: 4px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 16px;
}
.feature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold-light); }
.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fef9ed 0%, #f7e590 100%);
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.feature-card .feature-icon.cyan {
    background: linear-gradient(135deg, #f0fafb 0%, var(--cyan) 100%);
    color: var(--cyan-deep);
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.platform-history {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-top: 24px;
}
.platform-history h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1c1c1e;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-light);
}
.platform-history p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text);
    text-indent: 2em;
    margin-bottom: 12px;
}

/* ========== APP 下载页  ========== */
.dl-hero {
    background: linear-gradient(135deg, var(--gold) 0%, #e8b94a 50%, var(--gold-deep) 100%);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    color: #1c1c1e;
    margin: 20px 0 28px;
}
.dl-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.dl-hero p {
    font-size: 1rem;
    color: #5a4500;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.8;
}
.dl-hero .qr-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.dl-hero .qr-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
}
.dl-hero .qr-img {
    width: 120px;
    height: 120px;
    background: #f5f3ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 auto 8px;
    overflow: hidden;
    max-width: 120px;
    max-height: 120px;
}
.dl-hero .qr-img img { width: 100%; height: 100%; object-fit: contain; max-width: 120px; max-height: 120px; }
.dl-hero .qr-label { font-size: 0.85rem; font-weight: 700; color: #1c1c1e; }

.dl-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}
.dl-platform-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.dl-platform-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }
.dl-platform-card .platform-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 18px;
    background: #f5f3ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 72px;
    max-height: 72px;
}
.dl-platform-card .platform-icon img { width: 56px; height: 56px; object-fit: contain; max-width: 56px; max-height: 56px; }
.dl-platform-card .platform-info h3 { font-size: 1.1rem; font-weight: 700; color: #1c1c1e; margin-bottom: 4px; }
.dl-platform-card .platform-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.dl-platform-card .platform-info .btn-dl {
    display: inline-block;
    background: var(--gold);
    color: #1c1c1e;
    padding: 6px 18px;
    border-radius: 18px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.dl-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.dl-feature-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.dl-feature-card .feature-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-deep);
    margin-bottom: 4px;
}
.dl-feature-card .feature-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========== 版权说明页  ========== */
.copyright-page {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin: 20px 0 24px;
}
.copyright-page h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1c1c1e;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}
.copyright-page .update-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    margin-top: 8px;
}
.copyright-page h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 24px 0 12px;
    padding-left: 12px;
    border-left: 4px solid var(--gold);
}
.copyright-page p {
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--text);
    margin-bottom: 12px;
    text-indent: 2em;
}
.copyright-page ul {
    list-style: none;
    margin: 12px 0;
    padding-left: 8px;
}
.copyright-page ul li {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text);
    padding-left: 22px;
    position: relative;
    margin-bottom: 4px;
}
.copyright-page ul li::before {
    content: '◆';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 1px;
}
.copyright-page .callout {
    background: #fef9ed;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.8;
}
.copyright-page .callout strong { color: var(--gold-deep); }

/* ========== 联系我们页  ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    margin: 20px 0 24px;
    align-items: start;
}
.contact-form-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.contact-form-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-light);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 205, 109, 0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
    background: var(--gold);
    color: #1c1c1e;
    border: none;
    border-radius: var(--radius);
    padding: 12px 32px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    letter-spacing: 0.04em;
}
.btn-submit:hover { background: #e8b94a; }

.contact-info-card {
    background: linear-gradient(135deg, #1c1c1e 0%, #2a2a2d 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    box-shadow: var(--shadow-md);
}
.contact-info-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(245, 205, 109, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}
.contact-info-item .info-label { font-size: 0.78rem; color: #aaa; margin-bottom: 2px; }
.contact-info-item .info-value { font-size: 0.9rem; color: #fff; font-weight: 600; word-break: break-all; }
.contact-info-item .info-value a { color: var(--gold); text-decoration: none; }
.contact-info-item .info-value a:hover { text-decoration: underline; }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-row a {
    flex: 1;
    min-width: 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}
.social-row a:hover { background: var(--gold); color: #1c1c1e; border-color: var(--gold); }

.map-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-top: 20px;
}
.map-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-light);
}
.map-card .map-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, #f5f3ef 0%, #e8e5df 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    overflow: hidden;
    max-height: 320px;
}
.map-card .map-placeholder img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; max-height: 320px; }

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .movie-grid { grid-template-columns: repeat(4, 1fr); }
    .detail-layout { grid-template-columns: 1fr 280px; gap: 14px; }
    .download-grid { grid-template-columns: repeat(2, 1fr); }
    .star-recommend-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-hero .hero-grid { grid-template-columns: 200px 1fr; gap: 24px; }
    .detail-actor-grid { grid-template-columns: repeat(4, 1fr); }
    .related-movies { grid-template-columns: repeat(4, 1fr); }
    .star-hero { grid-template-columns: 180px 1fr; gap: 24px; }
    .star-hero .star-hero-img { width: 180px; height: 180px; max-width: 180px; max-height: 180px; }
    .contact-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-nav .nav-links { gap: 2px; }
    .top-nav .nav-links a { font-size: 0.78rem; padding: 6px 10px; }
    .top-nav .nav-brand h1 { font-size: 1.1rem; }
    .top-nav .nav-login { font-size: 0.78rem; padding: 5px 10px; }
    .banner { flex-direction: column; padding: 20px 16px; min-height: auto; text-align: center; }
    .banner-text h2 { font-size: 1.4rem; }
    .banner-image { width: 180px; height: 240px; margin: 0 auto; max-width: 180px; max-height: 240px; }
    .banner-image img { max-width: 180px; max-height: 240px; }
    .intro-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .intro-cards .intro-card:last-child { grid-column: 1 / -1; }
    .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: repeat(2, 1fr); gap: 10px; }
    .detail-layout { grid-template-columns: 1fr; }
    .sidebar-panel { position: static; order: -1; }
    .detail-main .detail-card { flex-direction: row; gap: 10px; padding: 10px; }
    .detail-card .detail-poster { width: 90px; height: 130px; max-width: 90px; max-height: 130px; }
    .detail-card .detail-poster img { max-width: 90px; max-height: 130px; }
    .download-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .star-recommend-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section { padding: 22px 0; }
    .section-title { font-size: 1.15rem; }
    .rank-list { padding: 12px 10px; }
    .list-table .poster-cell { width: 50px; height: 65px; max-width: 50px; max-height: 65px; }
    .list-table .poster-cell img { max-width: 50px; max-height: 65px; }
    .list-table thead th, .list-table tbody td { padding: 8px 6px; font-size: 0.78rem; }
    .detail-hero { padding: 20px; }
    .detail-hero .hero-grid { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .detail-hero .hero-poster { margin: 0 auto; max-width: 200px; max-height: 300px; }
    .detail-hero .hero-info h1 { font-size: 1.5rem; }
    .detail-hero .hero-meta-grid { grid-template-columns: 1fr; gap: 4px; }
    .detail-hero .hero-actions { justify-content: center; }
    .episode-list { grid-template-columns: repeat(5, 1fr); }
    .detail-actor-grid { grid-template-columns: repeat(3, 1fr); }
    .related-movies { grid-template-columns: repeat(2, 1fr); }
    .star-hero { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 24px; }
    .star-hero .star-hero-img { margin: 0 auto; }
    .star-hero h1 { font-size: 1.6rem; }
    .star-hero .star-stat-row { justify-content: center; gap: 18px; }
    .star-works-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-hero { padding: 32px 20px; }
    .platform-hero h1 { font-size: 1.7rem; }
    .platform-hero .hero-data-row { gap: 20px; }
    .platform-hero .hero-data-item .data-num { font-size: 1.6rem; }
    .dl-hero { padding: 32px 20px; }
    .dl-hero h1 { font-size: 1.7rem; }
    .dl-platform-grid { grid-template-columns: 1fr; }
    .dl-feature-row { grid-template-columns: 1fr; }
    .copyright-page { padding: 24px 20px; }
    .copyright-page h1 { font-size: 1.4rem; }
    .form-row { grid-template-columns: 1fr; }
    .detail-content-card { padding: 18px; }
}
@media (max-width: 480px) {
    .top-nav { padding: 0 8px; gap: 4px; }
    .top-nav .nav-brand h1 { font-size: 0.95rem; }
    .top-nav .nav-links a { font-size: 0.7rem; padding: 5px 7px; }
    .top-nav .nav-login { font-size: 0.7rem; padding: 4px 8px; gap: 4px; }
    .top-nav .nav-login .avatar-dot { width: 22px; height: 22px; font-size: 0.65rem; }
    .banner { padding: 16px 12px; border-radius: var(--radius); }
    .banner-text h2 { font-size: 1.2rem; }
    .banner-text p { font-size: 0.8rem; }
    .banner-image { width: 140px; height: 190px; max-width: 140px; max-height: 190px; }
    .banner-image img { max-width: 140px; max-height: 190px; }
    .intro-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .movie-card .info .title { font-size: 0.78rem; }
    .movie-card .info .meta { font-size: 0.66rem; }
    .star-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .plot-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .download-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .star-recommend-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .detail-card .detail-poster { width: 70px; height: 100px; max-width: 70px; max-height: 100px; }
    .detail-card .detail-poster img { max-width: 70px; max-height: 100px; }
    .detail-card .detail-info h4 { font-size: 0.85rem; }
    .section-title { font-size: 1.05rem; }
    .sidebar-panel .stat-row { gap: 6px; }
    .sidebar-panel .stat-item { padding: 8px 6px; }
    .sidebar-panel .stat-item .stat-val { font-size: 1rem; }
    .episode-list { grid-template-columns: repeat(4, 1fr); }
    .detail-actor-grid { grid-template-columns: repeat(2, 1fr); }
    .related-movies { grid-template-columns: repeat(2, 1fr); }
    .star-works-grid { grid-template-columns: repeat(2, 1fr); }
}
