* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.key-icon {
    margin-bottom: 1rem;
}

.title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    max-width: 80%;
    line-height: 1.4;
}

.cards-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-card-new, .sender-card-new {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amount-card-new {
    background: #5b2b8c;
}

.sender-card-new {
    background: #2b8cff;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-value {
    font-size: 1.75rem;
    font-weight: 800;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-bg-icon {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
}

.select-entity {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entity-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.entity-title {
    font-weight: 700;
    color: #4A148C;
    font-size: 0.9rem;
}

.bank-list {
    width: 100%;
}

.bank-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f5f9;
}

.bank-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.bank-list-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-left: 8px;
    transition: transform 0.3s;
}

.bank-list-item:hover .bank-list-logo {
    transform: scale(1.05);
}

.bank-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.bank-list-item:hover .bank-chevron {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseKey {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.amount-card-new { animation: fadeInUp 0.5s ease-out forwards; opacity: 0; }
.sender-card-new { animation: fadeInUp 0.7s ease-out forwards; opacity: 0; }
.select-entity { animation: fadeInUp 0.9s ease-out forwards; opacity: 0; }
.key-icon svg { animation: pulseKey 2.5s infinite ease-in-out; }
