/* ============================================================
   通用基础样式 - 全站共享
   ============================================================ */
:root {
    --color-primary: #305973;
    --color-accent: #ef7e56;
    --color-warm: #ded5c4;
    --color-light: #f9f9f9;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-white: #ffffff;
    --color-border: #e8e4dd;
    --color-card-bg: #ffffff;
    --color-footer-bg: #1e3a4a;
    --shadow-sm: 0 2px 8px rgba(48, 89, 115, 0.08);
    --shadow-md: 0 4px 16px rgba(48, 89, 115, 0.12);
    --shadow-lg: 0 8px 32px rgba(48, 89, 115, 0.16);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --nav-height: 64px;
    --font-xs: 0.75rem;
    --font-sm: 0.85rem;
    --font-md: 0.95rem;
    --font-lg: 1.05rem;
    --font-xl: 1.2rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.8rem;
    --font-hero: 2.4rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   顶部导航 - 全站共享
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    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;
}
.site-brand h1 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
}
.site-brand h1 .accent-dot { color: var(--color-accent); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
}
.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--color-text-light);
    font-size: var(--font-sm);
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.active {
    color: var(--color-accent);
    background: rgba(239, 126, 86, 0.08);
    outline: none;
}
.user-status {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 24px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    font-size: var(--font-sm);
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.3px;
}
.user-status:hover {
    background: #e06a40;
    box-shadow: 0 4px 14px rgba(239, 126, 86, 0.35);
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================================
   底部导航 - 全站共享
   ============================================================ */
.site-footer {
    width: 100%;
    background: var(--color-footer-bg);
    color: #c5cdd3;
    padding: 32px 20px 20px;
    margin-top: 40px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.footer-col h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--font-md);
}
.footer-col p, .footer-col a {
    font-size: var(--font-sm);
    color: #b0b9c0;
    line-height: 1.8;
    display: block;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--font-xs);
    color: #8a949c;
}
.footer-bottom a { color: var(--color-accent); font-weight: 500; }

/* ============================================================
   通用容器 / Section
   ============================================================ */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 40px 0; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding-left: 16px;
    letter-spacing: -0.3px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}
.section-subtitle {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    font-weight: 400;
}
.section-more {
    font-size: var(--font-sm);
    color: var(--color-accent);
    font-weight: 500;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.section-more:hover { text-decoration: underline; color: #d0653a; }

/* ============================================================
   ============ 首页 (page-home) 样式 ========================
   ============================================================ */

/* Brand Banner */
.hero-banner {
    background: linear-gradient(135deg, #faf8f5 0%, #f3efe8 40%, #e8e2d8 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    box-shadow: var(--shadow-md);
    margin-top: 16px;
}
.hero-text {
    flex: 1 1 50%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: var(--font-xs);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}
.hero-text h2 {
    font-size: var(--font-hero);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: -1px;
}
.hero-text p {
    font-size: var(--font-lg);
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 480px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 600;
    font-size: var(--font-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: none;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff;
}
.btn-primary:hover {
    background: #d0653a;
    box-shadow: 0 6px 20px rgba(239, 126, 86, 0.4);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}
.hero-image {
    flex: 1 1 50%;
    position: relative;
    min-height: 300px;
    background: linear-gradient(180deg, rgba(48, 89, 115, 0.05) 0%, rgba(48, 89, 115, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 平台介绍卡片 */
.platform-intro-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.intro-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}
.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-warm);
}
.intro-card .intro-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(239, 126, 86, 0.1);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.intro-card h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.intro-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.5;
}

/* 热门影视网格 */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.movie-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-warm);
}
.movie-card .poster-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #e8e4dd;
}
.movie-card .poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.movie-card:hover .poster-wrap img { transform: scale(1.06); }
.movie-card .rating-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(239, 126, 86, 0.92);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-xs);
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}
.movie-card .card-info {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.movie-card .card-info h4 {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-card .card-info .meta-row {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1.4;
}
.movie-card .card-info .type-tag {
    display: inline-block;
    background: rgba(48, 89, 115, 0.08);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* 周榜推荐 */
.weekly-rank {
    background: linear-gradient(135deg, #fef9f6 0%, #fdf5f1 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(239, 126, 86, 0.15);
    margin-bottom: 32px;
}
.weekly-rank h3 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.weekly-rank-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.weekly-rank-list::-webkit-scrollbar { height: 4px; }
.weekly-rank-list::-webkit-scrollbar-thumb {
    background: var(--color-warm);
    border-radius: 4px;
}
.rank-item {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
    position: relative;
}
.rank-item:hover { box-shadow: var(--shadow-md); }
.rank-num {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-xs);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.rank-item img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: var(--radius-xs);
    margin-bottom: 8px;
}
.rank-item .rank-title {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 明星介绍 */
.star-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.star-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    text-align: center;
    border: 1px solid transparent;
}
.star-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-warm);
}
.star-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.star-card .star-info { padding: 14px 12px; }
.star-card .star-info h4 {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--font-md);
}
.star-card .star-info p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-top: 2px;
}

