/* Uber ride payment — dark 1:1 style */

:root {
    --uber-bg: #000000;
    --uber-surface: #121212;
    --uber-surface-2: #1a1a1a;
    --uber-text: #ffffff;
    --uber-muted: #9a9a9a;
    --uber-muted-2: #6b6b6b;
    --uber-radius: 16px;
    --uber-radius-sm: 12px;
    --uber-max: 430px;
    --uber-pad: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    background: var(--uber-bg);
    color: var(--uber-text);
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.uber-page {
    background: var(--uber-bg);
}

.uber-shell {
    width: 100%;
    max-width: var(--uber-max);
    margin: 0 auto;
    min-height: 100vh;
    padding: 18px var(--uber-pad) 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

/* Header */
.uber-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    min-height: 36px;
}

.uber-logo {
    display: flex;
    align-items: center;
    height: 28px;
}

.uber-logo__img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    object-position: left center;
}

.uber-header__ride {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--uber-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.uber-header__car {
    color: var(--uber-muted);
    flex-shrink: 0;
}

/* From / avatar */
.uber-from {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.uber-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    line-height: 1;
}

.uber-from__label {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 400;
    color: var(--uber-muted);
    line-height: 1.3;
}

.uber-from__name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

/* Amount card */
.uber-card {
    background: var(--uber-surface);
    border-radius: var(--uber-radius);
    padding: 20px 18px 18px;
    margin-bottom: 28px;
}

.uber-card__copy {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #fff;
    letter-spacing: -0.01em;
}

.uber-card__who {
    font-weight: 700;
}

.uber-card__amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.uber-card__price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.uber-card__total {
    font-size: 15px;
    font-weight: 500;
    color: var(--uber-muted);
}

/* Banks */
.uber-banks__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.uber-banks__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uber-bank {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 12px 16px 12px 12px;
    background: var(--uber-surface);
    border-radius: var(--uber-radius-sm);
    text-decoration: none;
    color: #fff;
    transition: background 0.15s ease, transform 0.12s ease;
    -webkit-tap-highlight-color: transparent;
}

.uber-bank:active {
    transform: scale(0.985);
    background: #1c1c1c;
}

.uber-bank:hover {
    background: #181818;
}

.uber-bank__logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uber-bank__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.uber-bank__name {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.uber-bank__chevron {
    color: #6f6f6f;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .uber-shell {
        padding-top: 28px;
    }

    .uber-card__price {
        font-size: 44px;
    }
}
