body{
    background:#f2f4f8;
    font-family:'Poppins',sans-serif;
}
.cashout-header{text-align:center;margin-bottom:30px;}
.cashout-header img{height:70px;margin-bottom:10px;}

.pay-checkout-box{
    max-width:750px;margin:auto;background:#fff;padding:25px 30px;
    border-radius:15px;box-shadow:0 4px 20px rgba(0,0,0,0.1);
    margin-top:20px;margin-bottom:20px;
    min-height: 80vh; 
}
.pay-title{text-align:center;font-size:26px;color:#333;}

.pay-summary-box{
    background:#f9fafc;padding:15px;border-radius:10px;
    margin-bottom:25px;border:1px solid #e4e6eb;
}
.pay-summary-box p{margin:8px 0;font-size:16px;}

.pay-methods{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:15px;margin-bottom:20px;
}
.pay-method{
    border:1px solid #e0e0e0;padding:10px;border-radius:12px;text-align:center;
    background:#f9f9f9;cursor:pointer;position:relative;transition:0.3s;
}
.pay-method:hover{border-color:#28a745;background:#eaffea;}
.pay-method img{height:40px;margin-bottom:5px;}
.pay-checkmark{
    position:absolute;top:8px;right:8px;width:20px;height:20px;
    background:#28a745;color:#fff;border-radius:50%;font-size:12px;
    display:flex;align-items:center;justify-content:center;opacity:0;transition:0.3s;
}
.pay-method.pay-active .pay-checkmark{opacity:1;}

input[type=radio]{display:none;}
.pay-hidden{display:none;}

.pay-input{
    width:100%;padding:12px;border-radius:8px;border:1px solid #ccc;
    margin-bottom:15px;font-size:16px;
}

.pay-btn{
    width:100%;
    padding:14px;
    background:#4caf50;
    color:white;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    margin-top:10px;
    margin-bottom: 15px;
}
.pay-btn:hover{
    background:#43a047;
    
}

.copy-btn{
    padding:7px 14px;
    border:none;
    border-radius:6px;
    color:#fff;
    cursor:pointer;
    font-size:14px;
    font-weight:bold;
    margin-bottom:10px;
}

/* Balance Sections */
.balance-container {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    gap: 15px;
}

.balance-box {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow .3s ease, transform .3s ease;
    overflow: hidden;
}

.balance-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,.15);
}

/* ICON — NO transform animation */
.balance-icon {
    font-size: 28px !important;
    line-height: 1 !important;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fake bounce using ::after */
.balance-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    animation: icon-bounce 1.6s ease-in-out infinite;
}

/* smooth, tiny movement */
@keyframes icon-bounce {
    0%   { top: 0; }
    50%  { top: -2px; }
    100% { top: 0; }
}

.balance-amount {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.balance-label {
    font-size: 13px;
    color: #666;
}