/* 热门明星横幅 */
.hot-stars-banner {
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}
.hot-stars-banner .hsb-label {
    font-weight: 700;
    font-size: var(--font-lg);
    white-space: nowrap;
    color: var(--color-accent);
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
}
.hot-stars-banner .hsb-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.hot-stars-banner .hsb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.hot-stars-banner .hsb-item:hover {
    background: rgba(255, 255, 255, 0.25);
}
.hot-stars-banner .hsb-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* 剧情介绍 */
.plot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.plot-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}
.plot-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-warm);
}
.plot-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.plot-card .plot-info { padding: 14px 16px; }
.plot-card .plot-info h4 {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--font-md);
    margin-bottom: 4px;
}
.plot-card .plot-info p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 电影详情卡片 */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.detail-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-warm);
}
.detail-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.detail-card .detail-info {
    padding: 14px 16px;
    flex: 1;
}
.detail-card .detail-info h4 {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--font-md);
    margin-bottom: 6px;
}
.detail-card .detail-info .detail-meta {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    line-height: 1.6;
}
.detail-card .detail-info .detail-meta span { display: block; }

/* 评论 + 侧边栏 */
.review-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-item {
    background: var(--color-card-bg);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    box-shadow: var(--shadow-card);
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}
.review-item:hover {
    border-left-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}
.review-item .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-item .review-user {
    font-weight: 600;
    font-size: var(--font-sm);
    color: var(--color-primary);
}
.review-item .review-time {
    font-size: var(--font-xs);
    color: #999;
    margin-left: auto;
}
.review-item .review-body {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}
.sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}
.sidebar-card h4 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: var(--font-lg);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sidebar-card .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: var(--font-sm);
}
.sidebar-card .stat-row:last-child { border-bottom: none; }
.sidebar-card .stat-val { font-weight: 700; color: var(--color-accent); }
.update-time {
    font-size: var(--font-xs);
    color: #999;
    margin-top: 8px;
    text-align: right;
}
.sidebar-card .hot-tag {
    display: inline-block;
    background: rgba(239, 126, 86, 0.1);
    color: var(--color-accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: var(--font-xs);
    margin: 3px 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.sidebar-card .hot-tag:hover {
    background: var(--color-accent);
    color: #fff;
}

/* APP下载区块 */
.download-section {
    background: linear-gradient(135deg, #f5f2ed 0%, #ede7dd 100%);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.download-section h3 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.download-section .download-subtitle {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: var(--font-md);
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 28px;
    font-weight: 600;
    font-size: var(--font-sm);
    transition: var(--transition-smooth);
    border: 2px solid var(--color-primary);
    background: #fff;
    color: var(--color-primary);
    white-space: nowrap;
}
.download-btn:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.download-btn .app-icon { flex-shrink: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--color-card-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
    cursor: pointer;
}
.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}
.faq-item summary {
    font-weight: 600;
    font-size: var(--font-md);
    color: var(--color-primary);
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 700;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    margin-top: 10px;
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    padding-top: 10px;
    border-top: 1px solid var(--color-border);
}

/* 友情链接 */
.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 8px 0;
}
.friend-links a.link_friendlinks_a {
    color: var(--color-text-light);
    font-size: var(--font-sm);
    padding: 6px 14px;
    border-radius: 16px;
    background: rgba(48, 89, 115, 0.04);
    transition: var(--transition-fast);
    white-space: nowrap;
}
.friend-links a.link_friendlinks_a:hover {
    color: var(--color-accent);
    background: rgba(239, 126, 86, 0.08);
    text-decoration: underline;
}

/* ============================================================
   ============ 影视列表页 (page-hot-movies) 样式 ============
   深蓝/海军蓝杂志风
   ============================================================ */
.page-hot-movies {
    --color-primary: #1e3a5f;
    --color-accent: #f0a500;
    --color-warm: #b8d4e3;
    --color-light: #f0f4f8;
    --color-card-bg: #ffffff;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef4 100%);
}
.page-hot-movies .site-header { background: #14253d; border-bottom-color: #0f1d33; }
.page-hot-movies .site-brand h1 { color: #fff; }
.page-hot-movies .nav-links a { color: #b8c5d6; }
.page-hot-movies .nav-links a:hover, .page-hot-movies .nav-links a.active {
    color: #f0a500;
    background: rgba(240, 165, 0, 0.15);
}
.page-hot-movies .mobile-nav-toggle span { background: #fff; }
.page-hot-movies .user-status {
    background: #f0a500;
    color: #14253d;
}

.hm-hero {
    background: linear-gradient(135deg, #14253d 0%, #1e3a5f 60%, #2a4d7a 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 37, 61, 0.25);
}
.hm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.hm-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
}
.hm-hero-text .hm-tag {
    display: inline-block;
    background: #f0a500;
    color: #14253d;
    padding: 4px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: var(--font-xs);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hm-hero-text h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.hm-hero-text p {
    font-size: var(--font-md);
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 16px;
}
.hm-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}
.hm-hero-stats div span:first-child {
    display: block;
    color: #f0a500;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}
.hm-hero-stats div span:last-child {
    font-size: var(--font-xs);
    color: #b8c5d6;
}
.hm-hero-poster {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: var(--transition-smooth);
}
.hm-hero-poster:hover { transform: rotate(0deg) translateY(-4px); }
.hm-hero-poster img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.hm-filter-bar {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 24px 0;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    border-left: 4px solid #f0a500;
}
.hm-filter-label {
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 8px;
}
.hm-filter-chip {
    padding: 6px 14px;
    background: rgba(30, 58, 95, 0.06);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}
.hm-filter-chip:hover, .hm-filter-chip.active {
    background: #f0a500;
    color: #14253d;
}

.hm-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.hm-movie-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}
.hm-movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.18);
    border-color: #f0a500;
}
.hm-movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}
.hm-movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hm-movie-card:hover .hm-movie-poster img { transform: scale(1.08); }
.hm-movie-poster .hm-score {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(240, 165, 0, 0.95);
    color: #14253d;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: var(--font-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.hm-movie-poster .hm-tag-year {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(20, 37, 61, 0.85);
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: var(--font-xs);
}
.hm-movie-info {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hm-movie-info h3 {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--color-primary);
}
.hm-movie-info .hm-meta {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    line-height: 1.5;
}
.hm-movie-info .hm-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}
.hm-movie-info .hm-genres span {
    background: rgba(240, 165, 0, 0.15);
    color: #8a5e00;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.hm-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hm-pagination a, .hm-pagination span {
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--font-sm);
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid var(--color-border);
}
.hm-pagination a:hover, .hm-pagination .current {
    background: #f0a500;
    color: #14253d;
    border-color: #f0a500;
}

