/* 糖心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);
}

/* 导航样式 */
.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;
}

/* 观看体验展示 */
.viewing-experience {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

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

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

/* 功能特色 */
.platform-features {
    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);
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-accent);
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.feature-content {
    padding: 2rem;
}

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

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

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

/* 用户评价 */
.user-reviews {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.review-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 5px solid var(--brand-primary);
}

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

.reviewer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-warm);
}

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

.reviewer-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.review-usage {
    display: flex;
    gap: 0.8rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

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

/* 内容分类 */
.content-categories {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.category-card.popular { border-color: var(--brand-warm); }
.category-card.trending { border-color: var(--brand-success); }
.category-card.hot { border-color: var(--brand-primary); }

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

.category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-content {
    padding: 2rem;
}

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

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

.category-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

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

/* Footer样式 */
.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) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .experience-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}