/* ========== 全局变量与基础重置 ========== */
:root {
    --color-cyan: #44d9e6;
    --color-cyan-dark: #3dc4d0;
    --color-navy: #393c83;
    --color-navy-dark: #2a2b5f;
    --color-bg: #f5f6fa;
    --color-white: #ffffff;
    --color-text: #1a1a2e;
    --color-text-light: #555;
    --color-border: #e8eaef;
    --color-shadow: rgba(42, 43, 95, 0.08);
    --color-shadow-hover: rgba(42, 43, 95, 0.16);
    --color-warm: #e05555;
    --color-gold: #f5a623;
    --color-violet: #6c5ce7;
    --color-pink: #ff6b9d;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1320px;
    --header-height: 64px;
    --font-xs: 0.75rem;
    --font-sm: 0.85rem;
    --font-base: 0.95rem;
    --font-md: 1.05rem;
    --font-lg: 1.2rem;
    --font-xl: 1.5rem;
    --font-2xl: 1.85rem;
    --font-3xl: 2.2rem;
}

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

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

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

img {
    max-width: 100%;
    max-height: 500px;
    display: block;
}

/* ========== 顶部导航 ========== */
.header {
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px var(--color-shadow);
    height: var(--header-height);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}
.header-logo h1 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-navy-dark);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
}
.header-logo h1 span {
    color: var(--color-cyan);
}
.header-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-logo .logo-dot {
    width: 10px;
    height: 10px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: nowrap;
}
.nav-links li a {
    display: inline-block;
    padding: 8px 13px;
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--font-sm);
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-links li a:hover,
.nav-links li a:focus-visible {
    color: var(--color-cyan-dark);
    background: rgba(68, 217, 230, 0.08);
    outline: none;
}
.nav-links li a.active {
    color: var(--color-cyan-dark);
    background: rgba(68, 217, 230, 0.12);
    font-weight: 600;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm);
    color: var(--color-text-light);
    white-space: nowrap;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--color-border);
    transition: var(--transition);
    background: var(--color-white);
    font-weight: 500;
}
.header-user:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan-dark);
    box-shadow: 0 2px 10px rgba(68, 217, 230, 0.12);
}
.header-user .user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-xs);
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    flex-shrink: 0;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 12px 16px;
        gap: 2px;
        border-bottom: 2px solid var(--color-border);
        box-shadow: 0 8px 24px var(--color-shadow);
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 11px 16px;
        border-radius: var(--radius-sm);
        font-size: var(--font-base);
    }
    .header-inner {
        padding: 0 14px;
        gap: 10px;
    }
    .header-logo h1 {
        font-size: var(--font-lg);
    }
}

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

/* ========== 首页 Banner ========== */
.banner-section {
    margin-bottom: 28px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, #1e2050 100%);
    display: flex;
    align-items: stretch;
    min-height: 360px;
    position: relative;
    box-shadow: 0 8px 32px rgba(42, 43, 95, 0.2);
}
.banner-text {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 2;
    min-width: 0;
}
.banner-text .banner-badge {
    display: inline-block;
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: var(--font-xs);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    width: fit-content;
}
.banner-text h2 {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: 1px;
}
.banner-text p {
    font-size: var(--font-base);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 500px;
}
.banner-text .banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: var(--font-sm);
    opacity: 0.85;
    margin-bottom: 20px;
}
.banner-text .banner-meta span {
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 16px;
}
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-size: var(--font-base);
    transition: var(--transition);
    width: fit-content;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.banner-btn:hover {
    background: #5de8f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 217, 230, 0.35);
}
.banner-image {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    max-height: 500px;
}
.banner-section:hover .banner-image img {
    transform: scale(1.04);
}
.banner-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, var(--color-navy-dark), transparent);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 768px) {
    .banner-section {
        flex-direction: column;
        min-height: auto;
    }
    .banner-image {
        flex: 0 0 auto;
        height: 220px;
        order: -1;
        min-height: auto;
    }
    .banner-image::after {
        width: 100%;
        height: 50px;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, var(--color-navy-dark), transparent);
    }
    .banner-text {
        padding: 24px 20px;
    }
    .banner-text h2 {
        font-size: var(--font-2xl);
    }
}

/* ========== 首页双栏布局 ========== */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sidebar {
        order: 99;
    }
}
.main-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

