*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #094a8b;
    min-height: 100vh;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

.bc-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
    padding: 12px 40px;
    flex-shrink: 0;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.bc-topbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-logo-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    image-rendering: auto;
}

.bc-card-logo {
    display: block;
    height: 100px;
    width: auto;
    max-width: min(100%, 320px);
    margin: 0 auto 24px;
    object-fit: contain;
    image-rendering: auto;
}

.bc-secure-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #8b95a5;
    font-weight: 500;
}

.bc-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 40px;
    background: linear-gradient(
        180deg,
        #094a8b 0%,
        #094a8b 88%,
        #0c528f 95%,
        #1a6aa8 100%
    );
}

.bc-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bc-card-accent {
    height: 8px;
    background: linear-gradient(
        90deg,
        #0a4f86 0%,
        #1a6a9e 22%,
        #4f96c0 42%,
        #8ec0df 58%,
        #c8e2f2 72%,
        #ffe566 88%,
        #ffdd00 100%
    );
}

.bc-card-inner {
    padding: 32px 28px 0;
    position: relative;
}

.bc-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(180deg, rgba(236, 242, 248, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.bc-card-icon {
    width: 60px;
    height: 60px;
    background: #e8f2fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.bc-card-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.75;
}

.bc-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.bc-subtitle {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 26px;
    padding: 0 6px;
}

.bc-subtitle:has(+ .bc-waarvoor) {
    margin-bottom: 10px;
}

.bc-subtitle .bc-sender-name {
    font-weight: 700;
    color: #374151;
}

.bc-waarvoor {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 26px;
    padding: 0 6px;
}

.bc-amount-box {
    display: block;
    width: fit-content;
    min-width: 0;
    background: #f8f9fb;
    border: none;
    border-radius: 20px;
    padding: 20px 16px 22px;
    text-align: center;
    margin: 0 auto 26px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 4px rgba(9, 74, 139, 0.05);
}

.bc-amount-label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #a1a9b3;
    margin-bottom: 4px;
    line-height: 1.2;
}

.bc-amount-value {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1a3568;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bc-banks-heading-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 16px;
}

.bc-banks-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.bc-banks-heading {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #9ca3af;
    text-transform: uppercase;
    white-space: nowrap;
}

.bc-banks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 0;
}

.bc-banks-divider {
    height: 1px;
    background: #eceef1;
    margin: 12px 0 0;
}

.bc-bank-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none;
    color: #111827;
    transition: background 0.15s, border-color 0.15s;
    min-height: 50px;
}

.bc-bank-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.bc-bank-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.bc-bank-logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    display: block;
}

.bc-bank-label {
    flex: 1;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-bank-chevron {
    flex-shrink: 0;
    color: #d1d5db;
}

.bc-card-footer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 20px 28px 28px;
    min-height: 64px;
    font-size: 10px;
    color: #9ca3af;
}

.bc-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 560px) {
    .bc-topbar {
        padding: 12px 20px;
        min-height: 60px;
    }

    .bc-logo-img {
        height: 44px;
    }

    .bc-card-logo {
        height: 88px;
        margin-bottom: 20px;
    }

    .bc-card-inner {
        padding: 26px 20px 16px;
    }

    .bc-card-footer {
        padding: 0 20px 18px;
    }

    .bc-banks-grid {
        grid-template-columns: 1fr;
    }
}
