﻿:root {
    --sweet-pink: #ff6b9d;
    --sweet-peach: #ffa8e4;
    --sweet-cream: #fff5f7;
    --sweet-gold: #ffd93d;
    --sweet-lavender: #c3b1e1;
    --sweet-mint: #96fbc4;
    --sweet-coral: #ff8a5c;
    --sweet-sky: #a8e6cf;
    --sweet-gradient: linear-gradient(135deg, #ff6b9d, #ffa8e4, #ffd93d, #c3b1e1);
    --sweet-glow: 0 10px 40px rgba(255, 107, 157, 0.3);
    --sweet-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sweet-font: 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--sweet-font);
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef5 50%, #fff0f8 100%);
    overflow-x: hidden;
    position: relative;
}

.candy-bubbles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 168, 228, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 217, 61, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: bubbleFloat 20s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0%, 100% { opacity: 0.6; transform: translateY(0) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-30px) rotate(180deg); }
}

.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: 
        radial-gradient(circle at 25% 25%, rgba(195, 177, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(150, 251, 196, 0.08) 0%, transparent 60%);
    animation: heartsFloat 18s ease-in-out infinite;
}

@keyframes heartsFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -25px) scale(1.05); }
}

.container-sweet {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .container-article {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container-article {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 1rem;
    }
}

.article-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.page-header {
    text-align: center;
    padding: 6rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--sweet-gradient);
    border-radius: 3px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 3rem;
}

/* 页面头部响应式设计 */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-title::after {
        width: 60px;
        bottom: -10px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
}

.tools-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.contact-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.contact-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.contact-stats .stat-label {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 4rem 0;
    }
}

.company-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
}

/* 核心团队样式 */
.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.team-member {
    flex: 0 0 30%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.team-member.founder {
    border-color: var(--sweet-gold);
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 255, 255, 0.6));
}

.member-avatar {
    position: relative;
    margin-bottom: 1rem;
}

.member-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sweet-pink);
}

