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

/* 自定义属性 */
:root {
    --primary-bg: #fef6f6;
    --secondary-bg: #fff5f7;
    --card-bg: #ffffff;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --accent-neon: #ff6b9d;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-blue: #3b82f6;
    --accent-yellow: #fbbf24;
    --border-color: #e2e8f0;
    --shadow-color: rgba(255, 107, 157, 0.15);
    --gradient-primary: linear-gradient(135deg, #ff6b9d, #a855f7);
    --gradient-secondary: linear-gradient(135deg, #ec4899, #f97316);
    --gradient-sky: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-sunset: linear-gradient(135deg, #fbbf24, #f97316);
}

/* 基础样式 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-neon);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-neon);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-neon);
}

.nav-logo i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: var(--accent-neon);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-neon);
    transition: all 0.3s ease;
}

/* 公告滚动条 */
.announcement-bar {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    margin-top: 70px;
    overflow: hidden;
}

.announcement-container {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
}

.announcement-container i {
    color: var(--accent-orange);
    font-size: 18px;
}

.announcement-content {
    flex: 1;
    overflow: hidden;
}

.announcement-text {
    display: flex;
    gap: 50px;
    animation: scroll-announcement 30s linear infinite;
}

.announcement-text span {
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 14px;
}

.announcement-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--accent-neon);
    color: var(--primary-bg);
    border-color: var(--accent-neon);
}

@keyframes scroll-announcement {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* 英雄区域 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fef6f6 0%, #fff5f7 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ff6b9d" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23a855f7" opacity="0.4"/><circle cx="40" cy="80" r="0.8" fill="%233b82f6" opacity="0.3"/><circle cx="90" cy="90" r="0.6" fill="%23fbbf24" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.6;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(0.8); opacity: 0.3; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.hero-container {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    color: var(--accent-neon);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-neon);
    border: 3px solid var(--accent-neon);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.btn-secondary:hover {
    background: var(--accent-neon);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3);
}

/* 特色功能区域 */
.features {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-neon);
    box-shadow: 0 25px 50px var(--shadow-color);
    background: linear-gradient(135deg, #ffffff 0%, #fef6f6 100%);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 数据统计区域 */
.stats {
    padding: 100px 0;
    background: var(--primary-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(236, 73, 153, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(236, 73, 153, 0.4);
}

.stat-item:hover .stat-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-neon);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ区域 */
.faq {
    padding: 100px 0;
    background: var(--secondary-bg);
}

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

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 15px 40px var(--shadow-color);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    transform: translateX(10px);
}

.faq-question i {
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-top: 3px solid var(--accent-neon);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-neon);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-neon);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--accent-neon);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    animation: bounce 0.6s ease;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.download-btn:hover {
    background: var(--accent-neon);
    color: var(--primary-bg);
    border-color: var(--accent-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(254, 246, 246, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-top: 2px solid var(--accent-neon);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 焦点样式 */
button:focus,
a:focus {
    outline: 2px solid var(--accent-neon);
    outline-offset: 2px;
}

/* 加载动画 */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* 支持链接美化 */
.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 快速链接美化 */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-link::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;
}

.quick-link:hover::before {
    left: 100%;
}

.quick-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    border-color: var(--accent-neon);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.2);
}

.quick-link i {
    font-size: 14px;
    color: var(--accent-neon);
    width: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.support-link::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;
}

.support-link:hover::before {
    left: 100%;
}

.support-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border-color: var(--accent-neon);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.support-link i {
    font-size: 18px;
    color: var(--accent-neon);
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-link:hover i {
    transform: scale(1.2);
}

.support-link span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .support-links {
        gap: 8px;
    }
    
    .support-link {
        padding: 10px 14px;
    }
    
    .support-link i {
        font-size: 16px;
    }
    
    .support-link span {
        font-size: 13px;
    }
}

/* ===== 子页面样式 ===== */

/* 页面标题区域 */
.page-header {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* FAQ页面样式 */
.faq-page {
    padding: 60px 0;
    background: var(--primary-bg);
}

.faq-categories {
    margin-bottom: 50px;
}

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

.category-tab {
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    transform: translateY(-3px);
    border-color: var(--accent-neon);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.faq-category {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.faq-category.active {
    display: block;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-purple));
    border-radius: 2px;
}

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

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.15);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-neon), var(--accent-purple));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

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

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    transform: translateX(10px);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    padding: 0 30px 25px;
    margin: 0;
}

.faq-answer li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: var(--accent-neon);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 联系支持区域 */
.contact-support {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.2;
}

