/* 糖心vlog网页版 - 全局样式表 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

/* 头部导航 */
.txvlog-header-main {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.txvlog-nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.txvlog-site-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8356d;
    transition: opacity 0.3s ease;
}

.txvlog-site-title a:hover {
    opacity: 0.8;
}

.txvlog-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.txvlog-menu-list a {
    color: #666;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.txvlog-menu-list a:hover,
.txvlog-menu-list a.active {
    color: #e8356d;
}

.txvlog-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8356d;
    transition: width 0.3s ease;
}

.txvlog-menu-list a:hover::after,
.txvlog-menu-list a.active::after {
    width: 100%;
}

/* 英雄区域 */
.txvlog-hero-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.txvlog-hero-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.txvlog-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.txvlog-hero-actions {
    display: flex;
    gap: 1rem;
}

.txvlog-btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.txvlog-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 53, 109, 0.3);
}

.txvlog-btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #fff;
    color: #e8356d;
    border: 2px solid #e8356d;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.txvlog-btn-secondary:hover {
    background: #e8356d;
    color: #fff;
}

.txvlog-hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.txvlog-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 特色区域 */
.txvlog-features-zone {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-section-heading {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 3rem;
}

.txvlog-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txvlog-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.txvlog-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

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

.txvlog-feature-title {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 1rem;
}

.txvlog-feature-desc {
    color: #666;
    line-height: 1.8;
}

/* 热门视频 */
.txvlog-trending-section {
    padding: 5rem 0;
}

.txvlog-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.txvlog-video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.txvlog-video-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.txvlog-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.txvlog-video-info {
    padding: 1rem;
}

.txvlog-video-title {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.txvlog-video-meta {
    font-size: 0.8rem;
    color: #999;
}

/* 创作者展示 */
.txvlog-creators-showcase {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-creators-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txvlog-creator-profile {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.txvlog-creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.txvlog-creator-name {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.txvlog-creator-bio {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.txvlog-creator-followers {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* 灵感区域 */
.txvlog-inspiration-zone {
    padding: 5rem 0;
}

.txvlog-inspiration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-inspiration-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.txvlog-inspiration-paragraph {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 分类面板 */
.txvlog-categories-panel {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-categories-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.txvlog-category-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 75%;
    transition: transform 0.3s ease;
}

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

.txvlog-category-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 1.5rem 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 页脚 */
.txvlog-footer-main {
    background: #222;
    color: #fff;
    padding: 3rem 0 1rem;
}

.txvlog-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.txvlog-footer-brand a {
    color: #e8356d;
    font-size: 1.25rem;
    font-weight: 700;
}

.txvlog-footer-tagline {
    color: #999;
    margin-top: 0.5rem;
}

.txvlog-footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.txvlog-footer-links li {
    margin-bottom: 0.5rem;
}

.txvlog-footer-links a {
    color: #999;
    transition: color 0.3s ease;
}

.txvlog-footer-links a:hover {
    color: #e8356d;
}

.txvlog-footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.txvlog-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* 关于页面样式 */
.txvlog-about-hero {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.txvlog-page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.txvlog-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.txvlog-about-story {
    padding: 5rem 0;
}

.txvlog-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-content-title {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.txvlog-content-paragraph {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.txvlog-about-mission {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txvlog-mission-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.txvlog-mission-title {
    font-size: 1.25rem;
    color: #222;
    padding: 1rem 1.5rem 0.5rem;
}

.txvlog-mission-text {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.txvlog-about-values {
    padding: 5rem 0;
}

.txvlog-values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-values-list {
    list-style: none;
}

.txvlog-value-item {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.txvlog-value-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e8356d;
    font-weight: 700;
}

.txvlog-value-item strong {
    color: #222;
}

.txvlog-about-team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-team-intro {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.txvlog-team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txvlog-stat-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.txvlog-stat-box:hover {
    transform: translateY(-5px);
}

.txvlog-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8356d;
    margin-bottom: 0.5rem;
}

.txvlog-stat-label {
    color: #666;
    font-size: 0.9rem;
}

.txvlog-about-cta {
    padding: 5rem 0;
}

.txvlog-cta-content {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.txvlog-cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.txvlog-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.txvlog-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* 分类页面样式 */
.txvlog-category-hero {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.txvlog-category-main {
    padding: 5rem 0;
}

.txvlog-category-section {
    margin-bottom: 4rem;
}

.txvlog-category-header {
    margin-bottom: 2rem;
}

.txvlog-category-name {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.txvlog-category-desc {
    color: #666;
    font-size: 1rem;
}

.txvlog-category-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txvlog-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.txvlog-video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.txvlog-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txvlog-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.txvlog-video-details {
    padding: 1rem;
}

.txvlog-video-name {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.txvlog-video-stats {
    font-size: 0.85rem;
    color: #999;
}

.txvlog-category-cta {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-cta-box {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.txvlog-cta-heading {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.txvlog-cta-subtext {
    color: #666;
    margin-bottom: 1.5rem;
}

/* 创作者页面样式 */
.txvlog-creators-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.txvlog-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-hero-heading {
    font-size: 2.25rem;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.txvlog-hero-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.txvlog-creators-benefits {
    padding: 5rem 0;
}

.txvlog-benefits-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txvlog-benefit-item {
    text-align: center;
}

.txvlog-benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

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

.txvlog-benefit-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.75rem;
}

.txvlog-benefit-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.txvlog-creators-guide {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txvlog-step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.txvlog-step-number {
    display: inline-block;
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.txvlog-step-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.75rem;
}

.txvlog-step-content {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.txvlog-creators-showcase {
    padding: 5rem 0;
}

.txvlog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.txvlog-creator-case {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.txvlog-case-info {
    padding: 1.5rem;
}

.txvlog-case-name {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.txvlog-case-category {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.txvlog-case-story {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.txvlog-creators-tips {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-tips-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.txvlog-tips-heading {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.txvlog-tips-list {
    list-style: none;
}

.txvlog-tip-point {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.txvlog-tip-point::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e8356d;
    font-weight: 700;
}

.txvlog-creators-cta {
    padding: 5rem 0;
}

.txvlog-cta-final {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.txvlog-cta-title-large {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.txvlog-cta-subtitle-large {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* 联系页面样式 */
.txvlog-contact-hero {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.txvlog-contact-main {
    padding: 5rem 0;
}

.txvlog-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.txvlog-info-title {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 2rem;
}

.txvlog-info-items {
    margin-bottom: 2rem;
}

.txvlog-info-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.txvlog-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.txvlog-info-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.25rem;
}

.txvlog-info-value {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
}

.txvlog-contact-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.txvlog-form-title {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.txvlog-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.txvlog-form-group {
    margin-bottom: 1.5rem;
}

.txvlog-form-label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.txvlog-form-input,
.txvlog-form-select,
.txvlog-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.txvlog-form-input:focus,
.txvlog-form-select:focus,
.txvlog-form-textarea:focus {
    outline: none;
    border-color: #e8356d;
}

.txvlog-form-textarea {
    resize: vertical;
    font-family: inherit;
}

.txvlog-contact-types {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.txvlog-type-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.txvlog-type-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.txvlog-type-title {
    font-size: 1.1rem;
    color: #222;
    padding: 1rem 1.5rem 0.5rem;
}

.txvlog-type-desc {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.txvlog-contact-faq {
    padding: 5rem 0;
}

.txvlog-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.txvlog-faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.txvlog-faq-question {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.75rem;
}

.txvlog-faq-answer {
    color: #666;
    line-height: 1.6;
}

.txvlog-contact-cta {
    padding: 5rem 0;
    background: #f8f9fa;
}

.txvlog-cta-banner {
    background: linear-gradient(135deg, #e8356d 0%, #ff6b9d 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.txvlog-cta-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 968px) {
    .txvlog-hero-banner,
    .txvlog-story-layout,
    .txvlog-inspiration-layout,
    .txvlog-values-layout,
    .txvlog-hero-split,
    .txvlog-tips-layout,
    .txvlog-contact-layout {
        grid-template-columns: 1fr;
    }

    .txvlog-features-grid,
    .txvlog-mission-grid,
    .txvlog-showcase-grid,
    .txvlog-category-videos {
        grid-template-columns: 1fr;
    }

    .txvlog-video-grid,
    .txvlog-creators-list,
    .txvlog-categories-flex,
    .txvlog-footer-grid,
    .txvlog-team-stats,
    .txvlog-benefits-layout,
    .txvlog-guide-steps,
    .txvlog-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .txvlog-menu-list {
        gap: 1rem;
    }

    .txvlog-hero-title,
    .txvlog-page-title,
    .txvlog-hero-heading,
    .txvlog-cta-title-large {
        font-size: 1.75rem;
    }

    .txvlog-section-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .txvlog-video-grid,
    .txvlog-creators-list,
    .txvlog-categories-flex,
    .txvlog-footer-grid,
    .txvlog-team-stats,
    .txvlog-benefits-layout,
    .txvlog-guide-steps,
    .txvlog-types-grid {
        grid-template-columns: 1fr;
    }

    .txvlog-menu-list {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .txvlog-hero-actions,
    .txvlog-cta-buttons {
        flex-direction: column;
    }

    .txvlog-btn-primary,
    .txvlog-btn-secondary {
        width: 100%;
        text-align: center;
    }
}