/* ========== 板块标题 ========== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.section-title h2 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-navy-dark);
    position: relative;
    padding-left: 16px;
    letter-spacing: 0.5px;
}
.section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--color-cyan);
    border-radius: 2px;
}
.section-title .more-link {
    font-size: var(--font-sm);
    color: var(--color-cyan-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.section-title .more-link:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

/* ========== 首页平台介绍卡片 ========== */
.intro-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 2px 12px var(--color-shadow);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.intro-card .intro-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}
.intro-card .intro-text h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}
.intro-card .intro-text p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.5;
    max-width: 600px;
}

/* ========== 首页热门影视网格 ========== */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
@media (max-width: 1200px) {
    .movie-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .movie-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.movie-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.movie-card .card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 142%;
    overflow: hidden;
    background: #eef0f5;
}
.movie-card .card-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 460px;
}
.movie-card:hover .card-img-wrap img {
    transform: scale(1.06);
}
.movie-card .card-img-wrap .quality-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    z-index: 2;
    letter-spacing: 0.5px;
}
.movie-card .card-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.movie-card .card-info h4 {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--color-navy-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.movie-card .card-info .meta-row {
    font-size: 11px;
    color: var(--color-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1.4;
}
.movie-card .card-info .type-badge {
    display: inline-block;
    font-size: 10px;
    background: #f0f4ff;
    color: var(--color-navy);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    width: fit-content;
}

/* ========== 首页明星介绍 ========== */
.star-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .star-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.star-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    padding-bottom: 14px;
}
.star-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.star-card .star-img-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #eef0f5;
}
.star-card .star-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 320px;
}
.star-card:hover .star-img-wrap img {
    transform: scale(1.05);
}
.star-card h4 {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-top: 10px;
}
.star-card .star-role {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-top: 2px;
}

/* ========== 首页剧情介绍 ========== */
.plot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 600px) {
    .plot-grid { grid-template-columns: 1fr; }
}
.plot-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
    display: flex;
    gap: 14px;
    padding: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}
.plot-card:hover {
    box-shadow: 0 6px 20px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.plot-card .plot-img-wrap {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #eef0f5;
}
.plot-card .plot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    max-height: 140px;
}
.plot-card:hover .plot-img-wrap img {
    transform: scale(1.06);
}
.plot-card .plot-info h4 {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--color-navy-dark);
    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: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 首页电影详细介绍 ========== */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 700px) {
    .detail-grid { grid-template-columns: 1fr; }
}
.detail-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}
.detail-card:hover {
    box-shadow: 0 6px 20px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.detail-card .detail-img-wrap {
    width: 100%;
    padding-top: 56%;
    position: relative;
    overflow: hidden;
    background: #eef0f5;
}
.detail-card .detail-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 360px;
}
.detail-card:hover .detail-img-wrap img {
    transform: scale(1.04);
}
.detail-card .detail-info {
    padding: 14px 16px;
}
.detail-card .detail-info h4 {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 6px;
}
.detail-card .detail-info .detail-meta {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-bottom: 6px;
}
.detail-card .detail-info p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 评论列表 ========== */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comment-item {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: 0 1px 6px var(--color-shadow);
    border-left: 3px solid var(--color-cyan);
    transition: var(--transition);
}
.comment-item:hover {
    box-shadow: 0 4px 14px var(--color-shadow-hover);
    border-left-color: var(--color-navy);
}
.comment-item .comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-item .comment-user {
    font-weight: 600;
    font-size: var(--font-sm);
    color: var(--color-navy-dark);
}
.comment-item .comment-time {
    font-size: 11px;
    color: #999;
    margin-left: auto;
}
.comment-item .comment-body {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== 侧边栏 ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: flex-start;
}
@media (max-width: 1024px) {
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 550px) {
    .sidebar { grid-template-columns: 1fr; }
}
.sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.sidebar-card h3 {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f5;
    position: relative;
}
.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-cyan);
    border-radius: 1px;
}
.total-reads-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-cyan-dark);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 4px;
}
.total-reads-label {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-bottom: 2px;
}
.total-reads-update {
    font-size: 11px;
    color: #999;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: var(--font-sm);
}
.stat-row:last-child { border-bottom: none; }
.stat-row .stat-val {
    font-weight: 700;
    color: var(--color-navy);
}
.rank-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rank-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-sm);
    padding: 6px 0;
}
.rank-list li .rank-num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}
.rank-list li:nth-child(1) .rank-num { background: #f5a623; }
.rank-list li:nth-child(2) .rank-num { background: #c0c0c0; color: #333; }
.rank-list li:nth-child(3) .rank-num { background: #cd7f32; }
.rank-list li a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-list li a:hover { color: var(--color-cyan-dark); }
.sidebar-star-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    text-decoration: none;
}
.sidebar-star-mini img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-cyan);
    max-width: 44px;
    max-height: 44px;
}
.sidebar-star-mini span {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--color-navy-dark);
}