/* ============================================================
   ============ 影视内容页 (page-content) 样式 =============
   电影级深色调 + 金色点缀，最详细的版式
   ============================================================ */
.page-content {
    --color-primary: #1a1a2e;
    --color-accent: #d4a574;
    --color-warm: #c9a37a;
    --color-light: #faf7f2;
    --color-text: #2c2520;
    --color-text-light: #5a5048;
    --color-border: #e8e0d4;
    --color-card-bg: #ffffff;
    background: #faf7f2;
}
.page-content .site-header {
    background: #1a1a2e;
    border-bottom-color: #0f0f1f;
}
.page-content .site-brand h1 { color: #fff; }
.page-content .site-brand h1 .accent-dot { color: #d4a574; }
.page-content .nav-links a { color: #b8b0a5; }
.page-content .nav-links a:hover, .page-content .nav-links a.active {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.15);
}
.page-content .mobile-nav-toggle span { background: #fff; }
.page-content .user-status {
    background: #d4a574;
    color: #1a1a2e;
}

/* 电影Hero */
.movie-hero {
    position: relative;
    min-height: 540px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 16px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}
.movie-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}
.movie-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.4) 100%);
}
.movie-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 48px 40px;
}
.movie-hero-poster {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 2/3;
}
.movie-hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.movie-hero-text { display: flex; flex-direction: column; gap: 16px; }
.movie-hero-meta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--font-sm);
    color: #b8b0a5;
}
.movie-hero-meta-row .mh-tag {
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 500;
}
.movie-hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.movie-hero-text .mh-alternate {
    font-size: var(--font-sm);
    color: #8a8478;
    font-style: italic;
}
.movie-hero-score {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}
.score-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: conic-gradient(#d4a574 0% 92%, rgba(212, 165, 116, 0.2) 92% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    position: relative;
}
.score-circle::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #1a1a2e;
}
.score-circle span { position: relative; z-index: 1; }
.score-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.score-info strong { color: #d4a574; font-size: var(--font-md); }
.score-info small { color: #8a8478; font-size: var(--font-xs); }
.movie-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.btn-watch {
    background: #d4a574;
    color: #1a1a2e;
    border: none;
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-watch:hover {
    background: #c9a37a;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    transform: translateY(-1px);
}
.btn-fav {
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    padding: 10px 24px;
    border-radius: 28px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-fav:hover {
    background: rgba(212, 165, 116, 0.15);
}

/* 内容主体布局 */
.movie-body-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}
.movie-main { display: flex; flex-direction: column; gap: 32px; }

/* 剧情介绍 */
.movie-synopsis {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid #d4a574;
}
.movie-synopsis h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.movie-synopsis h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.movie-synopsis .synopsis-body {
    font-size: var(--font-md);
    line-height: 1.9;
    color: #4a4238;
    text-align: justify;
    text-indent: 2em;
}
.movie-synopsis .synopsis-body::first-letter {
    font-size: 1.5em;
    font-weight: 700;
    color: #d4a574;
}

/* 剧情时间线 */
.story-timeline {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.story-timeline h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.story-timeline h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #d4a574 0%, rgba(212, 165, 116, 0.2) 100%);
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4a574;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}
.timeline-item h4 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.timeline-item p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 演员画廊 */
.cast-gallery {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.cast-gallery h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cast-gallery h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cast-card {
    text-align: center;
    background: linear-gradient(180deg, #faf7f2 0%, #fff 100%);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}
.cast-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #d4a574;
}
.cast-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #d4a574;
    padding: 2px;
    background: #fff;
}
.cast-card h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.cast-card .cast-role {
    font-size: var(--font-xs);
    color: #d4a574;
    font-weight: 600;
}

/* 规格表 */
.specs-table {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.specs-table h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.specs-table h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.specs-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-sm);
}
.specs-row:nth-last-child(-n+2) { border-bottom: none; }
.specs-label {
    flex: 0 0 100px;
    color: var(--color-text-light);
    font-weight: 600;
}
.specs-value {
    flex: 1;
    color: #1a1a2e;
    font-weight: 500;
}

/* 幕后花絮 */
.trivia-grid {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.trivia-grid h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.trivia-grid h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.trivia-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.trivia-item {
    background: linear-gradient(135deg, #faf7f2 0%, #f5ede0 100%);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border-left: 3px solid #d4a574;
}
.trivia-item h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trivia-item h4 .num {
    width: 22px;
    height: 22px;
    background: #d4a574;
    color: #1a1a2e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xs);
    font-weight: 700;
}
.trivia-item p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 获奖信息 */
.awards-list {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}
.awards-list h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.awards-list h2::before {
    content: '';
    width: 6px;
    height: 24px;
    background: #d4a574;
    border-radius: 3px;
}
.award-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.award-row:last-child { border-bottom: none; }
.award-medal {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c9a37a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-weight: 800;
    font-size: var(--font-md);
    flex-shrink: 0;
}
.award-info { flex: 1; }
.award-info h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #1a1a2e;
}
.award-info p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-top: 2px;
}
.award-status {
    background: rgba(212, 165, 116, 0.15);
    color: #8a5e00;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: var(--font-xs);
    font-weight: 700;
    white-space: nowrap;
}

/* 内容侧边栏 */
.movie-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.movie-side-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
}
.movie-side-card h4 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.movie-side-card .rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: var(--font-xs);
    color: var(--color-text-light);
}
.movie-side-card .rating-bar .bar {
    flex: 1;
    height: 6px;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 3px;
    overflow: hidden;
}
.movie-side-card .rating-bar .bar div {
    height: 100%;
    background: #d4a574;
    border-radius: 3px;
}

/* ============================================================
   ============ 明星介绍页 (page-star-intro) 样式 ============
   暖玫瑰/粉色杂志风
   ============================================================ */
.page-star-intro {
    --color-primary: #8e3b46;
    --color-accent: #d97a82;
    --color-warm: #f5c6cb;
    --color-light: #fdf5f6;
    --color-card-bg: #ffffff;
    --color-border: #f0d8db;
    background: #fdf5f6;
}
.page-star-intro .site-header {
    background: #fff;
    border-bottom: 2px solid #d97a82;
}
.page-star-intro .site-brand h1 { color: #8e3b46; }
.page-star-intro .site-brand h1 .accent-dot { color: #d97a82; }
.page-star-intro .nav-links a { color: #6e3038; }
.page-star-intro .nav-links a:hover, .page-star-intro .nav-links a.active {
    color: #d97a82;
    background: rgba(217, 122, 130, 0.12);
}
.page-star-intro .user-status {
    background: #d97a82;
    color: #fff;
}

/* 杂志风Hero */
.magazine-hero {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}
.magazine-hero-text {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.magazine-hero-text .mh-issue {
    display: inline-block;
    background: #d97a82;
    color: #fff;
    padding: 4px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: var(--font-xs);
    letter-spacing: 1.5px;
    width: fit-content;
}
.magazine-hero-text h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #8e3b46;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-style: italic;
}
.magazine-hero-text p {
    font-size: var(--font-md);
    color: var(--color-text-light);
    line-height: 1.8;
    font-style: italic;
}
.magazine-hero-image {
    background: linear-gradient(135deg, #f5c6cb 0%, #d97a82 100%);
    position: relative;
    overflow: hidden;
}
.magazine-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.magazine-hero-image::after {
    content: 'COVER';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #8e3b46;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* 明星档案卡片 */
.star-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.star-profile-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}
.star-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(142, 59, 70, 0.15);
    border-color: #d97a82;
}
.star-profile-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf5f6 0%, #f5c6cb 100%);
}
.star-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.star-profile-card:hover .star-profile-img img { transform: scale(1.06); }
.star-profile-img .sp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d97a82;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: var(--font-xs);
    font-weight: 700;
}
.star-profile-info { padding: 20px; text-align: center; }
.star-profile-info h3 {
    font-size: var(--font-xl);
    font-weight: 800;
    color: #8e3b46;
    margin-bottom: 4px;
    font-style: italic;
}
.star-profile-info .sp-title {
    font-size: var(--font-sm);
    color: #d97a82;
    font-weight: 600;
    margin-bottom: 8px;
}
.star-profile-info .sp-bio {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.star-profile-info .sp-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
    font-size: var(--font-xs);
}
.star-profile-info .sp-stats div span:first-child {
    display: block;
    color: #d97a82;
    font-size: var(--font-lg);
    font-weight: 800;
}
.star-profile-info .sp-stats div span:last-child {
    color: var(--color-text-light);
}

/* 人生历程时间线 */
.life-timeline {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-top: 24px;
    border-top: 4px solid #d97a82;
}
.life-timeline h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #8e3b46;
    margin-bottom: 24px;
    font-style: italic;
}
.life-timeline .lt-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--color-border);
}
.life-timeline .lt-row:last-child { border-bottom: none; }
.life-timeline .lt-year {
    font-size: 1.6rem;
    font-weight: 800;
    color: #d97a82;
    font-style: italic;
}
.life-timeline .lt-content h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #8e3b46;
    margin-bottom: 4px;
}
.life-timeline .lt-content p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 作品列表 */
.filmography {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-top: 24px;
}
.filmography h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #8e3b46;
    margin-bottom: 24px;
    font-style: italic;
}
.filmography-list { display: flex; flex-direction: column; gap: 14px; }
.film-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}
.film-row:hover {
    background: rgba(217, 122, 130, 0.06);
    border-left-color: #d97a82;
}
.film-row .film-year {
    font-size: var(--font-md);
    font-weight: 800;
    color: #d97a82;
}
.film-row .film-info h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #8e3b46;
}
.film-row .film-info p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-top: 2px;
}
.film-row .film-rating {
    background: #d97a82;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: var(--font-xs);
    font-weight: 700;
}

