:root {
    --primary-color: #6c44fc;
    --secondary-color: #ff7eee;
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --accent-color: #00e5ff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 音频可视化效果 */
.audio-visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    z-index: 1;
    padding: 0 20px;
    opacity: 0.5;
}

.bar {
    width: 8px;
    height: 20px;
    background: var(--gradient);
    border-radius: 3px 3px 0 0;
    animation: visualizer 1.5s infinite ease-in-out;
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }
.bar:nth-child(6) { animation-delay: 0.6s; }
.bar:nth-child(7) { animation-delay: 0.7s; }
.bar:nth-child(8) { animation-delay: 0.8s; }

@keyframes visualizer {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

/* 导航栏 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

nav a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--accent-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

/* 英雄区域 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), 
                url('https://source.unsplash.com/random/1920x1080/?music,studio') no-repeat center center/cover;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 工具部分 */
.tools-section {
    padding: 100px 5%;
    text-align: center;
}

.tools-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(108, 68, 252, 0.2);
    border-color: transparent;
}

.tool-card:hover::before {
    opacity: 0.1;
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tool-icon i {
    font-size: 30px;
    color: white;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.tool-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.tool-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.tool-link:hover::after {
    transform: translateX(5px);
}

/* 评分样式 */
.tool-rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    margin-right: 8px;
}

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

/* 特色工具部分 */
.featured-tool {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), 
                url('https://source.unsplash.com/random/1920x1080/?music,technology') no-repeat center center/cover;
}

.featured-content {
    flex: 1;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* 用户反馈部分 */
.testimonials {
    padding: 100px 5%;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    min-width: 300px;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    scroll-snap-align: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    color: var(--accent-color);
}

.author {
    font-weight: 600;
    color: var(--accent-color);
}

/* 订阅部分 */
.newsletter {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), 
                url('https://source.unsplash.com/random/1920x1080/?music,waves') no-repeat center center/cover;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--gradient);
    border: none;
    border-radius: 0 30px 30px 0;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #8a65ff, #ff9eee);
}

/* 页脚 */
footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 80px 5% 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

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

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

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.link-group h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-tool {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1001;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1002;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .language-switch {
        margin-top: 10px;
    }
}

/* 语言切换按钮 */
.language-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gradient);
    border-color: transparent;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}

/* 联系方式部分 */
.contact-section {
    padding: 100px 5%;
    text-align: center;
    background: rgba(10, 10, 10, 0.3);
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 24px;
    color: var(--accent-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* 联系模态框 */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

.close-modal:hover {
    color: white;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content .contact-info {
    margin-top: 30px;
    text-align: center;
}

.modal-content .contact-info p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

.modal-content .contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* 关于我们部分 */
.about-section {
    padding: 100px 5%;
    background: rgba(10, 10, 10, 0.3);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.about-story, .about-mission {
    flex: 1;
    min-width: 300px;
}

.about-story h3, .about-mission h3, .team-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.about-story p, .about-mission p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.mission-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.mission-point {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.mission-point i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.mission-point h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.mission-point p {
    color: rgba(255, 255, 255, 0.7);
}

.team-section {
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .mission-points {
        flex-direction: column;
    }
}

/* 分享部分 - 更新样式 */
.share-section {
    padding: 100px 5%;
    text-align: center;
    background: rgba(10, 10, 10, 0.2);
}

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

.share-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.share-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
}

.share-button i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.share-button:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.share-button.copy-link {
    background: var(--gradient);
    border: none;
}

.share-button.copy-link i {
    color: white;
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-button {
        width: 100%;
        max-width: 300px;
    }
}

/* 搜索框样式 */
.search-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    outline: none;
    width: 250px;
}

.search-button {
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 16px;
    margin-left: -30px;
}

/* 筛选按钮样式 */
.filter-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-button.active {
    background: var(--gradient);
    border-color: transparent;
}

/* 主题切换按钮样式 */
.theme-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

/* 亮色模式样式 - 添加更多元素的样式 */
body.light-mode {
    background-color: #f5f5f7;
    color: #333;
}

body.light-mode header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

body.light-mode nav a {
    color: #333;
}

body.light-mode .tool-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-mode .tool-card h3 {
    color: #333;
}

body.light-mode .tool-card p {
    color: #666;
}

/* 添加更多亮色模式样式 */
body.light-mode .featured-tool {
    background: rgba(255, 255, 255, 0.7);
}

body.light-mode .featured-content h2,
body.light-mode .testimonials h2,
body.light-mode .newsletter h2,
body.light-mode .about-header h2,
body.light-mode .share-section h2,
body.light-mode .team-section h3 {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

body.light-mode .featured-content p,
body.light-mode .about-story p,
body.light-mode .about-mission p,
body.light-mode .mission-point p,
body.light-mode .member-bio,
body.light-mode .share-section p {
    color: #555;
}

body.light-mode .testimonial {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .testimonial .quote {
    color: #333;
}

body.light-mode .testimonial .author {
    color: #666;
}

body.light-mode .newsletter {
    background: linear-gradient(135deg, rgba(108, 68, 252, 0.1), rgba(255, 126, 238, 0.1));
}

body.light-mode .newsletter-form input {
    background: white;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode footer {
    background: #333;
    color: white;
}

body.light-mode .footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .about-section,
body.light-mode .share-section {
    background: rgba(255, 255, 255, 0.5);
}

body.light-mode .mission-point {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .team-member {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .share-button {
    background: white;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .share-button i {
    color: var(--primary-color);
}

body.light-mode .share-button.copy-link {
    background: var(--gradient);
    color: white;
}

body.light-mode .share-button.copy-link i {
    color: white;
}

body.light-mode .search-input {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

body.light-mode .search-button {
    color: var(--primary-color);
}

body.light-mode .filter-button {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

body.light-mode .filter-button.active {
    background: var(--gradient);
    color: white;
}

body.light-mode .theme-toggle {
    color: #333;
}

/* 添加更多动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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