.bs_wrap{
    max-width:1400px;
    margin:auto;
    padding:18px;
    color:#fff;
    font-family:Inter,Arial,sans-serif;
}

.bs_statement{
    background:#081120;
    border:1px solid #142033;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.35);
}

/* =====================================================
HEADER
===================================================== */

.bs_statement_header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:24px;
    border-bottom:1px solid #142033;
}

.bs_heading{
    font-size:42px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    letter-spacing:-1px;
}

.bs_user{
    margin-top:8px;
    font-size:15px;
    color:#94a3b8;
}

.bs_wallet{
    text-align:right;
}

.bs_wallet_label{
    font-size:13px;
    color:#94a3b8;
    margin-bottom:6px;
}

.bs_wallet_amount{
    font-size:40px;
    font-weight:800;
    color:#22c55e;
    line-height:1;
}

/* =====================================================
TABLE HEADER
===================================================== */

.bs_table_head{
    display:grid;
    grid-template-columns:260px 120px 1fr 160px 160px;
    gap:20px;
    padding:16px 24px;
    background:#0d1728;
    border-bottom:1px solid #142033;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.6px;
    color:#94a3b8;
}

/* =====================================================
ROWS
===================================================== */

.bs_entry{
    display:grid;
    grid-template-columns:260px 120px 1fr 160px 160px;
    gap:20px;
    align-items:center;
    padding:22px 24px;
    border-bottom:1px solid #132033;
    transition:.2s ease;
}

.bs_entry:last-child{
    border-bottom:none;
}

.bs_entry:hover{
    background:rgba(255,255,255,.02);
}

/* =====================================================
DATE COLUMN
===================================================== */

.bs_local_time{
    font-size:15px;
    font-weight:600;
    color:#fff;
    margin-bottom:6px;
}

.bs_timezone{
    font-size:12px;
    color:#64748b;
}

/* =====================================================
TYPE
===================================================== */

.bs_type{
    font-size:15px;
    font-weight:700;
}

.bs_entry:nth-child(odd) .bs_type{
    color:#38bdf8;
}

/* =====================================================
DETAILS
===================================================== */

.bs_action{
    font-size:13px;
    margin-bottom:2px;
    line-height:1.3;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
}

.bs_reason{
    font-size:14px;
    color:#94a3b8;
    line-height:1.5;
}

/* =====================================================
AMOUNT
===================================================== */

.bs_plus{
    color:#22c55e;
    font-size:28px;
    font-weight:800;
    text-align:right;
}

.bs_minus{
    color:#ef4444;
    font-size:28px;
    font-weight:800;
    text-align:right;
}

/* =====================================================
BALANCE
===================================================== */

.bs_balance_col{
    font-size:28px;
    font-weight:700;
    text-align:right;
    color:#fff;
}

/* =====================================================
EMPTY
===================================================== */

.bs_empty{
    padding:50px 20px;
    text-align:center;
    color:#94a3b8;
    font-size:15px;
}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:768px){

    .bs_wrap{
        padding:8px;
    }

    .bs_statement{
        border-radius:12px;
        overflow:hidden;
    }

    /* SEARCH */

    .bs_player_search{
        width:100%;
        padding:14px;
        box-sizing:border-box;
    }

    .bs_player_search form{
        width:100%;
    }

    .bs_player_search select{
        width:100% !important;
        max-width:100% !important;
        height:54px;
       background:#16263d;
        border:1px solid #22c55e;
        border-radius:14px;
      color:#38bdf8;
        padding:0 16px;
        font-size:16px;
        outline:none;
        display:block;
        box-sizing:border-box;
    }

    .bs_player_search select:focus{
        border-color:#38bdf8;
    }

    /* HEADER */

    .bs_statement_header{
        padding:16px;
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .bs_heading{
        font-size:22px;
        line-height:1.1;
    }

    .bs_user{
        font-size:12px;
        margin-top:4px;
    }

    .bs_wallet{
        text-align:left;
    }

    .bs_wallet_amount{
        font-size:24px;
    }

    /* TABLE */

    .bs_table_head{
        display:none;
    }

    .bs_entry{
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:flex-start;
        gap:10px;
        padding:14px 12px;
    }

    .bs_date_col{
        width:82px;
        flex-shrink:0;
    }

    .bs_local_time{
        font-size:11px;
        line-height:1.3;
        margin-bottom:2px;
    }

    .bs_timezone{
        display:none;
    }

    .bs_type{
        display:none;
    }

    /* DETAILS */

    .bs_details{
        flex:1;
        min-width:120px;
    }

    .bs_action{
        white-space:normal;
        overflow:visible;
        text-overflow:unset;
        line-height:1.3;
        font-size:14px;
    }

    .bs_reason{
        font-size:11px;
        line-height:1.4;
        color:#94a3b8;
        white-space:normal;
        overflow:visible;
        text-overflow:unset;
        word-break:break-word;
    }

    /* AMOUNT */

    .bs_plus,
    .bs_minus{
        font-size:15px;
        font-weight:700;
        flex-shrink:0;
        width:90px;
        text-align:right;
    }

    /* BALANCE */

   .bs_balance_col{
    display:block;
    min-width:68px;
    flex-shrink:0;
    text-align:right;
    font-size:11px;
    color:#94a3b8;
    line-height:1.3;
}

    /* RESET */

    .bs_reset_form{
        padding:14px;
    }

    .bs_reset_btn{
        width:100%;
        height:48px;
        border:none;
        border-radius:12px;
        background:linear-gradient(135deg,#dc2626,#b91c1c);
        color:#fff;
        font-size:15px;
        font-weight:700;
        cursor:pointer;
    }

    /* SUCCESS */

    .bs_success{
        margin:14px;
        background:#14532d;
        border:1px solid #166534;
        color:#dcfce7;
        padding:14px 16px;
        border-radius:12px;
        font-size:14px;
        font-weight:600;
    }

}