.member-badge {
    position: absolute;
    bottom: 5px;
    right: 50%;
    transform: translateX(50%);
    background: var(--sweet-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid white;
}

.team-member.founder .member-badge {
    background: var(--sweet-gold);
    color: #333;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--sweet-pink);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-desc {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-tag {
    background: var(--sweet-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 企业文化样式 */
.culture-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.culture-item {
    flex: 0 0 30%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    text-align: center;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.culture-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.culture-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
}

/* 核心团队样式 */
.team-introduction {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.team-member {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.team-member.founder {
    border: 2px solid var(--sweet-pink);
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--sweet-pink);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--sweet-pink);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    transform: rotate(15deg);
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #333;
}

.member-role {
    font-size: 0.9rem;
    color: var(--sweet-pink);
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--sweet-cream);
    color: var(--sweet-pink);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 企业文化样式 */
.company-culture {
    padding: 4rem 0;
}

.culture-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.culture-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.culture-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.culture-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 统一模块基础样式 */
.page-header, .creator-stats, .creator-journey, .creator-benefits, .creator-showcase, .creator-program, .user-testimonials {
    padding: 4rem 0;
    background: rgba(255, 245, 247, 0.5);
    position: relative;
    z-index: 3;
}

/* 统一模块响应式调整 */
@media (max-width: 768px) {
    .page-header, .creator-stats, .creator-journey, .creator-benefits, .creator-showcase, .creator-program, .user-testimonials {
        padding: 3rem 0;
    }
    
    .container-sweet {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header, .creator-stats, .creator-journey, .creator-benefits, .creator-showcase, .creator-program, .user-testimonials {
        padding: 2rem 0;
    }
    
    .container-sweet {
        padding: 0 1rem;
    }
}

/* 统一卡片样式 */
.stat-item, .journey-step .step-content, .benefit-card, .creator-story, .tier-card, .testimonial-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* 卡片内部元素响应式调整 */
@media (max-width: 768px) {
    .stat-item, .journey-step .step-content, .benefit-card, .creator-story, .tier-card, .testimonial-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .creator-story-name, .tier-title, .benefit-title {
        font-size: 1.1rem !important;
    }
    
    .creator-story-desc, .benefit-desc, .tier-benefits .benefit-item, .testimonial-content {
        font-size: 0.9rem !important;
    }
    
    .creator-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* 统一卡片悬停效果 */
.stat-item:hover, .journey-step:hover .step-content, .benefit-card:hover, .creator-story:hover, .tier-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
    border-color: var(--sweet-pink);
}

/* 统一卡片顶部渐变边框 */
.benefit-card::before, .creator-story::before, .tier-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

/* 创作中心样式 */
.creator-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 100%;
    justify-content: center;
}

.creator-stats .stat-item {
    text-align: center;
    padding: 2rem;
}

/* 创作者统计响应式设计 */
@media (max-width: 1024px) {
    .creator-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .creator-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.creator-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.creator-stats .stat-label {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* 创作者成长之路样式 */
.creator-journey {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sweet-gradient);
    transform: translateY(-50%);
    z-index: 1;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* 成长之路响应式设计 */
@media (max-width: 768px) {
    .journey-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .journey-timeline::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }
    
    .journey-step {
        max-width: 300px;
        margin: 0;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--sweet-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--sweet-glow);
    transition: var(--sweet-transition);
}

.journey-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-content {
    padding: 1.5rem;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-time {
    font-size: 0.85rem;
    color: var(--sweet-pink);
    font-weight: 600;
    background: rgba(255, 107, 157, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

/* 创作者权益样式 */
.creator-benefits {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 创作者权益响应式设计 */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.benefit-card.income::before {
    background: linear-gradient(90deg, var(--sweet-pink), var(--sweet-gold));
}

.benefit-card.tools::before {
    background: linear-gradient(90deg, var(--sweet-lavender), var(--sweet-peach));
}

.benefit-card.support::before {
    background: linear-gradient(90deg, var(--sweet-mint), var(--sweet-sky));
}

.benefit-card.growth::before {
    background: linear-gradient(90deg, var(--sweet-coral), var(--sweet-peach));
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    background: var(--sweet-gradient);
}

.benefit-card.income .benefit-icon {
    background: linear-gradient(135deg, var(--sweet-pink), var(--sweet-gold));
}

.benefit-card.tools .benefit-icon {
    background: linear-gradient(135deg, var(--sweet-lavender), var(--sweet-peach));
}

.benefit-card.support .benefit-icon {
    background: linear-gradient(135deg, var(--sweet-mint), var(--sweet-sky));
}

.benefit-card.growth .benefit-icon {
    background: linear-gradient(135deg, var(--sweet-coral), var(--sweet-peach));
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.benefit-highlight {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    color: var(--sweet-pink);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.benefit-features {
    display: grid;
    gap: 0.8rem;
}

.benefit-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.benefit-features .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sweet-pink);
    transform: translateY(-50%);
    transition: var(--sweet-transition);
}

.benefit-features .feature-item:hover::before {
    transform: translateY(-50%) scale(1.5);
}

/* 创作者展示样式 */
.creator-showcase .showcase-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .creator-showcase .showcase-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .creator-showcase .showcase-gallery {
        grid-template-columns: 1fr;
    }
}

.creator-story {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creator-story.featured {
    grid-row: span 2;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 768px) {
    .creator-story.featured {
        flex-direction: column;
    }
}

.creator-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--sweet-pink);
    position: relative;
    margin: 0 auto;
}

.creator-story.featured .creator-avatar-large {
    margin: 0;
}

.creator-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sweet-gold);
    border: 3px solid white;
    box-shadow: var(--sweet-glow);
}

.creator-story-content {
    text-align: center;
}

.creator-story.featured .creator-story-content {
    text-align: left;
}

@media (max-width: 768px) {
    .creator-story.featured .creator-story-content {
        text-align: center;
    }
}

.creator-story-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
}

.creator-story-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.creator-achievements {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.creator-story.featured .creator-achievements {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .creator-story.featured .creator-achievements {
        justify-content: center;
    }
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.achievement-label {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.creator-quote {
    font-style: italic;
    color: var(--sweet-pink);
    font-weight: 600;
    padding: 1rem;
    border-left: 3px solid var(--sweet-pink);
    background: rgba(255, 107, 157, 0.05);
    border-radius: 0 10px 10px 0;
}

/* 创作者激励计划样式 */
.creator-program .program-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .creator-program .program-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .creator-program .program-tiers {
        grid-template-columns: 1fr;
    }
}

.tier-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-card.featured {
    transform: scale(1.05);
    border-color: var(--sweet-gold);
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 255, 255, 0.85));
}

@media (max-width: 1024px) {
    .tier-card.featured {
        transform: none;
    }
}

.tier-header {
    text-align: center;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--sweet-gradient);
    margin: 0 auto 1rem;
}

.tier-card.bronze .tier-icon {
    background: linear-gradient(135deg, #cd7f32, #deb887);
}

.tier-card.silver .tier-icon {
    background: linear-gradient(135deg, #c0c0c0, #e6e6fa);
}

.tier-card.gold .tier-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.tier-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.tier-requirement {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
}

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(51, 51, 51, 0.8);
    font-size: 0.95rem;
    transition: var(--sweet-transition);
}

.tier-benefits .benefit-item:hover {
    transform: translateX(5px);
    color: var(--sweet-pink);
}

.tier-benefits .benefit-item::before {
    content: '✓';
    color: var(--sweet-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

.tier-revenue {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--sweet-pink);
    margin-top: auto;
    padding: 1rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
}

.tier-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: var(--sweet-gradient);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
}

.tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--sweet-glow);
}

.tier-card.featured .tier-btn {
    background: linear-gradient(135deg, var(--sweet-gold), var(--sweet-pink));
}

/* 用户评价样式 */
.user-testimonials .testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .user-testimonials .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .user-testimonials .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-content {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--sweet-pink);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.2;
}

