.tw-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.tw-header-left h1{
    font-size:36px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.tw-header-left p{
    font-size:16px;
    color:#6b7280;
    line-height:1.7;
}

.tw-badge{
    display:inline-flex;
    align-items:center;
    background:#F3F4F6;
    color:#111827;
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    margin-bottom:18px;
}

.tw-header-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.tw-circle-btn{
    color:#111;
    font-size:18px;
    width:42px;
    height:42px;
    border:none;
    background:#fff;
    border-radius:50%;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    cursor:pointer;
    transition:.25s;
}

.tw-circle-btn:hover{
    transform:translateY(-2px);
}

.tw-profile{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:18px;
    padding:8px 16px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.tw-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.tw-profile strong{
    display:block;
    font-size:14px;
}

.tw-profile small{
    color:#6b7280;
    font-size:12px;
}