/* 加入我们页面样式 */
.join-us-page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 15px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.join-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b6b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #ff6b6b;
}

.section-content {
    line-height: 1.8;
    color: #555;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

/* 社区特色网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 加入方式 */
.join-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
}

.method-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.method-number {
    background: #ff6b6b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.method-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 立即加入区域 */
.highlight-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.highlight-section .section-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.highlight-section .section-title i {
    color: white;
}

.join-description {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.join-button-container {
    text-align: center;
    margin: 30px 0;
}

.join-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0088cc;
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

.join-telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    color: white;
    background: #005580;
}

.join-telegram-btn i {
    font-size: 28px;
}

.channel-info {
    text-align: center;
    margin-top: 20px;
}

.channel-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.channel-info a {
    color: #ffd700;
    text-decoration: none;
}

.channel-info a:hover {
    text-decoration: underline;
}

/* 社区规则 */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.rule-icon {
    font-size: 24px;
    color: #ff6b6b;
    margin-top: 5px;
}

.rule-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.rule-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 常见问题 */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #ff6b6b;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 侧边栏样式 */
.community-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item i {
    font-size: 24px;
    color: #ff6b6b;
    width: 30px;
}

.stat-item strong {
    color: #333;
    font-size: 14px;
}

.stat-item p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.quick-join {
    text-align: center;
}

.quick-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b6b;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.quick-join-btn:hover {
    background: #ee5a24;
    color: white;
    transform: translateY(-2px);
}

.join-note {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #ff6b6b;
}

.related-links i {
    color: #ff6b6b;
    width: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .join-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .join-telegram-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
} 