.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--sweet-pink);
    position: absolute;
    bottom: -2rem;
    right: -0.5rem;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sweet-pink);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #333;
}

.author-role {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.85rem;
}

.testimonial-rating {
    text-align: center;
    color: var(--sweet-gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
}

/* 工具页面样式 */
.tools-categories {
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.tool-card.featured {
    border-color: var(--sweet-pink);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 255, 255, 0.8));
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tool-icon {
    font-size: 2.5rem;
}

.tool-badge {
    background: var(--sweet-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.tool-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tool-features {
    margin-bottom: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

.feature-icon {
    font-size: 1.1rem;
}

.tool-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.6);
}

.tool-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: var(--sweet-gradient);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--sweet-glow);
}

/* 创作流程样式 */
.tools-workflow {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    flex: 0 0 calc(25% - 2rem);
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sweet-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--sweet-glow);
}

.step-content {
    margin-top: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
}

.step-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--sweet-pink);
    font-weight: bold;
    opacity: 0.6;
    margin: 0 1rem;
}

/* 联系方法网格布局 */
.contact-methods {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.method-card.primary-service {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--sweet-pink);
    transform: scale(1.05);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sweet-glow);
}

.method-card.primary-service:hover {
    transform: translateY(-10px) scale(1.05);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.method-icon {
    font-size: 2rem;
}

.method-badge {
    background: var(--sweet-gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.method-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.method-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-features {
    margin-bottom: 1.5rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

.method-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.6);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.6);
    margin-bottom: 0.5rem;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.contact-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--sweet-pink);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--sweet-transition);
}

.contact-btn.primary {
    background: var(--sweet-gradient);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card.primary-service {
        transform: none;
    }
    
    .method-card.primary-service:hover {
        transform: translateY(-10px);
    }
}

.article-header {
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--sweet-transition);
}

.article-image img:hover {
    transform: scale(1.02);
}

.article-content {
    line-height: 1.8;
    color: rgba(51, 51, 51, 0.9);
    font-size: 1.1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 157, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .article-section {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
}

/* Creator Showcase Styles */
.creator-showcase {
    padding: 4rem 0;
    background: rgba(255, 245, 247, 0.5);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.creator-story {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    overflow: hidden;
    position: relative;
}

.creator-story.featured {
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.15);
}

.creator-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.creator-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.creator-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.creator-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: var(--sweet-gradient);
    border-radius: 50%;
    border: 3px solid white;
}

.creator-story-content {
    display: flex;
    flex-direction: column;
}

.creator-story-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.8rem;
}

.creator-story-desc {
    font-size: 0.95rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.creator-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 245, 247, 0.6);
    border-radius: 15px;
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.7);
    margin-top: 0.2rem;
}

