/* =========================================
   1. REGISTRASI FONT KUSTOM
   ========================================= */
@font-face {
    font-family: 'FontHeaderKustom';
    src: url('transferkebanklain.ttf') format('truetype');
}
@font-face {
    font-family: 'FontTombolKustom';
    src: url('transferketujuanbaru.ttf') format('truetype');
}
@font-face {
    font-family: 'FontLabelBank';
    src: url('banktujuan.ttf') format('truetype');
}
@font-face {
    font-family: 'FontNamaBank';
    src: url('namabank.ttf') format('truetype');
}
@font-face {
    font-family: 'FontRekeningKetik';
    src: url('rekeningketik.ttf') format('truetype');
}
@font-face {
    font-family: 'FontNamaPenerima';
    src: url('namapenerima.ttf') format('truetype');
}
@font-face {
    font-family: 'FontBankPenerima';
    src: url('bankpenerima.ttf') format('truetype');
}
@font-face {
    font-family: 'FontError';
    src: url('tulisanmerah.ttf') format('truetype');
}

/* --- FONT HALAMAN KONFIRMASI --- */
@font-face {
    font-family: 'FontJudulKonfirmasi';
    src: url('judulkonfirmasi.ttf') format('truetype');
}
@font-face {
    font-family: 'FontIsiKonfirmasi';
    src: url('konfirmasi.ttf') format('truetype');
}

/* --- FONT HALAMAN PIN --- */
@font-face {
    font-family: 'FontPinTitle';
    src: url('pintransaksi.ttf') format('truetype');
}
@font-face {
    font-family: 'FontPinSubtitle';
    src: url('masukanpin.ttf') format('truetype');
}

/* --- FONT BARU: HALAMAN BUKTI TRANSFER (REQUEST TERBARU) --- */
/* Lingkaran Merah (Kanan & Header Utama) */
@font-face {
    font-family: 'FontBuktiKanan';
    src: url('kananbukti.ttf') format('truetype');
}
/* Lingkaran Hijau (Kiri & Waktu) */
@font-face {
    font-family: 'FontBuktiKiri';
    src: url('kiribukti.ttf') format('truetype');
}

/* =========================================
   2. RESET & LAYOUT DASAR
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif; 
}

body {
    background-color: #0d3866; 
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    display: flex;
    justify-content: center;
}

.mobile-screen {
    background-color: #000;
    width: 100%;
    max-width: 480px;
    height: 100%;
    position: relative; 
    overflow: hidden;   
}

/* --- ANIMASI SWIPE (PARALLAX PUSH) --- */
.page-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #0d3866;
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease; 
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.page-section.active {
    transform: translateX(0); 
    filter: brightness(1); 
    z-index: 10;
}

.page-section.pushed-left {
    transform: translateX(-25%);
    filter: brightness(0.7); 
    z-index: 1; 
}

#page-home {
    z-index: 1;
}

/* =========================================
   3. HEADER
   ========================================= */
.header {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    color: white;
    height: 60px;
    flex-shrink: 0;
}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.header-title {
    font-family: 'FontHeaderKustom', sans-serif !important; 
    font-size: 18px;
    font-weight: 650; 
    letter-spacing: 0.3px;
    flex: 1;            
    text-align: left;  
    width: 100%;       
}

/* =========================================
   4. KONTEN UTAMA
   ========================================= */