/* ========== APP下载区 ========== */
.download-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.download-section h2 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 20px;
    text-align: center;
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 700px) {
    .download-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    padding: 14px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-navy-dark);
    font-weight: 600;
    font-size: var(--font-sm);
    transition: var(--transition);
    border: 1.5px solid var(--color-border);
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}
.download-btn:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 4px 16px rgba(68, 217, 230, 0.18);
    transform: translateY(-2px);
}
.download-btn img {
    flex-shrink: 0;
    max-width: 24px;
    max-height: 24px;
}

/* ========== 常见问题 ========== */
.faq-section { margin-bottom: 24px; }
.faq-section h2 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 16px;
    text-align: center;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 6px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.faq-item summary {
    padding: 14px 18px;
    font-weight: 600;
    font-size: var(--font-base);
    color: var(--color-navy-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan-dark);
    transition: var(--transition);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.faq-item[open] summary::after {
    content: '−';
    color: var(--color-navy);
}
.faq-item .faq-answer {
    padding: 0 18px 16px;
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== 友情链接 ========== */
.friendlinks-section {
    margin-bottom: 20px;
    text-align: center;
}
.friendlinks-section h3 {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}
.friendlinks-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.link_friendlinks_a {
    display: inline-block;
    padding: 7px 16px;
    background: var(--color-white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: var(--font-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    white-space: nowrap;
}
.link_friendlinks_a:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan-dark);
    background: #f8feff;
    box-shadow: 0 2px 8px rgba(68, 217, 230, 0.12);
}

/* ========== 底部导航 ========== */
.footer {
    width: 100%;
    background: var(--color-navy-dark);
    color: #ccc;
    padding: 28px 20px;
    text-align: center;
    font-size: var(--font-xs);
    line-height: 1.8;
    margin-top: 30px;
}
.footer a {
    color: var(--color-cyan);
    text-decoration: none;
    transition: var(--transition);
}
.footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 10px;
}
.footer .footer-links a { font-weight: 500; }
.footer .footer-brand-mobile {
    margin-top: 6px;
    font-weight: 600;
    font-size: var(--font-sm);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f5; }
::-webkit-scrollbar-thumb { background: #c8ccd8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a5b5; }

@media (max-width: 480px) {
    .main-container { padding: 12px 8px; }
    .section-title h2 { font-size: var(--font-lg); }
    .banner-text h2 { font-size: var(--font-xl); }
    .download-section { padding: 20px 14px; }
    .intro-card { padding: 16px; flex-direction: column; text-align: center; }
}

/* ===================================================== */
/* ========== 影视列表页 (List) ========== */
/* ===================================================== */
.list-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--color-navy) 100%);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.list-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(68,217,230,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.list-hero h1 {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}
.list-hero p {
    font-size: var(--font-base);
    opacity: 0.85;
    position: relative;
}
.list-hero .hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 18px;
    position: relative;
}
.list-hero .hero-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: var(--font-sm);
    backdrop-filter: blur(8px);
}

.filter-bar {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm);
    color: var(--color-text-light);
}
.filter-group .filter-label {
    font-weight: 600;
    color: var(--color-navy-dark);
}
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-bg);
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: 14px;
    font-size: var(--font-xs);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}
.filter-tag:hover, .filter-tag.active {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    border-color: var(--color-cyan-dark);
    font-weight: 600;
}

