/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* 网站头部导航 */
.site-header-main {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-section-area h1 {
    font-size: 28px;
    font-weight: bold;
}

.brand-logo-link {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.brand-logo-link:hover {
    transform: scale(1.05);
    color: #ffd700;
}

.navigation-menu-bar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list-items {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list-items a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-list-items a:hover,
.nav-list-items a.nav-active {
    background-color: rgba(255,255,255,0.15);
    color: #ffd700;
}

/* 页面横幅 */
.hero-banner-section {
    position: relative;
    height: 550px;
    overflow: hidden;
    margin-bottom: 50px;
}

.banner-content-wrapper {
    position: relative;
    height: 100%;
}

.banner-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.banner-headline {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

.banner-description {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 通用容器 */
.content-container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 分区标题 */
.section-title-header {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 15px;
}

.section-title-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

/* 电影栏目 */
.featured-movies-section {
    padding: 60px 0;
    background-color: #fff;
}

.movie-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.movie-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.movie-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.movie-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card-item:hover .movie-poster-img {
    transform: scale(1.1);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1e3c72;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card-item:hover .play-icon-overlay {
    opacity: 1;
}

.movie-title-text {
    font-size: 20px;
    font-weight: 600;
    margin: 18px 20px 10px;
    color: #222;
}

.movie-info-meta {
    font-size: 14px;
    color: #777;
    margin: 0 20px 10px;
}

.movie-desc-short {
    font-size: 14px;
    color: #555;
    margin: 0 20px 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 电视剧栏目 */
.trending-shows-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.shows-grid-layout {
    display: grid;
    gap: 35px;
}

.show-card-element {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.show-card-element:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.show-thumbnail-img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.show-info-panel {
    padding: 25px 30px 25px 0;
    flex: 1;
}

.show-name-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.show-episode-count {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.show-description-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 综艺节目 */
.variety-highlights-section {
    padding: 60px 0;
    background-color: #fff;
}

.variety-list-container {
    display: grid;
    gap: 35px;
}

.variety-item-box {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    transition: all 0.3s ease;
}

.variety-item-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.variety-cover-image {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.variety-details-info {
    flex: 1;
}

.variety-show-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e3c72;
}

.variety-type-tag {
    display: inline-block;
    background: #1e3c72;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.variety-intro-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 动漫专区 */
.anime-zone-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.anime-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.anime-card-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.anime-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.anime-poster-pic {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.anime-title-name {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 15px 8px;
    color: #222;
}

.anime-category-label {
    font-size: 13px;
    color: #777;
    margin: 0 15px 15px;
}

/* 资讯栏目 */
.news-updates-section {
    padding: 60px 0;
    background-color: #fff;
}

.news-articles-list {
    display: grid;
    gap: 35px;
}

.news-item-card {
    display: flex;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    transition: all 0.3s ease;
}

.news-item-card:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.news-thumbnail-pic {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-content-area {
    flex: 1;
}

.news-article-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.news-publish-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.news-summary-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 页脚样式 */
.site-footer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-heading-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-description-para {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: #ffd700;
    padding-left: 8px;
}

.contact-info-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.85);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 内页样式 */
.page-banner-hero {
    height: 300px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.banner-overlay-gradient {
    text-align: center;
    color: #fff;
    z-index: 1;
    position: relative;
}

.page-main-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle-desc {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 筛选标签 */
.movies-filter-section,
.tvshow-categories-section,
.variety-types-section,
.anime-categories-section {
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-tabs-bar,
.category-filter-tabs,
.type-selector-tabs,
.anime-filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab-btn,
.category-btn-item,
.type-tab-button,
.anime-tab-btn {
    padding: 10px 25px;
    background: #f0f0f0;
    border-radius: 25px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
}

.filter-tab-btn:hover,
.category-btn-item:hover,
.type-tab-button:hover,
.anime-tab-btn:hover,
.filter-tab-btn.active,
.category-btn-item.active,
.type-tab-button.active,
.anime-tab-btn.active {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    transform: scale(1.05);
}

/* 电影目录页 */
.movies-catalog-section {
    padding: 60px 0;
    background: #fff;
}

.catalog-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 12px;
}

.catalog-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1e3c72;
    border-radius: 2px;
}

.movies-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.movie-item-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.movie-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.movie-poster-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.poster-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-item-card:hover .poster-image-full {
    transform: scale(1.1);
}

.movie-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-item-card:hover .movie-hover-overlay {
    opacity: 1;
}

.play-button-large {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.play-button-large:hover {
    transform: scale(1.1);
}

.movie-info-section {
    padding: 20px;
}

.movie-name-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.movie-meta-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.movie-synopsis-brief {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 最新上映 */
.new-releases-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.releases-list-wrapper {
    display: grid;
    gap: 30px;
}

.release-item-horizontal {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.release-item-horizontal:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.release-thumb-img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.release-details-block {
    flex: 1;
}

.release-title-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.release-genre-year {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.release-description-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.release-rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-icon {
    color: #ffd700;
    font-size: 18px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #1e3c72;
}

/* 名导佳作 */
.director-spotlight-section {
    padding: 60px 0;
    background: #fff;
}

.section-intro-paragraph {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.director-movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.director-movie-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.director-movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.director-film-poster {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 15px;
}

.film-title-text {
    font-size: 19px;
    font-weight: 600;
    margin: 0 15px 8px;
    color: #222;
}

.director-name-label {
    font-size: 14px;
    color: #777;
}

/* 电视剧页面特定样式 */
.hot-series-section {
    padding: 60px 0;
    background: #fff;
}

.section-heading-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 12px;
}

.section-heading-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1e3c72;
}

.series-grid-display {
    display: grid;
    gap: 40px;
}

.series-card-box {
    display: flex;
    gap: 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.series-card-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.series-poster-container {
    position: relative;
    width: 280px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.series-image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,0,0,0.85);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.series-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.series-card-box:hover .series-play-overlay {
    opacity: 1;
}

.watch-now-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.watch-now-btn:hover {
    transform: scale(1.1);
}

.series-content-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.series-title-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.series-type-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.series-plot-summary {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.series-cast-list {
    font-size: 15px;
    color: #666;
}

.cast-label {
    font-weight: 600;
    color: #333;
}

.actor-names {
    color: #777;
}

/* 古装剧区块 */
.costume-dramas-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.drama-horizontal-list {
    display: grid;
    gap: 30px;
}

.drama-item-horizontal {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.drama-item-horizontal:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.drama-thumbnail-image {
    width: 240px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.drama-info-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drama-name-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.drama-episode-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.drama-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.drama-rating-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b6b;
}

.rating-text {
    font-size: 13px;
    color: #999;
}

/* 都市剧区块 */
.urban-dramas-section {
    padding: 60px 0;
    background: #fff;
}

.urban-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.urban-show-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.urban-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.urban-poster-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.urban-show-name {
    font-size: 19px;
    font-weight: 600;
    margin: 15px 15px 8px;
    color: #222;
}

.urban-show-episodes {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.urban-show-desc {
    font-size: 13px;
    color: #999;
    margin: 0 15px;
}

/* 悬疑剧区块 */
.suspense-dramas-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-description-text,
.section-intro-para,
.section-description-para {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.suspense-list-wrapper {
    display: grid;
    gap: 35px;
}

.suspense-card-item {
    display: flex;
    gap: 35px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.suspense-card-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.suspense-image-box {
    width: 320px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.suspense-cover-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suspense-text-content {
    flex: 1;
}

.suspense-drama-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.suspense-genre-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.suspense-story-brief {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* 经典剧集 */
.classic-series-section {
    padding: 60px 0;
    background: #fff;
}

.classic-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.classic-item-box {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.classic-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.classic-thumbnail {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.classic-series-name {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 15px 5px;
    color: #222;
}

.classic-year-tag {
    font-size: 13px;
    color: #999;
}

/* 综艺页面样式 */
.hot-variety-section {
    padding: 60px 0;
    background: #fff;
}

.variety-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 12px;
}

.variety-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1e3c72;
}

.variety-showcase-grid {
    display: grid;
    gap: 40px;
}

.variety-program-card {
    display: flex;
    gap: 35px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.variety-program-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.program-poster-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.program-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-info-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(30,60,114,0.9);
    padding: 8px 15px;
    border-radius: 20px;
}

.badge-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.program-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-title-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.program-category-tag {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.program-description-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-host-info {
    font-size: 15px;
    color: #666;
}

.host-label {
    font-weight: 600;
    color: #333;
}

.host-names {
    color: #777;
}

/* 音乐节目 */
.music-shows-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.music-programs-list {
    display: grid;
    gap: 30px;
}

.music-show-item {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.music-show-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.music-show-thumbnail {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.music-show-content {
    flex: 1;
}

.music-show-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.music-show-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.music-show-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 真人秀 */
.reality-shows-section {
    padding: 60px 0;
    background: #fff;
}

.reality-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.reality-show-box {
    position: relative;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.reality-show-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reality-poster-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.reality-show-name {
    font-size: 19px;
    font-weight: 600;
    margin: 15px 15px 8px;
    color: #222;
}

.reality-show-desc {
    font-size: 13px;
    color: #777;
    margin: 0 15px 12px;
}

.reality-rating-box {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,107,107,0.9);
    padding: 8px 12px;
    border-radius: 8px;
}

.rating-score-num {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/* 脱口秀 */
.talk-shows-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.talkshow-list-wrapper {
    display: grid;
    gap: 35px;
}

.talkshow-card-element {
    display: flex;
    gap: 35px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.talkshow-card-element:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.talkshow-image-container {
    width: 350px;
    height: 220px;
    flex-shrink: 0;
}

.talkshow-cover-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talkshow-info-block {
    flex: 1;
    padding: 25px 25px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.talkshow-program-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.talkshow-type-label {
    display: inline-block;
    background: #1e3c72;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 15px;
}

.talkshow-detail-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.watch-talkshow-btn {
    align-self: flex-start;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.watch-talkshow-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(30,60,114,0.3);
}

/* 美食节目 */
.food-shows-section {
    padding: 60px 0;
    background: #fff;
}

.foodshow-horizontal-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.foodshow-item-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.foodshow-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.foodshow-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.foodshow-name {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 15px 5px;
    color: #222;
}

.foodshow-tag {
    font-size: 13px;
    color: #999;
}

/* 动漫页面样式 */
.featured-anime-section {
    padding: 60px 0;
    background: #fff;
}

.anime-section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    position: relative;
    padding-bottom: 12px;
}

.anime-section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1e3c72;
}

.anime-cards-grid {
    display: grid;
    gap: 40px;
}

.anime-main-card {
    display: flex;
    gap: 35px;
    background: linear-gradient(135deg, #e6f3ff 0%, #cce6ff 100%);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.anime-main-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.anime-poster-container {
    position: relative;
    width: 280px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.anime-poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anime-status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(30,144,255,0.9);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.anime-play-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anime-main-card:hover .anime-play-hover {
    opacity: 1;
}

.anime-play-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.anime-play-btn:hover {
    transform: scale(1.1);
}

.anime-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.anime-title-main {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.anime-type-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.anime-story-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.anime-score-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b6b;
}

.score-label {
    font-size: 14px;
    color: #999;
}

/* 热血番剧 */
.hot-anime-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.hot-anime-list {
    display: grid;
    gap: 30px;
}

.hot-anime-item {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hot-anime-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.hot-anime-thumb {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hot-anime-details {
    flex: 1;
}

.hot-anime-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.hot-anime-episodes {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.hot-anime-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 校园动漫 */
.school-anime-section {
    padding: 60px 0;
    background: #fff;
}

.school-anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.school-anime-box {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.school-anime-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.school-anime-poster {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.school-anime-title {
    font-size: 19px;
    font-weight: 600;
    margin: 15px 15px 8px;
    color: #222;
}

.school-anime-info {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.school-anime-brief {
    font-size: 13px;
    color: #999;
    margin: 0 15px;
}

/* 冒险奇幻 */
.adventure-anime-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.adventure-list-container {
    display: grid;
    gap: 35px;
}

.adventure-anime-card {
    display: flex;
    gap: 35px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.adventure-anime-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.adventure-image-box {
    width: 320px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.adventure-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-content-area {
    flex: 1;
}

.adventure-anime-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.adventure-genre-tag {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.adventure-plot-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* 国产动漫 */
.chinese-anime-section {
    padding: 60px 0;
    background: #fff;
}

.chinese-anime-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.chinese-anime-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.chinese-anime-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.chinese-anime-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.chinese-anime-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 15px 15px;
    color: #fff;
}

.chinese-anime-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.chinese-anime-tag {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* 动漫电影 */
.anime-movie-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.anime-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.movie-anime-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.movie-anime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.movie-anime-poster {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.movie-anime-title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 15px 5px;
    color: #222;
}

.movie-anime-director {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.movie-anime-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rating-stars {
    color: #ffd700;
    font-size: 14px;
}

.rating-value {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
}

/* 关于我们页面样式 */
.intro-section-area {
    padding: 60px 0;
    background: #fff;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text-column {
    padding-right: 20px;
}

.intro-heading-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
}

.intro-paragraph-text {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-image-column {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.intro-main-image {
    width: 100%;
    height: auto;
}

/* 使命愿景 */
.mission-vision-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3c72;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mission-card-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mission-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.mission-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-title-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3c72;
}

.mission-description-para {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

/* 平台优势 */
.features-highlight-section {
    padding: 60px 0;
    background: #fff;
}

.features-list-container {
    display: grid;
    gap: 60px;
}

.feature-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-item-row.reverse {
    direction: rtl;
}

.feature-item-row.reverse > * {
    direction: ltr;
}

.feature-image-side {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-showcase-img {
    width: 100%;
    height: auto;
}

.feature-content-side {
    padding: 20px;
}

.feature-heading-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3c72;
}

.feature-detail-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-points-list {
    list-style: none;
    padding-left: 0;
}

.feature-points-list li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-points-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3c72;
    font-weight: 700;
    font-size: 18px;
}

/* 平台数据 */
.stats-display-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.stats-display-section .section-main-title {
    color: #fff;
}

.stats-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-number-display {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description-small {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* 团队展示 */
.team-showcase-section {
    padding: 60px 0;
    background: #fff;
}

.team-intro-paragraph {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.team-photo-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-role-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
    padding: 0 20px;
}

.team-role-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding: 0 20px;
}

/* 联系我们 */
.contact-info-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-details-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-method-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-method-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-method-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3c72;
}

.contact-method-info {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-method-note {
    font-size: 14px;
    color: #999;
}

/* 承诺区块 */
.commitment-section {
    padding: 60px 0;
    background: #fff;
}

.commitment-banner-box {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.commitment-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.commitment-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.commitment-main-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.commitment-promise-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-list-items {
        gap: 20px;
    }

    .intro-content-wrapper,
    .feature-item-row {
        grid-template-columns: 1fr;
    }

    .feature-item-row.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .header-wrapper-content {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .navigation-menu-bar {
        margin-top: 15px;
    }

    .nav-list-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .banner-headline {
        font-size: 36px;
    }

    .banner-description {
        font-size: 16px;
    }

    .movie-grid-layout,
    .anime-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .show-card-element,
    .variety-item-box,
    .news-item-card,
    .release-item-horizontal,
    .drama-item-horizontal,
    .suspense-card-item,
    .series-card-box,
    .variety-program-card,
    .music-show-item,
    .talkshow-card-element,
    .hot-anime-item,
    .adventure-anime-card,
    .anime-main-card {
        flex-direction: column;
    }

    .show-thumbnail-img,
    .variety-cover-image,
    .news-thumbnail-pic,
    .release-thumb-img,
    .drama-thumbnail-image,
    .suspense-image-box,
    .series-poster-container,
    .program-poster-wrapper,
    .music-show-thumbnail,
    .talkshow-image-container,
    .hot-anime-thumb,
    .adventure-image-box,
    .anime-poster-container {
        width: 100%;
        height: 250px;
    }

    .page-main-heading {
        font-size: 32px;
    }

    .commitment-main-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .content-container-main {
        padding: 0 15px;
    }

    .section-title-header,
    .section-heading-title,
    .variety-section-title,
    .anime-section-heading {
        font-size: 24px;
    }

    .banner-headline {
        font-size: 28px;
    }

    .movie-grid-layout,
    .anime-showcase-grid {
        grid-template-columns: 1fr;
    }
}