.creator-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(51, 51, 51, 0.9);
    border-left: 3px solid var(--sweet-pink);
    padding-left: 1rem;
    line-height: 1.6;
}

/* Creator Program Styles */
.creator-program {
    padding: 4rem 0;
}

.program-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.tier-card.featured {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
    border-color: var(--sweet-pink);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.tier-card.featured:hover {
    transform: translateY(-15px);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--sweet-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sweet-glow);
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.tier-requirement {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
    font-weight: 600;
}

.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.benefit-item {
    font-size: 0.95rem;
    color: rgba(51, 51, 51, 0.8);
    padding: 0.8rem 1rem;
    background: rgba(255, 245, 247, 0.5);
    border-radius: 12px;
    border-left: 3px solid var(--sweet-pink);
    transition: var(--sweet-transition);
}

.benefit-item:hover {
    background: rgba(255, 245, 247, 0.8);
    transform: translateX(5px);
}

.tier-revenue {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sweet-pink);
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
}

.tier-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
    background: var(--sweet-gradient);
    color: white;
    box-shadow: var(--sweet-glow);
}

.tier-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.4);
}

/* User Testimonials Styles */
.user-testimonials {
    padding: 4rem 0;
    background: rgba(255, 245, 247, 0.5);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.9);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.7);
}

.testimonial-rating {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--sweet-pink);
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    width: fit-content;
}

/* Page Header Styles */
.page-header {
    padding: 4rem 0;
    background: rgba(255, 245, 247, 0.5);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 2rem;
    text-align: center;
}

.join-creator {
    text-align: center;
    margin-bottom: 3rem;
}

.join-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
    background: var(--sweet-gradient);
    color: white;
    box-shadow: var(--sweet-glow);
    margin-bottom: 1rem;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.4);
}

.join-note {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

/* Creator Stats Styles */
.creator-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

/* Creator Journey Styles */
.creator-journey {
    padding: 4rem 0;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sweet-gradient);
    transform: translateY(-50%);
    z-index: 1;
}

.journey-step {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    overflow: hidden;
    position: relative;
    z-index: 2;
    text-align: center;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sweet-gradient);
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sweet-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--sweet-glow);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-time {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sweet-pink);
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    display: inline-block;
}

@media (max-width: 480px) {
    .article-section {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 157, 0.1);
}

.nav-prev, .nav-next {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-prev {
    align-items: flex-start;
}

.nav-next {
    align-items: flex-end;
}

.nav-label {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
    font-weight: 600;
}

.nav-title {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: var(--sweet-transition);
    line-height: 1.4;
    max-width: 300px;
}

.nav-prev .nav-title {
    text-align: left;
}

.nav-next .nav-title {
    text-align: right;
}

.nav-title:hover {
    color: var(--sweet-pink);
    transform: translateX(5px);
}

.nav-next .nav-title:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .article-nav {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav-next {
        align-items: flex-start;
    }
    
    .nav-next .nav-title {
        text-align: left;
    }
    
    .nav-title {
        max-width: 100%;
    }
    
    .nav-title:hover {
        transform: translateX(5px);
    }
    
    .nav-next .nav-title:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .nav-title {
        font-size: 1rem;
    }
    
    .nav-label {
        font-size: 0.8rem;
    }
}

.sweet-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 245, 247, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
    z-index: 1000;
    transition: var(--sweet-transition);
}

.sweet-navbar .container-sweet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-heart {
    width: 45px;
    height: 45px;
    background: var(--sweet-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--sweet-glow);
    animation: heartPulse 4s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.navbar-brand h1 a {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: var(--sweet-transition);
}

.navbar-brand h1 a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

.sweet-navigation {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.nav-item {
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--sweet-transition);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sweet-gradient);
    transition: var(--sweet-transition);
    z-index: -1;
}

.nav-item:hover::before,
.nav-item.active::before {
    left: 0;
}

.nav-item:hover,
.nav-item.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--sweet-glow);
}

.navbar-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
}

.action-btn.login {
    background: transparent;
    color: var(--sweet-pink);
    border: 2px solid var(--sweet-pink);
}

