.t10t-profile-lite-wrap{
    max-width:1100px;
    margin:30px auto;
    padding:20px;
    color:#fff;
}

.t10t-profile-notice{
    background:#155724;
    color:#fff;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:20px;
}

.t10t-profile-header{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#161616;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
    margin-bottom:24px;
}

.t10t-profile-avatar{
    width:120px;
    height:120px;
    border-radius:999px;
    object-fit:cover;
    display:block;
}

.t10t-profile-main{
    flex:1;
    min-width:0;
}

.t10t-profile-name{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.2;
}

.t10t-profile-bio{
    color:#d0d0d0;
    line-height:1.8;
    margin-bottom:16px;
}

.t10t-profile-stats{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:16px;
}

.t10t-stat-box{
    background:#222;
    border-radius:12px;
    padding:12px 16px;
    min-width:110px;
    text-align:center;
}

.t10t-stat-box strong{
    display:block;
    font-size:20px;
    margin-bottom:4px;
}

.t10t-stat-box span{
    color:#bbb;
    font-size:13px;
}

.t10t-login-follow-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.t10t-profile-edit-card{
    background:#161616;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
    margin-bottom:24px;
}

.t10t-profile-edit-card h3,
.t10t-section-title{
    margin:0 0 16px;
    font-size:22px;
}

.t10t-profile-edit-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.t10t-form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
}

.t10t-form-group input,
.t10t-form-group textarea{
    width:100%;
    box-sizing:border-box;
    padding:12px;
    border-radius:10px;
    border:1px solid #444;
    background:#111;
    color:#fff;
}

.t10t-save-profile-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 16px;
    border:none;
    border-radius:12px;
    background:#28a745;
    color:#fff;
    font-weight:800;
    cursor:pointer;
}

.t10t-profile-videos-section{
    background:#161616;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
}

.t10t-profile-video-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:18px;
}

.t10t-profile-video-card{
    background:#222;
    border-radius:14px;
    padding:12px;
}

.t10t-profile-video-thumb{
    aspect-ratio:16 / 9;
    border-radius:12px;
    overflow:hidden;
    background:#0f0f0f;
}

.t10t-profile-video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.t10t-profile-no-thumb{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
}

.t10t-profile-video-title{
    margin:10px 0 0;
    font-size:16px;
    line-height:1.5;
}

.t10t-profile-video-title a{
    color:#fff;
    text-decoration:none;
}

.t10t-profile-video-title a:hover{
    color:#7dd3fc;
}

.t10t-profile-empty{
    color:#bbb;
}

@media (max-width: 900px){
    .t10t-profile-video-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 700px){
    .t10t-profile-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .t10t-profile-stats{
        justify-content:center;
    }
}

@media (max-width: 520px){
    .t10t-profile-video-grid{
        grid-template-columns:1fr;
    }

    .t10t-profile-name{
        font-size:24px;
    }
}