.bank-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(11, 61, 44, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 61, 44, 0.08);
    border-color: rgba(11, 61, 44, 0.15);
}
.info-box {
    background-color: #fcfdfe;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: monospace;
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copy-btn {
    background: #fbf0d8;
    border: none;
    color: #c49a3c;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.copy-btn:hover {
    background: #c49a3c;
    color: #ffffff;
}
.copy-btn.copied {
    background: #d1fae5;
    color: #065f46;
}