.action-btn.register {
    background: var(--sweet-gradient);
    color: white;
    box-shadow: var(--sweet-glow);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.4);
}

.sweet-main {
    padding-top: 90px;
    position: relative;
    z-index: 10;
}

.hero-sweet {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sweet-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: 
        radial-gradient(circle, transparent 150px, rgba(255, 107, 157, 0.1) 151px, rgba(255, 107, 157, 0.1) 160px, transparent 161px),
        radial-gradient(circle, transparent 250px, rgba(255, 168, 228, 0.08) 251px, rgba(255, 168, 228, 0.08) 260px, transparent 261px),
        radial-gradient(circle, transparent 350px, rgba(255, 217, 61, 0.06) 351px, rgba(255, 217, 61, 0.06) 360px, transparent 361px);
    animation: particlesRotate 25s linear infinite;
}

@keyframes particlesRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-sweet .container-sweet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2) drop-shadow(0 0 25px rgba(255, 107, 157, 0.5)); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: subtitleFade 2s ease-out 0.5s forwards;
}

@keyframes subtitleFade {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-sweet {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    animation: searchAppear 2s ease-out 1s forwards;
}

@keyframes searchAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.sweet-search-input {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.5rem;
    font-size: 1.1rem;
    border: 3px solid rgba(255, 107, 157, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    color: #333;
    transition: var(--sweet-transition);
    outline: none;
    font-family: var(--sweet-font);
}

.sweet-search-input:focus {
    border-color: var(--sweet-pink);
    box-shadow: var(--sweet-glow);
    transform: scale(1.02);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--sweet-gradient);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--sweet-transition);
}

.search-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--sweet-glow);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    opacity: 0;
    animation: statsSlide 2s ease-out 1.5s forwards;
}

@keyframes statsSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sweet-display {
    position: relative;
    width: 250px;
    height: 250px;
    perspective: 1200px;
}

.candy-core {
    position: relative;
    width: 100%;
    height: 100%;
    animation: candyFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes candyFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    50% { transform: rotateY(180deg) rotateX(30deg); }
}

.core-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--sweet-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: var(--sweet-glow);
    z-index: 10;
    animation: coreHeartbeat 3s ease-in-out infinite;
}

@keyframes coreHeartbeat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.candy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid;
    border-radius: 50%;
    animation: ringExpand 6s ease-in-out infinite;
}

.candy-ring.ring-1 {
    width: 150px;
    height: 150px;
    border-color: var(--sweet-pink);
    animation-delay: 0s;
}

.candy-ring.ring-2 {
    width: 190px;
    height: 190px;
    border-color: var(--sweet-peach);
    animation-delay: -2s;
}

.candy-ring.ring-3 {
    width: 230px;
    height: 230px;
    border-color: var(--sweet-gold);
    animation-delay: -4s;
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--sweet-gradient);
    border-radius: 3px;
}

.featured-videos {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--sweet-transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 157, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--sweet-transition);
}

.video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--sweet-pink);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.video-desc {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.creator-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sweet-pink);
}

.creator-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.video-stats {
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
}

.video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.tag.lifestyle { background: var(--sweet-pink); }
.tag.morning { background: var(--sweet-gold); }
.tag.food { background: var(--sweet-coral); }
.tag.tutorial { background: var(--sweet-lavender); }
.tag.travel { background: var(--sweet-sky); }
.tag.japan { background: var(--sweet-mint); }
.tag.diy { background: var(--sweet-peach); }
.tag.creative { background: var(--sweet-pink); }

.creator-spotlight {
    padding: 100px 0;
}

.creators-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.creator-profile {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.creator-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.creator-profile.featured {
    border-color: var(--sweet-gold);
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 255, 255, 0.8));
}

.creator-avatar {
    position: relative;
    flex-shrink: 0;
}

.creator-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sweet-pink);
}

.creator-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--sweet-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid white;
}

.creator-info {
    flex: 1;
}

.creator-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creator-desc {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.creator-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.7);
}

.creator-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.creator-tags .tag {
    background: var(--sweet-gradient);
}

