/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 主导航 */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #00d4aa;
    border-radius: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #00d4aa;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 20px;
}

.search-input {
    background: none;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: #00d4aa;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #00b894;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 移动端菜单切换 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 移动端导航 */
.mobile-nav {
    display: none;
    background: rgba(26, 26, 46, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.active {
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    border-left-color: #00d4aa;
}

.btn-register, .btn-login {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-register {
    background: #00d4aa;
    color: #ffffff;
}

.btn-register:hover {
    background: #00b894;
    transform: translateY(-1px);
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}



/* 主要内容区域 */
.main-content {
    margin-top: 70px;
    padding: 30px;
    min-height: calc(100vh - 70px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 英雄区域 - 重新设计的欢迎区域 */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(22, 33, 62, 0.4) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%2300d4aa" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%2374b9ff" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="%2300d4aa" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 50px 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, #74b9ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 170, 0.3);
}

.stat-icon {
    font-size: 20px;
    color: #00d4aa;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* 作品展示区域 */
.showcase-section {
    margin-bottom: 80px;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.showcase-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

.showcase-tab.active {
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 170, 0.4);
}

.showcase-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    font-size: 48px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.showcase-item:hover .thumbnail-overlay i {
    transform: scale(1.2);
}

.showcase-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;
}

.showcase-badge.trending {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.showcase-badge.featured {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.showcase-badge.award {
    background: linear-gradient(135deg, #f39c12, #d35400);
}

.showcase-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.showcase-info {
    padding: 25px;
}

.showcase-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    gap: 15px;
}

.showcase-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.showcase-meta .author {
    color: #00d4aa;
    font-weight: 500;
}

.showcase-more {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-2px);
}

/* 创作者故事区域 */
.stories-section {
    margin-bottom: 80px;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #74b9ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
}

.story-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(116, 185, 255, 0.1));
    border-color: rgba(0, 212, 170, 0.3);
}

.story-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.story-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
}

.story-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.story-author {
    font-size: 14px;
    color: #00d4aa;
    font-weight: 500;
    margin-bottom: 15px;
}

.story-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-stats span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 内容区域 */
.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    border-radius: 2px;
}

/* 视频网格 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 170, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.video-stats {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 15px;
}

.video-stats span {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.age-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
}

/* 功能介绍区域 - 重新设计 */
.features-section {
    margin-bottom: 80px;
}

.features-intro {
    text-align: center;
    margin-bottom: 50px;
}

.features-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), rgba(116, 185, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card.premium {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(116, 185, 255, 0.08));
    border-color: rgba(0, 212, 170, 0.2);
}

.feature-card.premium:hover {
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 25px 50px rgba(0, 212, 170, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.4);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* 分类标签 */
.categories-section {
    margin-bottom: 40px;
}

.category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.category-tab.active {
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    color: #ffffff;
    border-color: transparent;
}

/* 创作指南区域 - 重新设计 */
.guide-section {
    margin-bottom: 80px;
}

.guide-intro {
    text-align: center;
    margin-bottom: 50px;
}

.guide-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.guide-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00d4aa, #74b9ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    border: 4px solid rgba(26, 26, 46, 1);
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #00d4aa;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.05);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-features span {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.timeline-features span i {
    font-size: 10px;
}

/* 关于我们区域 - 重新设计 */
.about-section {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.about-mission {
    margin: 40px 0;
    display: grid;
    gap: 25px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.mission-item i {
    font-size: 28px;
    color: #00d4aa;
    margin-top: 5px;
    flex-shrink: 0;
}

.mission-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.mission-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(0, 212, 170, 0.3);
}

.highlight-item i {
    font-size: 24px;
    color: #00d4aa;
    width: 40px;
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.highlight-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visual-circle.main {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(116, 185, 255, 0.2));
    border: 2px solid rgba(0, 212, 170, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    backdrop-filter: blur(10px);
}

.visual-circle.main span {
    font-size: 16px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.visual-circle.orbit-1,
.visual-circle.orbit-2,
.visual-circle.orbit-3,
.visual-circle.orbit-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    font-size: 24px;
    animation: orbit 20s linear infinite;
}

.visual-circle.orbit-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.visual-circle.orbit-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: -5s;
}

.visual-circle.orbit-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

.visual-circle.orbit-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: -15s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* 增强平台特色样式 */
.feature-stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-stats span {
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* 常见问题区域 - 重新设计 */
.faq-section {
    margin-bottom: 80px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
}

.faq-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4aa, #74b9ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-question i {
    font-size: 18px;
    color: #00d4aa;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: rgba(0, 212, 170, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(116, 185, 255, 0.05));
    border-color: rgba(0, 212, 170, 0.4);
}

.faq-answer p {
    padding: 30px 35px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section li {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-section a:hover {
    color: #00d4aa;
    padding-left: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00d4aa;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .search-container {
        min-width: 220px;
        margin-right: 15px;
    }
    
    /* 英雄区域响应式 */
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 30px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* 作品展示区域响应式 */
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    /* 创作者故事区域响应式 */
    .stories-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* 关于我们区域响应式 */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 创作指南响应式 */
    .guide-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: rgba(255, 255, 255, 0.05) !important;
        border-left-color: transparent !important;
    }
    
    .mobile-nav.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 15px;
        gap: 20px;
    }
    
    .search-container {
        min-width: 200px;
        margin-right: 10px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .btn-register, .btn-login {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    /* 英雄区域 */
    .hero-section {
        min-height: 50vh;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    
    .hero-content {
        padding: 35px 25px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 15px 30px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    /* 作品展示区域 */
    .showcase-tabs {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .showcase-tab {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 平台特色区域 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    /* 创作者故事区域 */
    .story-card {
        padding: 25px;
    }
    
    .story-avatar {
        width: 70px;
        height: 70px;
    }
    
    .avatar-placeholder {
        font-size: 28px;
    }
    
    /* 关于我们区域 */
    .about-text h3 {
        font-size: 28px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .visual-container {
        width: 280px;
        height: 280px;
    }
    
    .visual-circle.main {
        width: 160px;
        height: 160px;
        font-size: 36px;
    }
    
    .visual-circle.orbit-1,
    .visual-circle.orbit-2,
    .visual-circle.orbit-3,
    .visual-circle.orbit-4 {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* 创作指南区域 */
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .marker-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .marker-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* FAQ区域 */
    .faq-question {
        padding: 25px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
    
    .faq-answer p {
        padding: 25px;
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-description {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 10px;
        padding: 10px 15px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .btn-register, .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .search-container {
        min-width: 160px;
        margin-right: 8px;
    }
    
    .mobile-nav-link {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .main-content {
        padding: 15px 10px;
    }
    
    /* 英雄区域 */
    .hero-section {
        min-height: 45vh;
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-icon {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* 作品展示区域 */
    .showcase-tabs {
        gap: 8px;
        padding: 0 5px;
    }
    
    .showcase-tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .showcase-item {
        border-radius: 15px;
    }
    
    .showcase-thumbnail {
        height: 180px;
    }
    
    .showcase-info {
        padding: 20px;
    }
    
    .showcase-info h3 {
        font-size: 16px;
    }
    
    .showcase-meta {
        font-size: 13px;
        gap: 10px;
    }
    
    /* 平台特色区域 */
    .features-intro p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* 创作者故事区域 */
    .story-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .story-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-placeholder {
        font-size: 24px;
    }
    
    .story-content h3 {
        font-size: 18px;
    }
    
    .story-text {
        font-size: 14px;
    }
    
    .story-stats {
        gap: 10px;
    }
    
    .story-stats span {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* 关于我们区域 */
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .mission-item {
        padding: 20px;
        gap: 15px;
    }
    
    .mission-item i {
        font-size: 24px;
    }
    
    .mission-item h4 {
        font-size: 16px;
    }
    
    .mission-item p {
        font-size: 14px;
    }
    
    .highlight-item {
        padding: 15px;
        gap: 12px;
    }
    
    .highlight-item i {
        font-size: 20px;
    }
    
    .highlight-item strong {
        font-size: 18px;
    }
    
    .visual-container {
        width: 240px;
        height: 240px;
    }
    
    .visual-circle.main {
        width: 140px;
        height: 140px;
        font-size: 32px;
    }
    
    .visual-circle.main span {
        font-size: 14px;
    }
    
    .visual-circle.orbit-1,
    .visual-circle.orbit-2,
    .visual-circle.orbit-3,
    .visual-circle.orbit-4 {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* 创作指南区域 */
    .guide-intro p {
        font-size: 16px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    .marker-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .marker-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .timeline-features span {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    /* FAQ区域 */
    .faq-intro p {
        font-size: 16px;
    }
    
    .faq-item {
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-question i {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 14px;
        line-height: 1.7;
    }
    
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        padding: 0 20px 40px 20px;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .guide-step, .highlight-item, .faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 170, 0.8);
}

/* 返回顶部按钮样式 */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00d4aa, #74b9ff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
}

.back-to-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #00d4aa, #74b9ff) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.back-to-top-btn:hover {
    transform: translateY(0) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(0) scale(0.95);
}

.back-to-top:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4) !important;
}

.back-to-top:active {
    transform: scale(0.95) !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .back-to-top {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
} 