/* 糖心官网入口vlog - 全站样式表 */

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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --border-color: #dadce0;
    --hover-bg: #f1f3f4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #fff;
}

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

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

/* 头部导航样式 */
.txvlog-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.txvlog-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txvlog-logo-wrapper {
    padding: 15px 0;
}

.txvlog-site-title {
    font-size: 24px;
    font-weight: 700;
}

.txvlog-site-title a {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.txvlog-main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.txvlog-main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.txvlog-main-nav a:hover,
.txvlog-nav-active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Banner样式 */
.txvlog-hero-banner,
.txvlog-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.txvlog-banner-content,
.txvlog-banner-inner {
    position: relative;
    height: 100%;
}

.txvlog-banner-image,
.txvlog-page-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.txvlog-banner-title,
.txvlog-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.txvlog-banner-desc,
.txvlog-page-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.txvlog-page-banner {
    height: 350px;
}

.txvlog-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.txvlog-page-title {
    position: absolute;
    z-index: 10;
    color: #fff;
}

.txvlog-page-subtitle {
    position: absolute;
    bottom: 80px;
    z-index: 10;
    color: #fff;
}

/* 内容容器 */
.txvlog-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.txvlog-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.txvlog-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* 视频卡片网格 */
.txvlog-video-grid,
.txvlog-movie-grid,
.txvlog-series-grid,
.txvlog-variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.txvlog-video-card,
.txvlog-movie-card,
.txvlog-series-card,
.txvlog-variety-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.txvlog-video-card:hover,
.txvlog-movie-card:hover,
.txvlog-series-card:hover,
.txvlog-variety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.txvlog-card-image,
.txvlog-movie-poster,
.txvlog-series-poster,
.txvlog-variety-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.txvlog-card-info,
.txvlog-movie-overlay,
.txvlog-series-info,
.txvlog-variety-details {
    padding: 20px;
    background: #fff;
}

.txvlog-movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.txvlog-movie-card:hover .txvlog-movie-overlay {
    transform: translateY(0);
}

.txvlog-card-title,
.txvlog-movie-name,
.txvlog-series-name,
.txvlog-variety-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.txvlog-card-meta,
.txvlog-movie-rating,
.txvlog-movie-genre,
.txvlog-series-desc,
.txvlog-series-tags,
.txvlog-variety-type,
.txvlog-variety-update {
    font-size: 14px;
    color: var(--text-secondary);
}

.txvlog-series-badge,
.txvlog-variety-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* 列表样式 */
.txvlog-list-wrapper,
.txvlog-recommend-list,
.txvlog-series-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.txvlog-list-item,
.txvlog-recommend-card,
.txvlog-series-row {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.txvlog-list-item:hover,
.txvlog-recommend-card:hover,
.txvlog-series-row:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.txvlog-list-thumb,
.txvlog-recommend-thumb,
.txvlog-series-thumbnail {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-list-details,
.txvlog-recommend-info,
.txvlog-series-content {
    flex: 1;
}

.txvlog-list-heading,
.txvlog-recommend-title,
.txvlog-series-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.txvlog-list-desc,
.txvlog-recommend-desc,
.txvlog-series-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.txvlog-list-tag,
.txvlog-series-episode {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.txvlog-recommend-meta,
.txvlog-spotlight-meta,
.txvlog-highlight-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.txvlog-recommend-meta span,
.txvlog-spotlight-meta span,
.txvlog-highlight-tags span {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 12px;
    background: var(--hover-bg);
    border-radius: 5px;
}

/* Vlog样式 */
.txvlog-vlog-grid,
.txvlog-classic-grid,
.txvlog-creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.txvlog-vlog-item,
.txvlog-classic-item,
.txvlog-creator-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.txvlog-vlog-item:hover,
.txvlog-classic-item:hover,
.txvlog-creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.txvlog-vlog-cover,
.txvlog-classic-cover,
.txvlog-creator-avatar {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.txvlog-vlog-caption,
.txvlog-creator-info {
    padding: 20px;
    background: #fff;
}

.txvlog-vlog-caption h4,
.txvlog-creator-name,
.txvlog-classic-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.txvlog-vlog-caption p,
.txvlog-creator-bio,
.txvlog-classic-year {
    font-size: 14px;
    color: var(--text-secondary);
}

.txvlog-creator-stats {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary-color);
}

/* 分类展示 */
.txvlog-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.txvlog-category-box {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.txvlog-category-box:hover {
    transform: scale(1.05);
}

.txvlog-category-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.txvlog-category-label span {
    font-size: 20px;
    font-weight: 600;
}

/* 筛选栏 */
.txvlog-filter-bar {
    background: var(--light-bg);
    padding: 25px 0;
}

.txvlog-filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.txvlog-filter-label {
    font-weight: 600;
    color: var(--text-primary);
}

.txvlog-filter-btn,
.txvlog-tab-btn {
    padding: 8px 20px;
    border: 2px solid var(--border-color);
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.txvlog-filter-btn:hover,
.txvlog-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.txvlog-filter-active,
.txvlog-tab-active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.txvlog-category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* 亮点展示 */
.txvlog-spotlight-wrapper,
.txvlog-highlight-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.txvlog-spotlight-main {
    display: flex;
    gap: 40px;
}

.txvlog-spotlight-image,
.txvlog-highlight-image {
    width: 400px;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.txvlog-spotlight-details,
.txvlog-highlight-content {
    flex: 1;
}

.txvlog-spotlight-title,
.txvlog-highlight-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.txvlog-spotlight-summary,
.txvlog-highlight-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.txvlog-spotlight-cast,
.txvlog-highlight-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 15px;
}

.txvlog-highlight-info {
    display: flex;
    gap: 20px;
}

/* 更新时间表 */
.txvlog-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.txvlog-schedule-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.txvlog-schedule-day {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

.txvlog-schedule-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.txvlog-schedule-show {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.txvlog-schedule-time {
    display: block;
    padding: 0 15px 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 瀑布流布局 */
.txvlog-video-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.txvlog-masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.txvlog-masonry-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.txvlog-masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.txvlog-masonry-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.txvlog-masonry-author,
.txvlog-masonry-views {
    font-size: 13px;
    opacity: 0.9;
}

/* 话题标签 */
.txvlog-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.txvlog-topic-card {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.txvlog-topic-card:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.txvlog-topic-icon {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.txvlog-topic-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.txvlog-topic-count {
    font-size: 14px;
    opacity: 0.8;
}

/* 最新上传 */
.txvlog-upload-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txvlog-upload-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.txvlog-upload-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.txvlog-upload-thumbnail {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-upload-details {
    flex: 1;
}

.txvlog-upload-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.txvlog-upload-creator {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.txvlog-upload-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* 创作指南 */
.txvlog-tips-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.txvlog-tips-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.txvlog-tips-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.txvlog-tips-heading {
    padding: 20px 20px 10px;
    font-size: 20px;
    font-weight: 600;
}

.txvlog-tips-text {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 关于页面样式 */
.txvlog-intro-wrapper,
.txvlog-contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.txvlog-intro-content,
.txvlog-contact-info {
    flex: 1;
}

.txvlog-intro-title,
.txvlog-contact-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.txvlog-intro-text,
.txvlog-contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.txvlog-intro-image,
.txvlog-contact-image {
    width: 45%;
    flex-shrink: 0;
}

.txvlog-about-pic,
.txvlog-contact-pic {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.txvlog-mission-card {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
}

.txvlog-mission-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.txvlog-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.txvlog-mission-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.txvlog-mission-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.txvlog-values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.txvlog-value-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
}

.txvlog-value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.txvlog-value-content {
    flex: 1;
}

.txvlog-value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.txvlog-value-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.txvlog-feature-box {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.txvlog-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.txvlog-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.txvlog-feature-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.txvlog-feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.txvlog-contact-methods {
    margin-top: 25px;
}

.txvlog-contact-item {
    margin-bottom: 15px;
    font-size: 15px;
}

.txvlog-contact-item strong {
    display: inline-block;
    width: 120px;
    color: var(--text-primary);
}

.txvlog-join-box {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
}

.txvlog-join-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.txvlog-join-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.txvlog-join-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.txvlog-join-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 页脚样式 */
.txvlog-main-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 50px 0 0;
}

.txvlog-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.txvlog-footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.txvlog-footer-brand a {
    color: #fff;
}

.txvlog-footer-slogan {
    font-size: 14px;
    opacity: 0.8;
}

.txvlog-footer-links h3,
.txvlog-footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.txvlog-footer-links ul {
    list-style: none;
}

.txvlog-footer-links li {
    margin-bottom: 12px;
}

.txvlog-footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.txvlog-footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.txvlog-footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.txvlog-copyright {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    font-size: 14px;
    opacity: 0.8;
}

/* 分类部分样式 */
.txvlog-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.txvlog-category-section {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.txvlog-category-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.txvlog-category-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txvlog-category-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.txvlog-category-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.txvlog-category-thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.txvlog-category-text {
    flex: 1;
}

.txvlog-category-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.txvlog-category-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.txvlog-talks-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.txvlog-talks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.txvlog-talks-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.txvlog-talks-name {
    padding: 15px 15px 10px;
    font-size: 16px;
    font-weight: 600;
}

.txvlog-talks-desc {
    padding: 0 15px 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .txvlog-header-container {
        flex-direction: column;
        gap: 15px;
    }

    .txvlog-main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .txvlog-banner-title,
    .txvlog-page-title {
        font-size: 32px;
    }

    .txvlog-video-grid,
    .txvlog-movie-grid,
    .txvlog-series-grid,
    .txvlog-variety-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .txvlog-list-item,
    .txvlog-recommend-card,
    .txvlog-series-row,
    .txvlog-spotlight-wrapper,
    .txvlog-highlight-item,
    .txvlog-intro-wrapper,
    .txvlog-contact-wrapper {
        flex-direction: column;
    }

    .txvlog-list-thumb,
    .txvlog-recommend-thumb,
    .txvlog-series-thumbnail,
    .txvlog-spotlight-image,
    .txvlog-highlight-image {
        width: 100%;
        height: auto;
    }

    .txvlog-intro-image,
    .txvlog-contact-image {
        width: 100%;
    }

    .txvlog-mission-grid,
    .txvlog-tips-wrapper {
        grid-template-columns: 1fr;
    }
}