.list-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 1024px) {
    .list-layout { grid-template-columns: 1fr; }
}
.list-movie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .list-movie-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .list-movie-grid { grid-template-columns: repeat(2, 1fr); }
}
.list-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--color-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.list-card .list-card-img {
    position: relative;
    width: 100%;
    padding-top: 140%;
    overflow: hidden;
    background: #eef0f5;
}
.list-card .list-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 420px;
}
.list-card:hover .list-card-img img { transform: scale(1.06); }
.list-card .list-card-img .list-quality {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(42, 43, 95, 0.85);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
}
.list-card .list-card-img .list-score {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--color-warm), #ff8888);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    z-index: 2;
}
.list-card .list-card-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.list-card .list-card-body h4 {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--color-navy-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-card .list-card-body .list-card-meta {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.list-card .list-card-body .list-card-type {
    font-size: 10px;
    background: #f0f4ff;
    color: var(--color-navy);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    align-self: flex-start;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--color-white);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-sm);
    font-weight: 500;
    box-shadow: 0 1px 4px var(--color-shadow);
    transition: var(--transition);
}
.pagination a:hover {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
}
.pagination .current {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    font-weight: 700;
}

.list-sidebar-card {
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.hot-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dashed #f0f0f5;
}
.hot-rank-item:last-child { border-bottom: none; }
.hot-rank-item .hr-num {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--color-bg);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.hot-rank-item:nth-child(1) .hr-num { background: var(--color-warm); color: #fff; }
.hot-rank-item:nth-child(2) .hr-num { background: var(--color-gold); color: #fff; }
.hot-rank-item:nth-child(3) .hr-num { background: #cd7f32; color: #fff; }
.hot-rank-item .hr-title {
    font-size: var(--font-sm);
    color: var(--color-text);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-rank-item:hover .hr-title { color: var(--color-cyan-dark); }
.hot-rank-item .hr-score {
    font-size: var(--font-xs);
    color: var(--color-warm);
    font-weight: 600;
}

/* ===================================================== */
/* ========== 影视内容详情页 (Detail) ========== */
/* ===================================================== */
.detail-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 28px;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: #1a1a2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.5);
    transform: scale(1.05);
    max-width: none;
    max-height: none;
}
.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    color: #fff;
}
@media (max-width: 768px) {
    .detail-hero-content {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
}
.detail-poster {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: #2a2a3e;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
}
.detail-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}
.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(68, 217, 230, 0.2);
    border: 1px solid rgba(68, 217, 230, 0.4);
    color: var(--color-cyan);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: var(--font-xs);
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.detail-badge.year { background: rgba(245, 166, 35, 0.2); border-color: rgba(245, 166, 35, 0.4); color: var(--color-gold); }
.detail-badge.score { background: rgba(224, 85, 85, 0.2); border-color: rgba(224, 85, 85, 0.4); color: #ff8888; }
.detail-badge.quality { background: rgba(108, 92, 231, 0.2); border-color: rgba(108, 92, 231, 0.4); color: #a29bfe; }
.detail-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.detail-altname {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}
.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
}
.detail-meta-row span strong {
    color: var(--color-cyan);
    font-weight: 600;
    margin-right: 4px;
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}
.btn-play {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    padding: 12px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-base);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(68, 217, 230, 0.4);
}
.btn-play:hover {
    background: #5de8f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 217, 230, 0.5);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-base);
    transition: var(--transition);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Detail 主体布局 */
.detail-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 1024px) {
    .detail-main { grid-template-columns: 1fr; }
}

/* 标签页 */
.tabs {
    display: flex;
    gap: 4px;
    background: var(--color-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 12px 16px 0;
    border: 1px solid var(--color-border);
    border-bottom: none;
    flex-wrap: wrap;
}
.tab {
    padding: 10px 18px;
    background: transparent;
    border: none;
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition);
    position: relative;
}
.tab.active {
    color: var(--color-navy-dark);
    background: var(--color-bg);
}
.tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--color-cyan);
    border-radius: 3px 3px 0 0;
}
.tab-content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 2px 10px var(--color-shadow);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.plot-text {
    font-size: var(--font-base);
    line-height: 1.8;
    color: var(--color-text);
    white-space: pre-line;
}
.plot-quote {
    background: var(--color-bg);
    border-left: 4px solid var(--color-cyan);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    font-style: italic;
    color: var(--color-text-light);
    font-size: var(--font-sm);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 600px) {
    .cast-grid { grid-template-columns: repeat(2, 1fr); }
}
.cast-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding-bottom: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.cast-card:hover {
    background: var(--color-white);
    border-color: var(--color-cyan);
    box-shadow: 0 6px 20px var(--color-shadow-hover);
    transform: translateY(-3px);
}
.cast-card .cast-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #eef0f5;
}
.cast-card .cast-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 220px;
}
.cast-card h5 {
    font-size: var(--font-base);
    color: var(--color-navy-dark);
    margin-top: 10px;
    font-weight: 600;
}
.cast-card .cast-role {
    font-size: var(--font-xs);
    color: var(--color-cyan-dark);
    margin-top: 2px;
}
.cast-card .cast-bio {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    padding: 6px 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-sm);
}
.info-table tr { border-bottom: 1px dashed #f0f0f5; }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td {
    padding: 12px 8px;
    text-align: left;
    vertical-align: top;
}
.info-table th {
    width: 110px;
    color: var(--color-text-light);
    font-weight: 500;
}
.info-table td {
    color: var(--color-text);
    font-weight: 500;
}
.info-table td .tag-pill {
    display: inline-block;
    background: var(--color-bg);
    color: var(--color-navy);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: var(--font-xs);
    margin-right: 6px;
    margin-bottom: 4px;
}

