/* Support Modal Styling */
.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.support-icon i {
    font-size: 24px;
    color: white;
}

.donation-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.donation-pill {
    flex: 1;
    max-width: 80px;
    padding: 16px 8px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.donation-pill:hover {
    background: #e9ecef;
    border-color: #6c757d;
    color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.donation-pill.featured {
    background: #000;
    border-color: #000;
    color: white;
}

.donation-pill.featured:hover {
    background: #333;
    border-color: #333;
    color: white;
}