/* ========================================
   联系方式模块样式 - Contact Styles
   ======================================== */

.contact {
    background: linear-gradient(135deg, #050508 0%, #0a0a0f 50%, #1a1a2e 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(76, 29, 149, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: #94a3b8;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-links a {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.contact-links a:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.contact-links i {
    font-size: 1.3rem;
}
