/* 黑暗模式样式补充 */

/* Footer样式 */
footer {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #74c0fc;
}

.social-icons a {
    color: #cccccc;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #74c0fc;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* 主页内容区域样式 */
.hero-section {
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #cccccc;
    margin-bottom: 40px;
}

/* 治愈花园邀请区域样式 */
.healing-invitation-section {
    position: relative;
    padding: 80px 0;
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
}

.invitation-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.invitation-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.invitation-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #cccccc;
    margin-bottom: 30px;
}

.invitation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.invitation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    color: white;
}

/* 其他页面通用样式 */
.hero-content {
    text-align: center;
    padding: 60px 0;
}

.healing-title, .efficiency-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.healing-subtitle, .efficiency-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #cccccc;
    margin-bottom: 40px;
}

/* 开发者页面样式 */
.developer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.developer-header {
    text-align: center;
    margin-bottom: 50px;
}

.developer-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #ffffff;
    margin-bottom: 15px;
}

.developer-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #cccccc;
}

.section-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

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

.developer-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.developer-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #333;
}

.developer-details h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 5px;
}

.developer-role {
    color: #cccccc;
    margin-bottom: 20px;
}

.developer-social a {
    color: #cccccc;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.developer-social a:hover {
    color: #74c0fc;
}

/* 链接样式 */
a {
    color: #74c0fc;
    transition: color 0.3s ease;
}

a:hover {
    color: #a5d8ff;
}