/* 糖心vlog创作者服务页面样式 - hkzhenshou.com */
:root {
    --brand-primary: #ff6b9d;
    --brand-secondary: #4ecdc4;
    --brand-accent: #45b7d1;
    --brand-warm: #ffa726;
    --brand-success: #66bb6a;
    --text-primary: #2c3e50;
    --text-secondary: #ffffff;
    --text-muted: #7f8c8d;
    --bg-white: #ffffff;
    --bg-light: #faf9f8;
    --bg-gradient: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffa8cc 0%, #84fab0 100%);
    min-height: 100vh;
}

.platform-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--bg-white);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.3);
}

/* 导航样式 - 与about.css相同 */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.logo-link {
    text-decoration: none;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.contact-btn {
    background: var(--bg-gradient) !important;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.main-content {
    margin-top: 90px;
}

.page-hero {
    background: var(--bg-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* 创作者收益展示 */
.creator-benefits {
    background: var(--bg-white);
    padding: 5rem 0;
}

.benefits-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-highlight {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
}

.highlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.service-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 成功案例 */
.creator-success-stories {
    background: var(--bg-light);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

.story-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.featured-story {
    border: 3px solid var(--brand-warm);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.story-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--brand-primary);
}

.creator-badge {
    background: var(--brand-warm);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.creator-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.creator-category {
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.growth-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.timeline-item {
    text-align: center;
    flex: 1;
}

.timeline-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.timeline-desc {
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--brand-primary);
    font-weight: 700;
}

.success-story {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.success-metrics {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--bg-light);
    color: var(--brand-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
}

/* 创作工具展示 */
.creator-tools {
    background: var(--bg-white);
    padding: 5rem 0;
}

.tools-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.tool-category {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.tool-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
}

.tool-status {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tool-status:contains("免费") { background: #dcfce7; color: #166534; }
.tool-status:contains("会员") { background: #fef3c7; color: #92400e; }
.tool-status:contains("高级") { background: #fce7f3; color: #a21caf; }

/* 变现渠道 */
.monetization-options {
    background: var(--bg-light);
    padding: 5rem 0;
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.monetization-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.monetization-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-success);
}

.monetization-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.monetization-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.monetization-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.earning-example {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.earning-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.earning-amount {
    color: var(--brand-success);
    font-weight: 700;
    font-size: 1.1rem;
}

/* 扶持计划 */
.creator-support-program {
    background: var(--bg-white);
    padding: 5rem 0;
}

.program-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.support-levels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-level {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-level:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-sm);
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.level-badge.new { background: #dbeafe; color: #1e40af; }
.level-badge.growing { background: #fef3c7; color: #92400e; }
.level-badge.top { background: #fce7f3; color: #a21caf; }

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

.benefit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.program-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

/* CTA区域 */
.join-cta {
    background: var(--bg-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand-warm);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Footer样式 - 与about.css相同 */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--brand-warm);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.85rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--brand-warm);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .benefits-overview, .program-overview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}