.platform-features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sweet-gradient);
    transform: scaleX(0);
    transition: var(--sweet-transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: featureFloat 4s ease-in-out infinite;
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-desc {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-highlight {
    background: var(--sweet-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.platform-stats {
    padding: 4rem 0;
    background: var(--sweet-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.candy-flow {
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.1) 52px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.1) 52px
        );
    animation: candyFlow 30s linear infinite;
}

@keyframes candyFlow {
    from { transform: translateX(0); }
    to { transform: translateX(100px); }
}

.platform-stats .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--sweet-transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.user-testimonials {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: rgba(51, 51, 51, 0.9);
    line-height: 1.8;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sweet-pink);
}

.author-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.7);
}

.testimonial-rating {
    text-align: center;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 217, 61, 0.5));
}

.sweet-footer {
    background: var(--sweet-pink);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-align: left;
}

.footer-section .section-title::after {
    display: none;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--sweet-transition);
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    transition: var(--sweet-transition);
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .hero-sweet .container-sweet {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* 中等屏幕响应式设计 */
@media (max-width: 992px) {
    /* 公司价值观响应式 */
    .company-values {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .value-item {
        flex: 0 0 45%;
    }
    
    /* 核心团队响应式 */
    .team-grid {
        gap: 1.5rem;
    }
    
    .team-member {
        flex: 0 0 45%;
    }
    
    /* 企业文化响应式 */
    .culture-showcase {
        gap: 1.5rem;
    }
    
    .culture-item {
        flex: 0 0 45%;
    }
    
    /* 创作流程响应式 */
    .step-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .workflow-arrow:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .sweet-navbar .container-sweet {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sweet-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .creators-showcase {
        grid-template-columns: 1fr;
    }
    
    .creator-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* 公司价值观响应式 */
    .company-values {
        flex-direction: column;
    }
    
    .value-item {
        flex: 0 0 100%;
    }
    
    /* 核心团队响应式 */
    .team-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-member {
        flex: 0 0 100%;
    }
    
    /* 企业文化响应式 */
    .culture-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .culture-item {
        flex: 0 0 100%;
    }
    
    /* 创作流程响应式 */
    .workflow-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-card {
        flex: 0 0 100%;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    /* 工具概览响应式 */
    .tools-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fade-in-sweet {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--sweet-transition);
}

.fade-in-sweet.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 新增样式 */
.section-subtitle {
    text-align: center;
    color: rgba(51, 51, 51, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.success-stories {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: var(--sweet-transition);
}

.story-card a {
    text-decoration: none;
    display: block;
    color: inherit;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sweet-glow);
    border-color: var(--sweet-pink);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--sweet-transition);
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-desc {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
}

.story-stats .stat {
    background: var(--sweet-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-showcase {
    padding: 100px 0;
    background: var(--sweet-gradient);
    color: white;
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-content .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    text-align: left;
    margin-bottom: 1rem;
}

.app-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.app-features {
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-feature .feature-icon {
    font-size: 2rem;
}

.app-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-btn {
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 25px;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--sweet-transition);
    font-family: var(--sweet-font);
}

.download-btn:hover {
    background: white;
    color: var(--sweet-pink);
    transform: translateY(-3px);
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #333, #666);
    border-radius: 40px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--sweet-gradient);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
}

.app-content-demo {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.demo-video {
    height: 200px;
    background: linear-gradient(135deg, var(--sweet-pink), var(--sweet-peach));
    border-radius: 15px;
    margin-bottom: 1rem;
}

.demo-features {
    display: flex;
    justify-content: space-around;
}

.demo-btn {
    padding: 0.8rem 1.5rem;
    background: var(--sweet-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.search-section {
    margin: 2rem 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--sweet-pink);
    border-radius: 20px;
    background: transparent;
    color: var(--sweet-pink);
    font-weight: 600;
    cursor: pointer;
    transition: var(--sweet-transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--sweet-pink);
    color: white;
}

.join-creator {
    text-align: center;
    margin: 2rem 0;
}

.join-btn {
    background: var(--sweet-gradient);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--sweet-transition);
    box-shadow: var(--sweet-glow);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.4);
}

.join-note {
    margin-top: 0.8rem;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.9rem;
}

.creator-journey {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.journey-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--sweet-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--sweet-glow);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: var(--sweet-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
}

.step-time {
    background: var(--sweet-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .app-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .gallery-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}