.modal-supportaci .modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.98));
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-supportaci .modal-header {
    border-bottom: 2px solid #1a1a1a;
    padding: 2rem 2rem 1.5rem;
}

.modal-supportaci .modal-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.modal-supportaci .btn-close {
    filter: brightness(0);
}

.modal-supportaci .modal-body {
    padding: 2rem;
}

/* Intro Text */
.support-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 15px;
}

.support-intro h6 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.support-intro p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Support Item */
.support-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.support-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-item-icon i {
    font-size: 2rem;
    color: white;
}

.support-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.support-item-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* IBAN Display */
.iban-display {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.iban-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.iban-value {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    word-break: break-all;
}

/* Bank Details */
.bank-details {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

.bank-details strong {
    color: #1a1a1a;
}

/* PayPal Button Custom */
.btn-paypal {
    background: linear-gradient(135deg, #0070ba, #003087);
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-paypal:hover,
.btn-paypal:focus,
.btn-paypal:active {
    background: linear-gradient(135deg, #005ea6, #00286e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
    color: white !important;
}

.btn-paypal i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Copy IBAN Button */
.btn-copy-iban {
    background: #1a1a1a;
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-copy-iban:hover,
.btn-copy-iban:focus,
.btn-copy-iban:active {
    background: #000000;
    transform: translateY(-2px);
    color: white !important;
}

.btn-copy-iban.copied {
    background: #28a745;
    color: white !important;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-supportaci .modal-body {
        padding: 1.5rem;
    }

    .support-item {
        padding: 1.5rem;
    }

    .iban-value {
        font-size: 0.9rem;
    }
}