/* ============================================
   SIMPLIFIED DONATION PAGE - Account Cards
   ============================================ */

/* Account Cards */
.account-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.account-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.account-card-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a4e6b 100%);
    color: white;
    padding: 1.8rem 1.5rem 1.5rem;
    position: relative;
    text-align: center;
}

.bank-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.account-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.country-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.account-card-body {
    padding: 1.8rem 1.5rem;
    flex-grow: 1;
}

.account-detail {
    margin-bottom: 1.2rem;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.detail-value-with-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-family: monospace;
    font-size: 0.95rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.payment-note {
    background: rgba(255, 107, 53, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.account-card-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px dashed rgba(255, 107, 53, 0.2);
    text-align: center;
}

/* PayPal Specific */
.btn-paypal {
    background: #003087;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-paypal:hover {
    background: #009cde;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 60, 135, 0.3);
}

/* Instruction Card */
.instruction-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,107,53,0.1);
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(255,107,53,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Thank You Note */
.thank-you-note {
    padding: 3rem 2rem;
    background: linear-gradient(145deg, white, #f8f9fa);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Crypto specific */
.account-crypto {
    font-family: monospace;
    font-size: 0.85rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 768px) {
    .account-card-header {
        padding: 1.5rem 1rem;
    }
    
    .bank-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .account-card-header h3 {
        font-size: 1.1rem;
    }
    
    .account-card-body {
        padding: 1.5rem 1rem;
    }
    
    .instruction-card {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .detail-value-with-copy {
        font-size: 0.85rem;
    }
}