.wao-topups-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 30px;
}

.wao-topups-hero {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 20px;
    margin-bottom: 24px;
    align-items: stretch;
}

.wao-topups-kicker {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wao-topups-hero h1 {
    margin: 0 0 8px;
    font-size: 34px;
    color: #0f172a;
}

.wao-topups-hero p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.wao-topups-balance-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wao-topups-balance-card span {
    opacity: .8;
    font-size: 13px;
}

.wao-topups-balance-card strong {
    font-size: 34px;
    margin: 8px 0 14px;
}

.wao-topups-balance-card a {
    display: inline-block;
    width: fit-content;
    background: #fff;
    color: #0f172a;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.wao-topups-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 20px;
    margin-bottom: 24px;
}

.wao-topups-form-card,
.wao-topups-side-card,
.wao-topups-history-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .06);
}

.wao-card-head h3 {
    margin: 0 0 6px;
    color: #0f172a;
    font-size: 22px;
}

.wao-card-head p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.5;
}

.wao-topups-form {
    display: grid;
    gap: 16px;
}

.wao-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wao-field {
    display: grid;
    gap: 8px;
}

.wao-field label {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.wao-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: .2s ease;
    box-sizing: border-box;
}

.wao-field input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.wao-upload-box {
    position: relative;
    border: 2px dashed #93c5fd;
    background: linear-gradient(180deg, #eff6ff, #ffffff);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    overflow: hidden;
    transition: .2s ease;
}

.wao-upload-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, .08);
}

.wao-upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.wao-upload-content {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.wao-upload-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.wao-upload-content strong {
    color: #0f172a;
    font-size: 16px;
}

.wao-upload-content small,
.wao-upload-content em {
    color: #64748b;
    font-size: 13px;
    font-style: normal;
}

.wao-btn-primary {
    min-height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 14px 25px rgba(37, 99, 235, .18);
    transition: .2s ease;
}

.wao-btn-primary:hover {
    transform: translateY(-1px);
}

.wao-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
}

.wao-check-list li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    color: #334155;
}

.wao-pre-status {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 6px;
}

.wao-pre-status span {
    color: #166534;
    font-size: 13px;
}

.wao-pre-status strong {
    color: #14532d;
    font-size: 20px;
}

.wao-topups-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}

.wao-topups-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.wao-topups-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.wao-table-wrap {
    overflow-x: auto;
}

.wao-topups-table {
    width: 100%;
    border-collapse: collapse;
}

.wao-topups-table th,
.wao-topups-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    white-space: nowrap;
}

.wao-topups-table th {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.wao-topups-table td {
    color: #1e293b;
    font-size: 14px;
}

.wao-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
}

.wao-status-pre_aprobado {
    background: #dbeafe;
    color: #1d4ed8;
}

.wao-link-btn {
    display: inline-block;
    text-decoration: none;
    background: #eff6ff;
    color: #1d4ed8;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
}

.wao-empty-row {
    text-align: center;
    color: #64748b !important;
    padding: 24px !important;
}

@media (max-width: 900px) {
    .wao-topups-hero,
    .wao-topups-grid,
    .wao-form-row {
        grid-template-columns: 1fr;
    }

    .wao-topups-hero h1 {
        font-size: 28px;
    }
}