/* 详情侧边栏 */
.detail-side-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
}
.detail-side-card h4 {
    font-size: var(--font-md);
    color: var(--color-navy-dark);
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail-side-card h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--color-cyan);
    border-radius: 2px;
}
.side-action-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.side-action-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--font-sm);
    transition: var(--transition);
}
.side-action-list a:hover {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
}
.side-action-list a img {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
}

.related-movies {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.related-movies h3 {
    font-size: var(--font-md);
    color: var(--color-navy-dark);
    margin-bottom: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.related-movies h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--color-cyan);
    border-radius: 2px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.related-card {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}
.related-card:hover {
    background: var(--color-bg);
    border-color: var(--color-cyan);
}
.related-card img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    max-width: 60px;
    max-height: 80px;
    flex-shrink: 0;
}
.related-card .rel-info h5 {
    font-size: var(--font-sm);
    color: var(--color-navy-dark);
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card .rel-info .rel-meta {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

/* ===================================================== */
/* ========== 明星介绍页 (Star) ========== */
/* ===================================================== */
.star-hero {
    background: linear-gradient(135deg, #2a2b5f 0%, #6c5ce7 100%);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    margin-bottom: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.star-hero::before {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    border-radius: 50%;
}
.star-hero-content {
    display: flex;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .star-hero-content { flex-direction: column; text-align: center; }
}
.star-hero-portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    background: #fff;
}
.star-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 160px;
    max-height: 160px;
}
.star-hero-text h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 6px;
}
.star-hero-text .star-en {
    font-size: var(--font-base);
    opacity: 0.8;
    margin-bottom: 14px;
    font-style: italic;
}
.star-hero-text .star-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.star-hero-text .star-tags span {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: var(--font-xs);
    backdrop-filter: blur(8px);
}
.star-hero-text p {
    font-size: var(--font-sm);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}