.support-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.support-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.support-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 联系我们页面样式 */
.contact-methods {
    padding: 60px 0;
    background: var(--primary-bg);
}

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

.contact-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-info {
    text-align: left;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 联系表单样式 */
.contact-form {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

.form-container p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-neon);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 意见反馈页面样式 */
.feedback-types {
    padding: 60px 0;
    background: var(--primary-bg);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.type-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s;
}

.type-card:hover::before {
    left: 100%;
}

.type-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.type-card.active {
    border-color: var(--accent-neon);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.type-card:hover .type-icon {
    transform: scale(1.1);
}

.type-icon i {
    font-size: 28px;
    color: white;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.type-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 帮助中心页面样式 */
.help-navigation {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

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

.help-tab {
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.help-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s;
}

.help-tab:hover::before {
    left: 100%;
}

.help-tab:hover {
    transform: translateY(-3px);
    border-color: var(--accent-neon);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.help-tab.active {
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.help-content {
    display: none;
    padding: 60px 0;
    background: var(--primary-bg);
    animation: fadeInUp 0.6s ease;
}

.help-content.active {
    display: block;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-purple));
    border-radius: 2px;
}

/* 帮助卡片网格 */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.help-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.05), transparent);
    transition: left 0.5s;
}

.help-card:hover::before {
    left: 100%;
}

.help-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.help-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.help-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-neon), var(--accent-purple));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
}

.help-card:hover .help-icon::after {
    opacity: 0.6;
    transform: scale(1.2);
}

.help-icon i {
    font-size: 36px;
    color: white;
}

.help-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
}

.help-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-purple));
    border-radius: 2px;
}

/* 帮助步骤样式 */
.help-steps {
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    transform: translateX(10px);
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* 功能指南样式 */
.feature-guides {
    max-width: 900px;
    margin: 0 auto;
}

.guide-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 40px 35px;
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.guide-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}

.guide-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guide-item h3 i {
    color: var(--accent-neon);
    font-size: 1.6rem;
}

.guide-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-neon);
}

.guide-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.guide-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.guide-content li::before {
    content: '▶';
    color: var(--accent-neon);
    font-size: 0.8rem;
    position: absolute;
    left: -15px;
    top: 2px;
}

/* 故障排除样式 */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.trouble-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 35px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.trouble-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}

.trouble-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trouble-card h3 i {
    color: var(--accent-neon);
    font-size: 1.4rem;
}

.trouble-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trouble-item {
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-neon);
}

.trouble-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.trouble-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.trouble-item strong {
    color: var(--accent-neon);
    font-weight: 600;
}

/* 使用技巧样式 */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.tip-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: scale(1.1) rotate(5deg);
}

.tip-icon i {
    font-size: 32px;
    color: white;
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.tip-card ul {
    text-align: left;
    padding-left: 20px;
}

.tip-card li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.tip-card li::before {
    content: '✨';
    position: absolute;
    left: -25px;
    top: 0;
}

/* 视频教程样式 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.05), transparent);
    transition: left 0.5s;
}

.video-card:hover::before {
    left: 100%;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-thumbnail i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.video-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.video-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.video-duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 快速帮助链接样式 */
.quick-help {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain3" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain3)"/></svg>');
    opacity: 0.2;
}

.quick-help h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quick-help p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.help-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-link {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.help-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s;
}

.help-link:hover::before {
    left: 100%;
}

.help-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.help-link i {
    font-size: 2.5rem;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}

.help-link:hover i {
    transform: scale(1.2);
}

.help-link span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* 支持的IP展示区样式 */
.supported-ip {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ip-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ip-category {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.ip-category:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

.category-title i {
    color: var(--accent-neon);
    font-size: 1.8rem;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ip-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ip-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.ip-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--accent-neon) 0%, var(--accent-purple) 100%);
}

.ip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ip-item:hover .ip-image img {
    transform: scale(1.1);
}

.ip-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.ip-info {
    padding: 20px 25px;
    text-align: center;
}

.ip-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ip-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .category-tabs,
    .help-tabs {
        gap: 10px;
    }
    
    .category-tab,
    .help-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .type-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .help-links {
        grid-template-columns: 1fr;
    }
    
    .support-card,
    .form-container {
        padding: 30px 20px;
    }
    
    .ip-categories {
        gap: 40px;
    }
    
    .ip-category {
        padding: 30px 25px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .ip-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .ip-image {
        height: 150px;
    }
}