/* ============================================================
   ============ 平台介绍页 (page-platform) 样式 ============
   森林绿叙事风
   ============================================================ */
.page-platform {
    --color-primary: #1f4e3d;
    --color-accent: #d4a017;
    --color-warm: #8db580;
    --color-light: #f1f6ef;
    --color-card-bg: #ffffff;
    --color-border: #d4e4cf;
    background: #f1f6ef;
}
.page-platform .site-header {
    background: #1f4e3d;
    border-bottom-color: #143527;
}
.page-platform .site-brand h1 { color: #fff; }
.page-platform .site-brand h1 .accent-dot { color: #d4a017; }
.page-platform .nav-links a { color: #c8d6c0; }
.page-platform .nav-links a:hover, .page-platform .nav-links a.active {
    color: #d4a017;
    background: rgba(212, 160, 23, 0.15);
}
.page-platform .mobile-nav-toggle span { background: #fff; }
.page-platform .user-status {
    background: #d4a017;
    color: #1f4e3d;
}

/* 叙事Hero */
.story-hero {
    background: linear-gradient(135deg, #1f4e3d 0%, #2d6b54 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    margin-top: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(31, 78, 61, 0.25);
}
.story-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.story-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(141, 181, 128, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.story-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.story-hero-content .sh-quote {
    font-size: 4rem;
    color: #d4a017;
    line-height: 0.8;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.story-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.story-hero-content p {
    font-size: var(--font-lg);
    line-height: 1.8;
    color: #d4e4cf;
}

/* 使命愿景 */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.mv-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border-top: 4px solid #1f4e3d;
    transition: var(--transition-smooth);
}
.mv-card:nth-child(2) { border-top-color: #d4a017; }
.mv-card:nth-child(3) { border-top-color: #8db580; }
.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.mv-card .mv-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f4e3d;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 8px;
}
.mv-card:nth-child(2) .mv-num { color: #d4a017; }
.mv-card:nth-child(3) .mv-num { color: #8db580; }
.mv-card h3 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: #1f4e3d;
    margin-bottom: 10px;
}
.mv-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 发展历程时间线 */
.journey-timeline {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-top: 32px;
    box-shadow: var(--shadow-card);
    border-left: 6px solid #1f4e3d;
}
.journey-timeline h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #1f4e3d;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.journey-timeline h2::before {
    content: '🛤';
    font-size: 1.4rem;
}
.journey-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--color-border);
    position: relative;
}
.journey-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.journey-row .jr-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4a017;
    font-family: Georgia, serif;
}
.journey-row .jr-event {
    background: #f1f6ef;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 3px solid #8db580;
}
.journey-row .jr-event h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #1f4e3d;
    margin-bottom: 4px;
}
.journey-row .jr-event p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 用户证言 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border-top: 3px solid #d4a017;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 3rem;
    color: rgba(212, 160, 23, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    padding-top: 16px;
    margin-bottom: 16px;
}
.testimonial-card .tc-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}
.testimonial-card .tc-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card .tc-author h5 {
    font-size: var(--font-sm);
    font-weight: 700;
    color: #1f4e3d;
}
.testimonial-card .tc-author small {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

/* 数据统计 */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.stat-card {
    background: linear-gradient(135deg, #1f4e3d 0%, #2d6b54 100%);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.stat-card .stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #d4a017;
    line-height: 1;
    margin-bottom: 6px;
    font-family: Georgia, serif;
}
.stat-card .stat-label {
    font-size: var(--font-sm);
    color: #c8d6c0;
}

/* ============================================================
   ============ APP下载页 (page-download) 样式 ============
   紫色活力风
   ============================================================ */
.page-download {
    --color-primary: #5b2c8c;
    --color-accent: #ff6b9d;
    --color-warm: #d4b5e0;
    --color-light: #f7f2fc;
    --color-card-bg: #ffffff;
    --color-border: #e5d4f0;
    background: linear-gradient(180deg, #f7f2fc 0%, #efe4f7 100%);
}
.page-download .site-header {
    background: #5b2c8c;
    border-bottom-color: #3f1d62;
}
.page-download .site-brand h1 { color: #fff; }
.page-download .site-brand h1 .accent-dot { color: #ff6b9d; }
.page-download .nav-links a { color: #d4b5e0; }
.page-download .nav-links a:hover, .page-download .nav-links a.active {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.15);
}
.page-download .mobile-nav-toggle span { background: #fff; }
.page-download .user-status {
    background: #ff6b9d;
    color: #fff;
}

.dl-hero {
    background: linear-gradient(135deg, #5b2c8c 0%, #8b3dc7 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-top: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(91, 44, 140, 0.3);
}
.dl-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}
.dl-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.dl-hero-content {
    position: relative;
    z-index: 1;
}
.dl-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.dl-hero p {
    font-size: var(--font-lg);
    color: #e5d4f0;
    max-width: 600px;
    margin: 0 auto 24px;
}
.dl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}
.dl-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #ff6b9d;
    color: #fff;
    border-radius: 32px;
    font-weight: 700;
    font-size: var(--font-md);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    transition: var(--transition-smooth);
}
.dl-big-btn:hover {
    background: #ff4787;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.5);
}
.dl-big-btn.alt {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.dl-big-btn.alt:hover {
    background: rgba(255, 255, 255, 0.25);
}

.dl-qr-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.dl-qr-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 4px solid #ff6b9d;
    transition: var(--transition-smooth);
}
.dl-qr-card:nth-child(2) { border-top-color: #5b2c8c; }
.dl-qr-card:nth-child(3) { border-top-color: #8b3dc7; }
.dl-qr-card:nth-child(4) { border-top-color: #d4b5e0; }
.dl-qr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.dl-qr-card .qr-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    background: #f7f2fc;
    border: 2px solid #e5d4f0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b2c8c;
    font-weight: 800;
    font-size: var(--font-sm);
}
.dl-qr-card h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #5b2c8c;
    margin-bottom: 4px;
}
.dl-qr-card p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

/* 版本对比 */
.dl-version-compare {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-top: 24px;
}
.dl-version-compare h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #5b2c8c;
    margin-bottom: 24px;
}
.dl-version-table {
    width: 100%;
    border-collapse: collapse;
}
.dl-version-table th {
    background: linear-gradient(135deg, #5b2c8c 0%, #8b3dc7 100%);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: var(--font-sm);
}
.dl-version-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.dl-version-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.dl-version-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-sm);
    color: var(--color-text-light);
}
.dl-version-table tr:hover td { background: #f7f2fc; }
.dl-version-table .feature-tag {
    display: inline-block;
    background: #ff6b9d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 4px;
}

/* 更新日志 */
.dl-changelog {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-top: 24px;
    border-left: 6px solid #ff6b9d;
}
.dl-changelog h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #5b2c8c;
    margin-bottom: 24px;
}
.dl-cl-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--color-border);
}
.dl-cl-row:last-child { border-bottom: none; }
.dl-cl-version {
    background: linear-gradient(135deg, #5b2c8c 0%, #8b3dc7 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    height: fit-content;
    width: fit-content;
}
.dl-cl-row:nth-child(2) .dl-cl-version { background: linear-gradient(135deg, #ff6b9d 0%, #ff4787 100%); }
.dl-cl-row:nth-child(3) .dl-cl-version { background: linear-gradient(135deg, #8db580 0%, #5b8a4d 100%); }
.dl-cl-content h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #5b2c8c;
    margin-bottom: 4px;
}
.dl-cl-content ul {
    list-style: none;
    padding: 0;
}
.dl-cl-content ul li {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    padding: 3px 0 3px 18px;
    position: relative;
}
.dl-cl-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: 800;
}

/* ============================================================
   ============ 版权说明页 (page-copyright) 样式 ============
   板岩灰文章风
   ============================================================ */
.page-copyright {
    --color-primary: #2c3e50;
    --color-accent: #e67e22;
    --color-warm: #95a5a6;
    --color-light: #f5f6f7;
    --color-card-bg: #ffffff;
    --color-border: #e1e4e8;
    background: #f5f6f7;
}
.page-copyright .site-header {
    background: #2c3e50;
    border-bottom-color: #1c2e3d;
}
.page-copyright .site-brand h1 { color: #fff; }
.page-copyright .site-brand h1 .accent-dot { color: #e67e22; }
.page-copyright .nav-links a { color: #b8c5d6; }
.page-copyright .nav-links a:hover, .page-copyright .nav-links a.active {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.15);
}
.page-copyright .mobile-nav-toggle span { background: #fff; }
.page-copyright .user-status {
    background: #e67e22;
    color: #fff;
}

.cr-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-top: 16px;
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}
.cr-hero::after {
    content: '©';
    position: absolute;
    right: -40px;
    bottom: -100px;
    font-size: 18rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: Georgia, serif;
}
.cr-hero-content { position: relative; z-index: 1; }
.cr-hero .breadcrumb {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}
.cr-hero .breadcrumb span { color: #e67e22; }
.cr-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.cr-hero p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    line-height: 1.7;
}

.cr-article {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    margin-top: 24px;
    box-shadow: var(--shadow-card);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.cr-article h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #2c3e50;
    margin: 32px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cr-article h2:first-of-type { margin-top: 0; }
.cr-article h2 .cr-num {
    background: #2c3e50;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-md);
    font-weight: 800;
}
.cr-article h3 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0 10px;
}
.cr-article p {
    font-size: var(--font-md);
    color: #4a5560;
    line-height: 1.9;
    margin-bottom: 14px;
    text-align: justify;
}
.cr-article ul {
    margin: 12px 0 16px 24px;
    font-size: var(--font-md);
    color: #4a5560;
    line-height: 1.9;
}
.cr-article ul li {
    padding: 4px 0;
    list-style: disc;
}
.cr-warning {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe9d4 100%);
    border-left: 4px solid #e67e22;
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
    color: #5a3a1a;
    line-height: 1.7;
}
.cr-warning strong { color: #c0392b; }
.cr-meta-box {
    background: #f5f6f7;
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 16px 0;
    font-size: var(--font-sm);
    color: #4a5560;
    line-height: 1.9;
}
.cr-meta-box strong { color: #2c3e50; }

/* ============================================================
   ============ 联系我们页 (page-contact) 样式 ============
   青色表单风
   ============================================================ */
.page-contact {
    --color-primary: #00838f;
    --color-accent: #ff7043;
    --color-warm: #80cbc4;
    --color-light: #e0f7fa;
    --color-card-bg: #ffffff;
    --color-border: #b2dfdb;
    background: linear-gradient(180deg, #e0f7fa 0%, #ffffff 100%);
}
.page-contact .site-header {
    background: #00838f;
    border-bottom-color: #006064;
}
.page-contact .site-brand h1 { color: #fff; }
.page-contact .site-brand h1 .accent-dot { color: #ff7043; }
.page-contact .nav-links a { color: #b2dfdb; }
.page-contact .nav-links a:hover, .page-contact .nav-links a.active {
    color: #ff7043;
    background: rgba(255, 112, 67, 0.18);
}
.page-contact .mobile-nav-toggle span { background: #fff; }
.page-contact .user-status {
    background: #ff7043;
    color: #fff;
}

.ct-hero {
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin-top: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 131, 143, 0.25);
}
.ct-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.ct-hero p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto;
}

.ct-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.ct-method-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 4px solid #00838f;
    transition: var(--transition-smooth);
}
.ct-method-card:nth-child(2) { border-top-color: #ff7043; }
.ct-method-card:nth-child(3) { border-top-color: #00acc1; }
.ct-method-card:nth-child(4) { border-top-color: #80cbc4; }
.ct-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.ct-method-card .ct-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(0, 131, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #00838f;
}
.ct-method-card:nth-child(2) .ct-icon { background: rgba(255, 112, 67, 0.1); color: #ff7043; }
.ct-method-card:nth-child(3) .ct-icon { background: rgba(0, 172, 193, 0.1); color: #00acc1; }
.ct-method-card:nth-child(4) .ct-icon { background: rgba(128, 203, 196, 0.1); color: #00838f; }
.ct-method-card h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #00838f;
    margin-bottom: 6px;
}
.ct-method-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.ct-form-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.ct-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border-top: 6px solid #00838f;
}
.ct-form h2 {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: #00838f;
    margin-bottom: 24px;
}
.ct-form .ct-field {
    margin-bottom: 16px;
}
.ct-form label {
    display: block;
    font-size: var(--font-sm);
    font-weight: 600;
    color: #00838f;
    margin-bottom: 6px;
}
.ct-form input, .ct-form textarea, .ct-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #b2dfdb;
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
    font-family: inherit;
    transition: var(--transition-fast);
    background: #f5fbfa;
}
.ct-form input:focus, .ct-form textarea:focus, .ct-form select:focus {
    outline: none;
    border-color: #00838f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.1);
}
.ct-form textarea { resize: vertical; min-height: 120px; }
.ct-form .ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-form .ct-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--font-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.ct-form .ct-submit:hover {
    background: linear-gradient(135deg, #006064 0%, #00838f 100%);
    box-shadow: 0 6px 20px rgba(0, 131, 143, 0.4);
    transform: translateY(-1px);
}

.ct-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ct-info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.ct-info-card h4 {
    font-size: var(--font-md);
    font-weight: 700;
    color: #00838f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-info-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}
.ct-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ct-info-card ul li {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    padding: 4px 0;
    border-bottom: 1px dashed var(--color-border);
}
.ct-info-card ul li:last-child { border-bottom: none; }

/* ============================================================
   ============ 响应式 ============
   ============================================================ */
@media (max-width: 1024px) {
    .movie-grid { grid-template-columns: repeat(4, 1fr); }
    .platform-intro-cards { grid-template-columns: repeat(2, 1fr); }
    .review-layout { grid-template-columns: 1fr 260px; gap: 16px; }
    .star-grid, .plot-grid, .detail-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .hm-list-grid { grid-template-columns: repeat(3, 1fr); }
    .hm-hero-content { grid-template-columns: 1fr; }
    .hm-hero-poster { max-width: 280px; margin: 0 auto; }
    .movie-hero-content { grid-template-columns: 240px 1fr; padding: 32px 24px; }
    .movie-hero-text h1 { font-size: 2rem; }
    .movie-body-layout { grid-template-columns: 1fr; }
    .movie-sidebar { position: static; }
    .star-profile-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-vision, .testimonials, .ct-methods { grid-template-columns: repeat(2, 1fr); }
    .platform-stats { grid-template-columns: repeat(2, 1fr); }
    .dl-qr-row { grid-template-columns: repeat(2, 1fr); }
    .ct-form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
        --font-hero: 1.5rem;
        --font-3xl: 1.3rem;
        --font-2xl: 1.2rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 12px 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 16px 16px;
        gap: 2px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 10px 16px;
        width: 100%;
        border-radius: 8px;
        font-size: var(--font-md);
    }
    .mobile-nav-toggle { display: flex; }
    .hero-banner { flex-direction: column; min-height: auto; }
    .hero-image { min-height: 220px; order: -1; }
    .hero-text { padding: 24px 16px; text-align: center; }
    .hero-text p { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-badge { margin: 0 auto; }
    .movie-grid, .star-grid, .plot-grid, .detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .platform-intro-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .review-layout { grid-template-columns: 1fr; gap: 20px; }
    .sidebar { position: static; order: -1; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .section { padding: 28px 0; }
    .section-title { font-size: var(--font-2xl); }

    .hm-list-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hm-hero { padding: 24px 20px; }
    .hm-hero-text h1 { font-size: 1.8rem; }

    .movie-hero-content { grid-template-columns: 1fr; padding: 24px 20px; }
    .movie-hero-poster { max-width: 240px; margin: 0 auto; }
    .movie-hero-text h1 { font-size: 1.8rem; }
    .movie-synopsis, .story-timeline, .cast-gallery, .specs-table, .trivia-grid, .awards-list { padding: 20px; }
    .cast-grid, .trivia-items { grid-template-columns: repeat(2, 1fr); }
    .specs-grid { grid-template-columns: 1fr; }
    .movie-hero-meta-row { font-size: var(--font-xs); }

    .magazine-hero { grid-template-columns: 1fr; }
    .magazine-hero-text { padding: 28px 20px; }
    .magazine-hero-text h1 { font-size: 1.8rem; }
    .star-profile-grid { grid-template-columns: 1fr; }
    .life-timeline .lt-row { grid-template-columns: 80px 1fr; gap: 12px; }
    .film-row { grid-template-columns: 60px 1fr; }
    .film-row .film-rating { display: none; }

    .story-hero, .dl-hero, .cr-hero, .ct-hero { padding: 32px 20px; }
    .story-hero-content h1, .dl-hero h1, .cr-hero h1, .ct-hero h1 { font-size: 1.8rem; }
    .mission-vision, .testimonials, .ct-methods { grid-template-columns: 1fr; }
    .platform-stats { grid-template-columns: repeat(2, 1fr); }
    .dl-qr-row { grid-template-columns: 1fr; }
    .dl-version-table { font-size: var(--font-xs); }
    .dl-version-table th, .dl-version-table td { padding: 8px; }

    .cr-article { padding: 24px 20px; }
    .journey-row { grid-template-columns: 60px 1fr; gap: 12px; }
    .journey-row .jr-year { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .movie-grid, .platform-intro-cards, .star-grid, .plot-grid, .detail-grid, .hm-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hero-text { padding: 16px 12px; }
    .hero-text h2 { font-size: 1.25rem; }
    .btn-primary, .btn-outline { padding: 10px 20px; font-size: var(--font-sm); }
    .section-title { font-size: 1.1rem; }
    .cast-grid, .trivia-items { grid-template-columns: 1fr; }
    .platform-stats { grid-template-columns: 1fr; }
}