.timeline-item {
    position: relative;
    padding-bottom: 24px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-cyan);
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-cyan);
}
.timeline-item h4 {
    font-size: var(--font-md);
    color: var(--color-navy-dark);
    margin-bottom: 4px;
    font-weight: 700;
}
.timeline-item .tl-year {
    display: inline-block;
    font-size: var(--font-xs);
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 6px;
}
.timeline-item p {
    color: var(--color-text-light);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.filmography {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 900px) {
    .filmography { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .filmography { grid-template-columns: repeat(2, 1fr); }
}
.filmography-item {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--color-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}
.filmography-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.filmography-item .fi-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #eef0f5;
}
.filmography-item .fi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 280px;
}
.filmography-item .fi-body {
    padding: 10px 12px;
}
.filmography-item h5 {
    font-size: var(--font-sm);
    color: var(--color-navy-dark);
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filmography-item .fi-year {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 768px) {
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .awards-grid { grid-template-columns: 1fr; }
}
.award-item {
    background: linear-gradient(135deg, #fff8e6 0%, #fffaf0 100%);
    border-radius: var(--radius);
    padding: 16px 18px;
    border: 1px solid #ffe2a0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.award-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #ff9a44);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}
.award-item .aw-text h5 {
    font-size: var(--font-sm);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 2px;
}
.award-item .aw-text p {
    font-size: var(--font-xs);
    color: var(--color-text-light);
}

/* ===================================================== */
/* ========== 平台介绍页 (Platform) ========== */
/* ===================================================== */
.platform-hero {
    background: linear-gradient(135deg, #2a2b5f 0%, #393c83 50%, #44d9e6 100%);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    margin-bottom: 32px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.platform-hero::before, .platform-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.platform-hero::before {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
}
.platform-hero::after {
    width: 280px;
    height: 280px;
    bottom: -100px;
    right: -100px;
    background: rgba(255, 255, 255, 0.05);
}
.platform-hero > * { position: relative; z-index: 1; }
.platform-hero h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.platform-hero .ph-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    margin-bottom: 8px;
}
.platform-hero p {
    font-size: var(--font-base);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.platform-hero .ph-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.platform-hero .ph-stat-item {
    text-align: center;
}
.platform-hero .ph-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-cyan);
    line-height: 1;
    margin-bottom: 4px;
}
.platform-hero .ph-stat-label {
    font-size: var(--font-sm);
    opacity: 0.85;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--color-violet), #8b7cf0); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--color-pink), #ff9ec0); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--color-gold), #ffc773); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, var(--color-warm), #ff8888); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #00b894, #55efc4); }
.feature-card h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
}
.mv-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-cyan);
    transition: var(--transition);
}
.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px var(--color-shadow-hover);
}
.mv-card h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mv-card h3 .mv-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(68, 217, 230, 0.15);
    color: var(--color-cyan-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-md);
    font-weight: 700;
}
.mv-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================================== */
/* ========== APP 下载页 (App Download) ========== */
/* ===================================================== */
.app-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #6c5ce7 100%);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    margin-bottom: 28px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .app-hero { grid-template-columns: 1fr; text-align: center; }
}
.app-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(68, 217, 230, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}
.app-hero-text { position: relative; z-index: 1; }
.app-hero-text h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.app-hero-text p {
    font-size: var(--font-base);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}
.app-hero-text .app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.app-hero-text .app-features li {
    font-size: var(--font-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}
.app-hero-text .app-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.qr-section {
    position: relative;
    z-index: 1;
    text-align: center;
}
.qr-code {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: var(--radius);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    padding: 14px;
}
.qr-code img {
    width: 100%;
    height: 100%;
    max-width: 170px;
    max-height: 170px;
}
.qr-section p {
    font-size: var(--font-sm);
    opacity: 0.85;
    margin: 0;
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .version-grid { grid-template-columns: repeat(2, 1fr); }
}
.version-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}
.version-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.version-card .vc-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}
.version-card:nth-child(2) .vc-icon { background: linear-gradient(135deg, var(--color-violet), #a29bfe); }
.version-card:nth-child(3) .vc-icon { background: linear-gradient(135deg, #00b894, #55efc4); }
.version-card:nth-child(4) .vc-icon { background: linear-gradient(135deg, var(--color-gold), #ffc773); }
.version-card h4 {
    font-size: var(--font-md);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 4px;
}
.version-card .vc-version {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.version-card .vc-btn {
    display: inline-block;
    padding: 8px 18px;
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    border-radius: 18px;
    font-size: var(--font-sm);
    font-weight: 600;
    text-decoration: none;
}
.version-card .vc-meta {
    font-size: 11px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.req-table-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    margin-bottom: 28px;
}
.req-table-wrap h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    margin-bottom: 14px;
    font-weight: 700;
}
.req-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-sm);
}
.req-table th, .req-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f5;
}
.req-table th {
    background: var(--color-bg);
    color: var(--color-navy-dark);
    font-weight: 700;
}
.req-table tr:last-child td { border-bottom: none; }

.changelog {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    margin-bottom: 28px;
}
.changelog h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    margin-bottom: 16px;
    font-weight: 700;
}
.changelog-item {
    border-left: 3px solid var(--color-cyan);
    padding: 8px 0 14px 16px;
    margin-bottom: 12px;
    position: relative;
}
.changelog-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 12px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-cyan);
    border: 2px solid #fff;
}
.changelog-item .cl-version {
    font-weight: 700;
    color: var(--color-navy-dark);
    font-size: var(--font-base);
    margin-bottom: 6px;
}
.changelog-item .cl-version .cl-date {
    font-size: var(--font-xs);
    color: var(--color-text-light);
    font-weight: 400;
    margin-left: 8px;
}
.changelog-item ul {
    list-style: none;
    padding-left: 0;
}
.changelog-item li {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    padding: 2px 0;
    line-height: 1.6;
}
.changelog-item li::before {
    content: '·';
    color: var(--color-cyan);
    font-weight: 700;
    margin-right: 6px;
}