.main-content {
    background-color: white;
    flex: 1;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 24px 20px 0 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Search Box */
.search-container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-left: 4px;
    flex-shrink: 0;
}
.search-icon {
    color: #888;
    width: 20px;
    height: 20px;
    margin-right: 12px;
}
.search-input {
    border: none;
    font-size: 15px;
    color: #333;
    width: 100%;
    outline: none;
}
.search-input::placeholder { color: #999; font-weight: 400; }

/* =========================================
   5. TOMBOL MENU & LIST BANK
   ========================================= */
.action-button {
    background-color: #005eb8;
    color: white;
    border: none;
    border-radius: 15px; 
    padding: 10px 16px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background 0.2s;
    margin-bottom: 20px;
    min-height: 54px; 
    width: 100%;
    flex-shrink: 0;
}
.action-button:active { background-color: #004a94; }
.btn-left-content { display: flex; align-items: center; gap: 12px; }
.icon-user-wrapper { display: flex; align-items: center; justify-content: center; width: 32px; }
.icon-user-image { width: 28px; height: 28px; object-fit: contain; display: block; }
.btn-text { font-family: 'FontTombolKustom', sans-serif; font-weight: 650; font-size: 16px; }

/* Spacer */
.spacer-container { overflow-y: auto; flex: 1; }
.separator-line { height: 60px; border-bottom: 1px solid #f2f2f2; width: 100%; }

/* List Bank */
.bank-search { border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; margin-bottom: 0; }
.bank-list-container { flex: 1; overflow-y: auto; padding-top: 13px; -ms-overflow-style: none; scrollbar-width: none; }
.bank-list-container::-webkit-scrollbar { display: none; }
.bank-item {
    color: #0d3866;
    font-family: 'FontNamaBank', sans-serif; 
    font-weight: 700;
    font-size: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    text-transform: uppercase;
}
.bank-item:hover { background-color: #f9f9f9; }
.no-result { padding: 20px 0; text-align: center; color: #999; font-size: 14px; display: none; }
.bank-item-spacer { height: 100px; }

/* =========================================
   6. HALAMAN INPUT REKENING
   ========================================= */
.input-form-container {
    padding-top: 0px;
    display: flex;
    flex-direction: column;
}

.label-small-blue {
    font-family: 'FontLabelBank', sans-serif; 
    color: #005eb8;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.value-bank-name {
    color: #005eb8;
    font-family: 'FontNamaBank', sans-serif; 
    font-weight: 780;
    text-transform: uppercase;
    font-size: 20px; 
    transform: scaleY(1); 
    transform-origin: left top; 
    display: inline-block; 
    margin-bottom: 30px; 
}

.floating-input-group {
    position: relative;
    margin-bottom: 40px; 
    padding-top: 15px; 
}

.input-underline {
    width: 100%;
    border: none;
    border-bottom: 1px solid black; 
    padding: 8px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    border-radius: 0;
    color: #333; 
    font-weight: 600;
    font-family: 'FontRekeningKetik', sans-serif !important;
    letter-spacing: 0.5px; 
}
.input-underline:focus { border-bottom: 2px solid black; }

.floating-label-text {
    font-family: 'FontTombolKustom', sans-serif; 
    color: #005eb8; 
    font-weight: 600; 
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 22px; 
    transition: 0.2s ease all;
    pointer-events: none; 
}

.input-underline:focus ~ .floating-label-text,
.input-underline:not(:placeholder-shown) ~ .floating-label-text {
    top: 0px; 
    font-size: 12px; 
    opacity: 1;
}

.btn-disabled {
    background-color: #a0a0a0;
    color: white;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: default;
    text-align: center;
    pointer-events: none; 
    transition: background-color 0.3s;
}

.btn-active-blue {
    background-color: #005eb8; 
    color: white;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0, 94, 184, 0.3);
}

/* =========================================
   7. HALAMAN DETAIL TRANSFER
   ========================================= */
.recipient-card {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.recipient-icon-box {
    width: 50px;
    height: 50px;
    background-color: #005eb8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}
.icon-nominal-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.recipient-details {
    display: flex;
    flex-direction: column;
}
.text-recipient-name {
    font-family: 'FontNamaPenerima', sans-serif; 
    color: #005eb8;
    font-weight: 800;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.text-recipient-bank {
    font-family: 'FontBankPenerima', sans-serif; 
    color: #333;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 3px;
    text-transform: uppercase;
}
.text-recipient-rek {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 16px;
}

.label-section {
    font-family: 'FontTombolKustom', sans-serif; 
    color: #005eb8;
    font-size: 16px; 
    font-weight: 600;
    margin-bottom: 10px;
}

.source-account-box {
    border: 1px solid #2dbeff; 
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    background-color: white;
}
.text-source-number {
    font-family: 'FontTombolKustom', sans-serif; 
    color: #0d3866;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.text-source-type {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 15px;
}

.nominal-container {
    display: flex;
    align-items: center; 
    margin-bottom: 24px;
}
.currency-label-group {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-currency-val {
    font-family: 'Inter', sans-serif;
    color: #333;
    font-weight: 700;
    font-size: 19px;
    line-height: 1;
}

.nominal-input-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.input-nominal {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'FontRekeningKetik', sans-serif !important;
    font-size: 21px;
    color: #333;
    padding-bottom: 8px;
    padding-top: 5px; 
    outline: none;
    background: transparent;
    margin-top: 0;
}
.input-nominal:focus { border-bottom: 2px solid #005eb8; }

.floating-label-nominal {
    position: absolute;
    left: 0;
    top: 5px; 
    font-family: 'FontTombolKustom', sans-serif;
    color: #005eb8;
    font-weight: 600;
    font-size: 19px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input-nominal:focus ~ .floating-label-nominal,
.input-nominal:not(:placeholder-shown) ~ .floating-label-nominal {
    top: -18px;
    font-size: 13px;
    opacity: 1;
}

.error-text-red {
    font-family: 'FontError', sans-serif !important;
    color: #d90000;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.4;
    padding-top: 5px;
    font-style: italic; 
}

.service-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    cursor: pointer;
}
.service-label {
    font-family: 'FontLabelBank', sans-serif; 
    color: #005eb8;
    font-weight: 700;
    font-size: 17px;
}

.transfer-type-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.btn-toggle {
    flex: 1;
    padding: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 14px;
}
.btn-toggle-active {
    background-color: #0F52A3; 
    color: white;
    border: none;
}
.btn-toggle-inactive {
    background-color: white;
    color: #005eb8;
    border: 1px solid #ccc;
}

.note-container {
    margin-bottom: 40px;
}
.text-disclaimer {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 6px;
}

/* =========================================
   8. STYLE HALAMAN KONFIRMASI
   ========================================= */
.conf-alert-banner {
    background-color: #ebf3fa; 
    color: #0d3866;
    font-family: 'FontIsiKonfirmasi', sans-serif;
    font-size: 15px; 
    font-weight: 600;
    text-align: center;
    padding: 16px 25px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}
.conf-list-container {
    background-color: white;
    padding-bottom: 100px;
}
.conf-row {
    padding: 18px 0; 
    border-bottom: 1px solid #f0f0f0; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.conf-label {
    font-family: 'FontJudulKonfirmasi', sans-serif;
    color: #666666;
    font-size: 14px; 
    margin-bottom: 6px;
    font-weight: 400;
}
.conf-value {
    font-family: 'FontIsiKonfirmasi', sans-serif;
    color: #222; 
    font-size: 17px; 
    font-weight: 700;
    margin-bottom: 2px;
}
.conf-value-name {
    font-family: 'FontIsiKonfirmasi', sans-serif;
    text-transform: uppercase;
    font-size: 18px; 
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}
.conf-value-bank {
    font-family: 'FontIsiKonfirmasi', sans-serif;
    font-size: 16px; 
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.conf-value-rek {
    font-family: 'FontIsiKonfirmasi', sans-serif;
    font-size: 16px; 
    color: #000;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-conf-container {
    padding: 20px;
}

/* =========================================
   15. STYLE HALAMAN PIN & LOADING
   ========================================= */
.pin-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    flex: 1;
}
.icon-lock-blue {
    width: 24px;
    height: 24px;
    margin-bottom: 15px;
    color: #005eb8; 
}
.text-pin-title {
    font-family: 'FontPinTitle', sans-serif; 
    color: #0d3866;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.text-pin-subtitle {
    font-family: 'FontPinSubtitle', sans-serif; 
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}
.pin-input-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: transparent;
    transition: all 0.2s;
}
.pin-dot.filled {
    background-color: #005eb8;
    border-color: #005eb8;
}
.eye-icon-toggle {
    position: absolute;
    right: 40px; 
    cursor: pointer;
    color: #666;
}
.custom-numpad {
    background-color: #d1d5db; 
    padding: 10px 6px;
    padding-bottom: 30px; 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    margin-top: auto; 
}
.numpad-btn {
    background-color: #fcfcfc;
    border-radius: 5px;
    border: none;
    height: 48px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 1px 0 #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.numpad-btn:active { background-color: #e0e0e0; }
.numpad-btn.transparent { background-color: transparent; box-shadow: none; }
#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; 
    z-index: 9999; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#loading-overlay.active { opacity: 1; pointer-events: auto; }
#lottie-container { width: 150px; height: 150px; }

/* =========================================
   14 & 16. STYLE HALAMAN BUKTI TRANSFER (RECEIPT)
   (UPDATED FONTS kananbukti.ttf & kiribukti.ttf)
   ========================================= */

#page-receipt {
    background-color: white;
    background-image: url('watermark.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; 
}

/* Notifikasi Atas (LINGKARAN MERAH -> kananbukti.ttf) */
.notification-banner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background-color: rgba(30, 30, 30, 0.95);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
}
.notification-banner.show {
    opacity: 1;
    top: 50px; 
}

.notif-icon-box {
    width: 35px;
    height: 35px;
    background-color: #005eb8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}
.notif-content {
    flex: 1;
    color: white;
    font-family: 'Inter', sans-serif;
}
.notif-title-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px; 
    font-weight: 600;
    margin-bottom: 2px;
    
    /* Font Kanan */
    font-family: 'FontBuktiKanan', sans-serif; 
}
.notif-desc {
    font-size: 13px; 
    line-height: 1.3;
    color: #e0e0e0;
    
    /* Font Kanan */
    font-family: 'FontBuktiKanan', sans-serif; 
}

/* Header Receipt */
.receipt-header {
    margin-top: 80px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.success-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #1a9d8e; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px #e0f4f2; 
}
.failure-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ffebee; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px #fff0f0; 
}
.status-icon-img {
    width: 89px;
    height: 89px;
    object-fit: contain;
}

/* Status (Berhasil/Gagal) -> LINGKARAN MERAH -> kananbukti.ttf */
.text-status-success {
    font-family: 'FontBuktiKanan', sans-serif; /* UPDATE */
    font-weight: 700;
    color: #0d3866;
    font-size: 19px; 
    margin-bottom: 4px;
}
.text-status-failed {
    font-family: 'FontBuktiKanan', sans-serif; /* UPDATE */
    font-weight: 700;
    color: #d90000; 
    font-size: 19px; 
    margin-bottom: 4px;
}

/* Waktu (08 Jan...) -> LINGKARAN HIJAU -> kiribukti.ttf */
.text-time-success {
    font-family: 'FontBuktiKiri', sans-serif; /* UPDATE */
    font-weight: 400;
    color: #666;
    font-size: 14px; 
    margin-bottom: 12px;
}

/* Total Nominal (IDR 64...) -> LINGKARAN MERAH -> kananbukti.ttf */
.text-amount-success {
    font-family: 'FontBuktiKanan', sans-serif; /* UPDATE */
    font-weight: 800;
    color: #0d3866;
    font-size: 28px; 
}

/* List Data */
.receipt-list {
    padding: 0 24px;
    margin-bottom: 30px;
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

/* Label (Kiri) -> LINGKARAN HIJAU -> kiribukti.ttf */
.receipt-label {
    font-family: 'FontBuktiKiri', sans-serif; /* UPDATE */
    color: #555;
    font-size: 15px; 
    font-weight: 400;
    flex: 1;
}

/* Value (Kanan) -> LINGKARAN MERAH -> kananbukti.ttf */
.receipt-value {
    font-family: 'FontBuktiKanan', sans-serif; /* UPDATE */
    color: #000;
    font-size: 15px; 
    font-weight: 600;
    text-align: right;
    flex: 1.5; 
    word-wrap: break-word;
    text-transform: uppercase;
}
.receipt-value.normal-case { text-transform: none; }

/* Pesan Gagal */
.receipt-failure-info {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 24px;
    text-align: center;
    display: none; 
}
.text-failure-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #d90000;
    font-size: 15px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.text-failure-desc {
    font-family: 'FontError', sans-serif; 
    font-style: italic;
    color: #d90000;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.receipt-footer {
    padding: 20px 24px 40px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent; 
    margin-top: auto; 
}
.btn-circle-outline {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #005eb8;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.btn-finish {
    flex: 1;
    background-color: #005eb8;
    color: white;
    border: none;
    border-radius: 25px;
    height: 45px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px; 
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 94, 184, 0.3);
}

#page-receipt .main-content {
    padding: 0;
    background-color: transparent; 
}
/* =========================================
   UPDATE: NOTIFIKASI IPHONE STYLE (FIXED)
   ========================================= */

.notification-banner {
    position: absolute;
    /* Posisi Awal: Di atas layar (tersembunyi) */
    top: -120px; 
    
    /* Atur jarak kiri-kanan agar pasti di tengah */
    left: 16px;
    right: 16px;
    width: auto; 
    
    /* PENTING: Reset transform agar tidak miring/terpotong */
    transform: none !important; 
    
    /* Styling Visual iOS */
    background-color: rgba(30, 30, 30, 0.90); /* Gelap transparan */
    backdrop-filter: blur(25px); /* Efek blur di belakang */
    -webkit-backdrop-filter: blur(25px);
    
    border-radius: 22px; /* Lebih bulat (Pill shape) */
    padding: 12px 16px;
    display: flex;
    align-items: center; 
    
    /* Shadow lembut */
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    
    /* Animasi Masuk: Smooth Spring (Membal) */
    opacity: 0;
    transition: top 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

/* Class saat notifikasi muncul */
.notification-banner.show {
    top: 15px; /* Posisi akhir (Jarak dari atas layar) */
    opacity: 1;
}

/* Wadah Logo myBCA */
.notif-icon-box {
    width: 40px; 
    height: 40px;
    background-color: transparent; 
    border-radius: 8px; /* Sudut tumpul logo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

/* Gambar Logo myBCA */
.notif-mybca-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konten Teks */
.notif-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4px;
}

/* Baris Judul (Nama App & Waktu) */
.notif-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Supaya waktu sejajar bawah teks */
    margin-bottom: 2px;
}

/* Judul "Catatan Finansial" -> Pakai Font Kustom Kanan */
.notif-app-name {
    font-family: 'FontBuktiKanan', sans-serif;
    font-size: 14px; 
    font-weight: 600; /* Bold */
    color: #ffffff;
    letter-spacing: 0.2px;
}

/* Waktu "sekarang" -> Pakai Font Kustom Kanan */
.notif-time {
    font-family: 'FontBuktiKanan', sans-serif;
    font-size: 12px;
    color: #d0d0d0; /* Abu terang */
    font-weight: 400;
}

/* Deskripsi -> Pakai Font Kustom Kanan */
.notif-desc {
    font-family: 'FontBuktiKanan', sans-serif;
    font-size: 13px; 
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
    
    /* Batasi 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* =========================================
   STYLE TAMBAHAN: LOGIN GLASSMORPHISM
   ========================================= */

/* Hiasan Lingkaran Background */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0; 
}
.circle-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #0061f2, #00c6f9);
    top: -40px;
    left: -40px;
    opacity: 0.5;
}
.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    bottom: -30px;
    right: -30px;
    opacity: 0.4;
}

/* Container Login */
.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 320px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.4);
}

.login-header h2 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 24px;
}
.login-header p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 13px;
    margin-bottom: 30px;
}

