.support-card {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* Destek Seçenekleri Stilleri */
.support-option {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.support-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.support-option-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.support-option-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #54a3ff);
}

.support-option-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.support-option-icon.live-chat {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-option-text {
    flex: 1;
}

.support-option-text h6 {
    margin: 0 0 4px 0;
    font-weight: 600;
}

.support-option-text small {
    font-size: 0.875rem;
}

.support-option-arrow {
    color: #6c757d;
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #6c757d;
}

.contact-item ion-icon {
    color: #667eea;
}

/* Dark mode stilleri */
body.dark-mode .support-card {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

body.dark-mode .support-option {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .support-option:hover {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .contact-item {
    color: #adb5bd;
}