/* ===================================================== */
/* ========== 版权说明页 (Copyright) ========== */
/* ===================================================== */
.copyright-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .copyright-layout { grid-template-columns: 1fr; }
}
.toc-sidebar {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: flex-start;
}
.toc-sidebar h4 {
    font-size: var(--font-md);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-cyan);
}
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.toc-list a {
    display: block;
    padding: 7px 10px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: var(--font-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.toc-list a:hover {
    background: var(--color-bg);
    color: var(--color-cyan-dark);
    border-left-color: var(--color-cyan);
}
.copyright-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    font-size: var(--font-base);
    line-height: 1.85;
    color: var(--color-text);
}
.copyright-content h2 {
    font-size: var(--font-xl);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin: 30px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-bg);
}
.copyright-content h2:first-child { margin-top: 0; }
.copyright-content h3 {
    font-size: var(--font-md);
    color: var(--color-navy);
    font-weight: 700;
    margin: 20px 0 10px;
}
.copyright-content p {
    margin-bottom: 14px;
    color: var(--color-text);
}
.copyright-content ul, .copyright-content ol {
    margin: 0 0 14px 20px;
}
.copyright-content li {
    margin-bottom: 6px;
    color: var(--color-text-light);
}
.copyright-content blockquote {
    background: var(--color-bg);
    border-left: 4px solid var(--color-cyan);
    padding: 14px 18px;
    margin: 16px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text-light);
    font-size: var(--font-sm);
}
.copyright-content .alert {
    background: linear-gradient(135deg, #fff8e6 0%, #fffaf0 100%);
    border: 1px solid #ffe2a0;
    border-left: 4px solid var(--color-gold);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    color: var(--color-text);
    font-size: var(--font-sm);
}
.copyright-content .alert strong { color: var(--color-gold); }
.copyright-content .meta-info {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 20px 0;
    font-size: var(--font-sm);
    color: var(--color-text-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px 20px;
}
.copyright-content .meta-info div strong { color: var(--color-navy-dark); }

/* ===================================================== */
/* ========== 联系我们页 (Contact) ========== */
/* ===================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-cyan) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    margin-bottom: 28px;
    color: #fff;
    text-align: center;
}
.contact-hero h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 10px;
}
.contact-hero p {
    font-size: var(--font-base);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .contact-cards { grid-template-columns: 1fr; }
}
.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px var(--color-shadow-hover);
    border-color: var(--color-cyan);
}
.contact-info-card .cic-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.contact-info-card h4 {
    font-size: var(--font-base);
    color: var(--color-navy-dark);
    margin-bottom: 6px;
    font-weight: 700;
}
.contact-info-card p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.contact-form-card h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bg);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group {
    margin-bottom: 12px;
}
.form-group label {
    display: block;
    font-size: var(--font-sm);
    color: var(--color-navy-dark);
    font-weight: 600;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--font-sm);
    background: var(--color-bg);
    transition: var(--transition);
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(68, 217, 230, 0.15);
}
.form-group textarea {
    min-height: 110px;
    resize: vertical;
}
.submit-btn {
    background: var(--color-cyan);
    color: var(--color-navy-dark);
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: var(--font-base);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.submit-btn:hover {
    background: #5de8f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(68, 217, 230, 0.35);
}

.office-list {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    box-shadow: 0 2px 10px var(--color-shadow);
    border: 1px solid var(--color-border);
}
.office-list h3 {
    font-size: var(--font-lg);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bg);
}
.office-item {
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f5;
}
.office-item:last-child { border-bottom: none; }
.office-item h5 {
    font-size: var(--font-base);
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.office-item h5::before {
    content: '●';
    color: var(--color-cyan);
    font-size: 10px;
}
.office-item p {
    font-size: var(--font-sm);
    color: var(--color-text-light);
    line-height: 1.6;
    padding-left: 14px;
}