/* Input Login */
.login-group {
    margin-bottom: 20px;
    padding-top: 5px;
}
.input-login {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    color: #333;
}
.input-login:focus {
    border-bottom-color: #0061f2;
}
.floating-label-login {
    position: absolute;
    left: 10px;
    top: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #888;
    pointer-events: none;
    transition: 0.2s ease all;
}
.input-login:focus ~ .floating-label-login,
.input-login:not(:placeholder-shown) ~ .floating-label-login {
    top: -10px;
    font-size: 12px;
    color: #0061f2;
    font-weight: 500;
}

/* Tombol Login */
.btn-login-gradient {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0061f2, #00c6f9);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 97, 242, 0.3);
    transition: transform 0.2s;
    margin-top: 10px;
}
.btn-login-gradient:active {
    transform: scale(0.98);
}

.btn-trial-link {
    margin-top: 15px;
    font-size: 13px;
    color: #0061f2;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.login-message {
    margin-top: 15px;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    font-family: 'Poppins', sans-serif;
}
.login-message.error {
    background: #ffeaea;
    color: #d90000;
}

.copyright-text {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #aaa;
    font-family: 'Poppins', sans-serif;
}
/* --- Tambahkan ini di style.css --- */

.receipt-top-logo {
    width: 90px;        /* Sesuaikan ukuran logo (misal 80px - 100px) */
    height: auto;       /* Menjaga proporsi logo */
    object-fit: contain;
    margin-bottom: 25px; /* Memberi jarak antara logo dengan lingkaran ceklis */
}

