body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    max-width: 480px;
    padding-bottom: env(safe-area-inset-bottom);
}
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 60px;
}
.profile-header {
    display: flex;
    align-items: center;
    padding: 20px 10px;
}
.profile-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px; 
    object-fit: cover;
    line-height: 60px;
    font-size: 12px;
    
}
.profile-info {
    flex: 1;
}
.profile-info .username {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.profile-info .user-id {
    font-size: 14px;
    color: #8e8e93;
    display: flex;
    align-items: center;
}
.profile-info .user-id span {
    margin-left: 5px;
    font-size: 12px;
    color: #fd0252;
    cursor: pointer;
}
.login-button {
    font-size: 16px;
    color: #fd0252;
    cursor: pointer;
}
.watch-history-title {
    padding: 20px 10px 10px 10px;
    font-size: 20px;
    font-weight: bold;
}
.watch-history {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
}
.history-item {
    aspect-ratio: 2/3;
    position: relative;
}
.history-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.history-item .status {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: rgba(0,0,0,0.7);
    padding: 4px;
    border-radius: 0 0 10px 10px;
}
.menu-list {
    margin: 20px 10px;
    background-color: #1c1c1e;
    border-radius: 10px;
    margin-bottom:60px;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #2c2c2e;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-right: 15px;
}
.menu-item .menu-text {
    flex: 1;
    font-size: 16px;
    color: #fff;
}
.menu-item .version {
    color: #8e8e93;
    font-size: 14px;
    margin-right: 10px;
}
.menu-item .menu-arrow {
    width: 16px;
    height: 16px;
    fill: #8e8e93;
}
.my-wallet{
    width:95%;
    margin:0 auto;
    height:140px;
    background-color:#1C1C1E;
    border-radius:10px;
    display:block;
    position:relative;
    /* padding:16px; */
    padding:10px 0;
}
.wallet-title{
    padding:10px 16px;
    font-size:1.3rem;
}
.wallet-button{
    line-height: 30px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    border-radius: 30px;
    width: 80px;
    height: 30px;
    background: rgb(253,2,82);
    display: block;
    text-align: center;
}

#wallet_pay_mask{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 9998;
    display: none;
}
#wallet_pay_container{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -10%);
    /* width: 300px;
    max-width: 300px; */
    background-color: #fff;
    z-index: 9999;
    color: #333;
    text-align: center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.wallet_pay_close{
    position:absolute;
    width:30px;
    height:30px;
    top:40px;
    right:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    /* background-color: #fd0252; */
    border-radius: 50%;
}
#add-history{
    background-color: #1C1C1E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wallet-icon{
    position: absolute;
    right:16px;
    top:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:8px;
    gap:10px;
}
.goMyWallet{
    position: absolute;
    right: 10px;
    top: 10px;
    height:20px;
    display:flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size:12px;
    color:#adabab;
    
}
#coin-expensivest-option:after{
    display:none !important;
}