/* --- Modifikasi class yang sudah ada (Opsional) --- */
/* Cari .receipt-header yang lama (sekitar baris 629) dan kurangi margin-top nya 
   agar posisi keseluruhan tidak terlalu ke bawah */

.receipt-header {
    margin-top: 40px;  /* UBAH dari 80px menjadi 40px atau 50px */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
/* 1. KECILKAN LOGO & KURANGI JARAK KE BAWAHNYA */
.receipt-top-logo {
    width: 85px;          /* Sedikit diperkecil dari 90px agar proporsional */
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;   /* PENTING: Ubah dari 25px jadi 5px saja */
}

/* 2. TARIK HEADER LEBIH KE ATAS */
.receipt-header {
    margin-top: 10px;     /* PENTING: Ubah drastis dari 40px/80px jadi 10px */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;  /* Kurangi sedikit jarak ke list data */
}

/* 3. RAPATKAN JARAK ANTARA IKON (X/Ceklis) DENGAN TEKS "Transfer Gagal" */
.success-icon-circle, 
.failure-icon-circle {
    /* ... properti lain biarkan tetap ada ... */
    margin-bottom: 5px;   /* Ubah dari 15px jadi 5px */
    
    /* Pastikan properti width/height/color dsb tidak terhapus, 
       cukup ganti margin-bottom nya saja */
}
/* Cari bagian ini */

.text-status-success {
    font-family: 'FontBuktiKanan', sans-serif;
    font-weight: 700;
    color: #0d3866;
    font-size: 19px; 
    
    /* Ubah ini jika ingin jarak teks ke tanggal lebih jauh */
    margin-bottom: 4px; /* Default 4px, coba ganti 8px atau 10px */
}

.text-status-failed {
    font-family: 'FontBuktiKanan', sans-serif;
    font-weight: 700;
    color: #d90000; 
    font-size: 19px; 
    
    /* Ubah ini juga */
    margin-bottom: 4px; /* Default 4px */
}
/* Cari bagian ini di style.css */

.success-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #1a9d8e; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* UBAH ANGKA INI (Misal jadi 35px) */
    margin-bottom: 25px; 
    
    box-shadow: 0 0 0 4px #e0f4f2; 
}

.failure-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ffebee; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* UBAH ANGKA INI JUGA (Samakan dengan atas) */
    margin-bottom: 25px; 
    
    box-shadow: 0 0 0 4px #fff0f0; 
}
