:root {
    --vbb-bg-card: #090b10;
    --vbb-bg-card-2: #0d1016;
    --vbb-bg-card-3: #121620;
    --vbb-bg-pill: #151923;
    --vbb-border: rgba(255,255,255,0.075);
    --vbb-border-2: rgba(255,255,255,0.12);
    --vbb-border-accent: rgba(31,205,118,0.28);
    --vbb-text-main: #f1f3f8;
    --vbb-text-soft: #b8bfcc;
    --vbb-text-muted: #7d8697;
    --vbb-text-dark: #5f6879;
    --vbb-accent: #1fcd76;
    --vbb-accent-soft: rgba(31,205,118,0.11);
    --vbb-danger: #ed4245;
    --vbb-warning: #f0b232;
    --vbb-purple: #7a55ff;
    --vbb-radius-sm: 10px;
    --vbb-radius-md: 14px;
    --vbb-radius-pill: 999px;
}

.vbb-thread-main-content,
.vbb-thread-main-content * {
    box-sizing: border-box;
    min-width: 0;
}

.vbb-thread-main-content {
    width: 100%;
    max-width: 100%;
    padding: 18px 0 42px;
    color: var(--vbb-text-main);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 550;
    overflow-x: hidden;
}

.vbb-thread-main-content a {
    color: inherit;
    text-decoration: none;
}

.vbb-thread-main-content button,
.vbb-thread-main-content textarea {
    font-family: inherit;
}

.vbb-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--vbb-text-muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.vbb-breadcrumb i {
    color: var(--vbb-text-dark);
    font-size: 10px;
}

.vbb-thread-titlebar {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.vbb-thread-title {
    margin: 0;
    color: var(--vbb-text-main);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.vbb-thread-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.vbb-btn {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-sm);
    background: var(--vbb-bg-card);
    color: var(--vbb-text-soft);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
}

.vbb-btn.is-active {
    background: var(--vbb-accent-soft);
    border-color: var(--vbb-border-accent);
    color: var(--vbb-accent);
}

.vbb-btn-round {
    width: 32px;
    padding: 0;
}

.vbb-btn-primary {
    background: var(--vbb-accent-soft);
    border-color: var(--vbb-border-accent);
    color: var(--vbb-accent);
}

.vbb-reply-action {
    background: var(--vbb-bg-card-2) !important;
    border-color: var(--vbb-border) !important;
    color: var(--vbb-text-soft) !important;
}

.vbb-reply-action i {
    color: var(--vbb-accent) !important;
}

.vbb-reply-action.is-active {
    background: var(--vbb-accent-soft) !important;
    border-color: var(--vbb-border-accent) !important;
    color: var(--vbb-accent) !important;
}

.vbb-post-stack {
    display: grid;
    gap: 12px;
}

.vbb-post {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 278px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.vbb-post-left {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    padding: 10px;
}

.vbb-post-right {
    min-width: 0;
    display: grid;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-user-card {
    min-height: 122px;
    display: grid;
    grid-template-columns: 58px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 13px;
    background: linear-gradient(90deg, rgba(31,205,118,0.06), transparent), var(--vbb-bg-card);
    /* border: 1px solid var(--vbb-border); */
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a102b, var(--vbb-purple));
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--vbb-text-main);
    font-size: 22px;
    font-weight: 900;
}

.vbb-user-name-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.vbb-user-name {
    color: var(--vbb-text-main);
    font-size: 14px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.vbb-service-pill {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    border-radius: var(--vbb-radius-pill);
    background: rgba(255,255,255,0.9);
    color: #10131a;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.vbb-user-role {
    margin-top: 4px;
    color: var(--vbb-text-muted);
    font-size: 12px;
    font-weight: 800;
}

.vbb-user-mini-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    grid-column: 4;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, 54px);
    gap: 6px;
    justify-content: end;
    align-self: center;
}

.vbb-user-mini-stat {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--vbb-border);
    border-radius: 8px;
    background: var(--vbb-bg-card-2);
    color: var(--vbb-text-main);
    font-size: 11px;
    font-weight: 900;
}

.vbb-user-mini-stat i {
    color: var(--vbb-text-soft);
}

.vbb-userbar {
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 7px;
    /* background: var(--vbb-bg-card); */
    /* border: 1px solid var(--vbb-border); */
    /* border-radius: var(--vbb-radius-md); */
    overflow: hidden;
}

.vbb-userbar img {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    max-height: 34px;
    object-fit: contain;
}

.vbb-userbar-fallback {
    width: 100%;
    max-width: 240px;
    min-height: 32px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(31,205,118,0.18), rgba(31,205,118,0.04));
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vbb-userbar-fallback.admin {
    background: linear-gradient(90deg, rgba(240,178,50,0.22), rgba(240,178,50,0.045));
    border-color: rgba(240,178,50,0.28);
    color: var(--vbb-warning);
}

.vbb-userbar-fallback.member {
    background: linear-gradient(90deg, rgba(122,85,255,0.22), rgba(122,85,255,0.045));
    border-color: rgba(122,85,255,0.28);
    color: #b7a4ff;
}

.vbb-stat-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    /* background: var(--vbb-bg-card); */
    /* border: 1px solid var(--vbb-border); */
    border-radius: var(--vbb-radius-md);
}

.vbb-stat-box {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border-2);
    border-radius: 10px;
    color: var(--vbb-text-main);
    font-size: 12px;
    font-weight: 900;
}

.vbb-stat-box span {
    overflow-wrap: anywhere;
}

.vbb-stat-box i {
    color: var(--vbb-accent);
    font-size: 16px;
}

.vbb-award-wall {
    min-height: 116px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 10px;
    background: radial-gradient(circle at center, rgba(240,178,50,0.09), transparent 70%), var(--vbb-bg-card);
    /* border: 1px solid var(--vbb-border); */
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-award-wall-empty {
    place-items: center;
    grid-template-columns: 1fr;
    color: var(--vbb-text-muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 750;
    text-align: center;
}

.vbb-award-mini {
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--vbb-warning);
    font-size: 15px;
    opacity: 0.95;
}

.vbb-post-content {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto minmax(80px, 1fr) auto;
    padding: 14px 13px 11px;
}

.vbb-post-head {
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.vbb-post-time {
    color: var(--vbb-text-muted);
    font-size: 11px;
    font-weight: 850;
}

.vbb-post-tags {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.vbb-author-tag {
    min-height: 23px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    border-radius: var(--vbb-radius-pill);
    background: var(--vbb-accent-soft);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 10px;
    font-weight: 900;
}

.vbb-post-number {
    color: var(--vbb-text-muted);
    font-size: 11px;
    font-weight: 900;
}

.vbb-post-body {
    color: var(--vbb-text-soft);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.vbb-post-footer {
    align-self: end;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--vbb-border);
}

.vbb-post-mod {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.vbb-check {
    width: 14px;
    height: 14px;
    accent-color: var(--vbb-accent);
}

.vbb-liked-bar {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-sm);
    color: var(--vbb-text-muted);
    font-size: 11px;
    font-weight: 750;
}

.vbb-editor {
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-editor-toolbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    padding: 7px 10px;
    border-bottom: 1px solid var(--vbb-border);
}

.vbb-editor-btn {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--vbb-text-muted);
    font-size: 14px;
    cursor: pointer;
}

.vbb-editor-spacer {
    flex: 1 1 auto;
}

.vbb-editor-area textarea {
    width: 100%;
    min-height: 130px;
    display: block;
    padding: 13px;
    border: 0;
    outline: 0;
    resize: vertical;
    background: transparent;
    color: var(--vbb-text-main);
    font-size: 13px;
    font-weight: 750;
}

.vbb-editor-area textarea::placeholder {
    color: var(--vbb-text-dark);
}

.vbb-editor-footer {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-top: 1px solid var(--vbb-border);
}

.vbb-send-btn {
    width: 44px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: var(--vbb-danger);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .vbb-post {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .vbb-award-wall {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 820px) {
    .vbb-thread-titlebar {
        grid-template-columns: 1fr;
    }

    .vbb-thread-actions {
        justify-content: flex-start;
    }

    .vbb-post {
        grid-template-columns: 1fr;
    }

    .vbb-post-left {
        grid-template-columns: 1fr;
    }

    .vbb-stat-boxes,
    .vbb-award-wall {
        display: none;
    }
}

@media (max-width: 620px) {
    .vbb-thread-main-content {
        padding-top: 12px;
        font-size: 13px;
    }

    .vbb-thread-title {
        font-size: 20px;
    }

    .vbb-post-left {
        gap: 8px;
    }

    .vbb-user-card {
        min-height: 102px;
        grid-template-columns: 58px minmax(0,1fr) 76px;
        align-items: center;
        gap: 10px;
        padding: 11px;
    }

    .vbb-avatar {
        width: 58px;
        height: 58px;
        font-size: 22px;
        grid-column: 1;
        grid-row: 1;
    }

    .vbb-user-card > div:not(.vbb-avatar):not(.vbb-user-mini-stats) {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .vbb-user-mini-stats {
        grid-column: 3;
        grid-row: 1;
        display: grid;
        grid-template-columns: repeat(2, 34px);
        gap: 6px;
        justify-content: end;
        align-self: center;
    }

    .vbb-user-mini-stat {
        width: 50px;
        height: 36px;
        min-height: 34px;
        padding: 0;
        border-radius: 11px;
        font-size: 12px;
    }

    .vbb-user-mini-stat i {
        /* display: none; */
    }

    .vbb-service-pill {
        max-width: 100%;
        min-height: 24px;
        padding: 0 10px;
        font-size: 11px;
    }

    .vbb-user-name {
        font-size: 15px;
    }

    .vbb-user-role {
        font-size: 12px;
    }

    .vbb-userbar {
        min-height: 38px;
        padding: 6px;
        border-radius: 12px;
        display: none;
    }

    .vbb-userbar img {
        max-width: 210px;
        max-height: 30px;
    }

    .vbb-userbar-fallback {
        max-width: 210px;
        min-height: 30px;
        font-size: 11px;
    }

    .vbb-post-content {
        min-height: auto;
        grid-template-rows: auto auto auto;
        padding: 12px;
    }

    .vbb-post-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 12px;
    }

    .vbb-post-body {
        min-height: 60px;
    }

    .vbb-post-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .vbb-post-mod,
    .vbb-thread-actions {
        width: 100%;
    }

    .vbb-post-mod .vbb-btn,
    .vbb-thread-actions .vbb-btn {
        flex: 1 1 auto;
    }

    .vbb-editor-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .vbb-editor-footer .vbb-btn,
    .vbb-send-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .vbb-user-card {
        grid-template-columns: 52px minmax(0,1fr) 70px;
        gap: 8px;
    }

    .vbb-avatar {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .vbb-user-mini-stats {
        grid-template-columns: repeat(2, 31px);
        gap: 6px;
    }

    .vbb-user-mini-stat {
        width: 31px;
        height: 31px;
        min-height: 31px;
        font-size: 11px;
        border-radius: 10px;
    }

    .vbb-service-pill {
        font-size: 10px;
        padding: 0 8px;
    }

    .vbb-user-name {
        font-size: 14px;
    }
}



.vbb-avatar img {
    width: 58px;
    height: 58px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.vbb-mobile-userbar {
    display: none;
}

@media (max-width: 620px) {
    .vbb-user-card {
        min-height: 82px;
        grid-template-columns: 58px minmax(0, 1fr) minmax(90px, 130px) 136px;
        gap: 8px;
        align-items: center;
    }

    .vbb-avatar {
        grid-column: 1;
        grid-row: 1;
    }

    .vbb-user-info-mobile {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    .vbb-mobile-userbar {
        grid-column: 3;
        grid-row: 1;
        width: 100%;
        min-height: 28px;
        display: grid;
        place-items: center;
        padding: 4px 6px;
        /* background: var(--vbb-bg-card-2); */
        /* border: 1px solid var(--vbb-border); */
        border-radius: 8px;
        overflow: hidden;
    }

    .vbb-mobile-userbar img {
        width: 100%;
        max-width: 118px;
        height: auto;
        max-height: 40px;
        display: block;
        object-fit: contain;
    }

    .vbb-user-mini-stats {
        grid-column: 4;
        grid-row: 1;
        display: grid;
        grid-template-columns: repeat(2, 54px);
        gap: 6px;
        justify-content: end;
        align-self: center;
    }
}

@media (max-width: 420px) {
    .vbb-user-card {
        grid-template-columns: 52px minmax(0, 1fr) minmax(76px, 102px) 70px;
        gap: 7px;
    }

    .vbb-avatar,
    .vbb-avatar img {
        width: 52px;
        height: 52px;
    }

    .vbb-mobile-userbar {
        min-height: 24px;
        padding: 3px 5px;
    }

    .vbb-mobile-userbar img {
        max-width: 92px;
        max-height: 17px;
    }

    .vbb-user-mini-stats {
        grid-template-columns: repeat(2, 31px);
        gap: 6px;
    }
}


@media (min-width: 900px) {
      .vbb-user-mini-stats { display:none ;}}



.vbb-profile-line-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px;
    background: transparent;
    border: 0;
    border-radius: var(--vbb-radius-md);
}

.vbb-profile-line-stat {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 11px;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    border-radius: 9px;
    color: var(--vbb-text-main);
    font-size: 12px;
    font-weight: 900;
}

.vbb-profile-line-stat-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--vbb-text-soft);
}

.vbb-profile-line-stat-left i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    background: var(--vbb-accent-soft);
    color: var(--vbb-accent);
    font-size: 12px;
}

.vbb-profile-line-stat-left span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vbb-profile-line-stat strong {
    color: var(--vbb-text-main);
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .vbb-profile-line-stats {
        display: none;
    }
}


@media (min-width: 821px) {
    .vbb-user-card {
        display: none !important;
    }

    .vbb-user-card-pc {
        display: grid !important;
    }
}

@media (max-width: 820px) {
    .vbb-user-card-pc {
        display: none !important;
    }

    .vbb-user-mini-stat:nth-child(1) i {
        color: var(--vbb-accent) !important;
    }

    .vbb-user-mini-stat:nth-child(2) i {
        color: #9aa7ff !important;
    }

    .vbb-user-mini-stat:nth-child(3) i {
        color: var(--vbb-warning) !important;
    }

    .vbb-user-mini-stat:nth-child(4) i {
        color: var(--vbb-danger) !important;
    }
}

.vbb-user-card-pc {
    display: none;
    width: 100%;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    padding: 18px 14px 14px;
    background:
        linear-gradient(180deg, rgba(9,11,16,0.58), rgba(9,11,16,0.96)),
        var(--vbb-user-cover);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
}

.vbb-user-card-pc::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(31,205,118,0.20), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.035), transparent 45%);
    pointer-events: none;
}

.vbb-user-status-dot {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--vbb-text-dark);
    border: 2px solid rgba(9,11,16,0.95);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
}

.vbb-user-card-pc.is-online .vbb-user-status-dot {
    background: var(--vbb-accent);
    box-shadow:
        0 0 0 1px rgba(31,205,118,0.35),
        0 0 14px rgba(31,205,118,0.65);
}

.vbb-user-card-pc.is-online .vbb-user-status-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(31,205,118,0.45);
    animation: vbbOnlinePulse 1.4s ease-out infinite;
}

.vbb-user-card-pc.is-offline .vbb-user-status-dot {
    background: #5f6879;
}

@keyframes vbbOnlinePulse {
    0% {
        opacity: 0.8;
        transform: scale(0.55);
    }

    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

.vbb-user-card-pc-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.vbb-pc-user-name {
    max-width: 100%;
    color: var(--vbb-text-main);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.vbb-pc-user-name a {
    color: inherit;
    text-decoration: none;
}

.vbb-pc-user-role {
    margin-top: 5px;
    color: var(--vbb-text-muted);
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
}

.vbb-pc-avatar {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--vbb-bg-card-2);
    border: 2px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.vbb-pc-avatar a,
.vbb-pc-avatar img {
    width: 100%;
    height: 100%;
    display: block;
}

.vbb-pc-avatar img {
    object-fit: cover;
    border-radius: 22px;
}

.vbb-pc-userbar {
    width: 100%;
    max-width: 180px;
    min-height: 32px;
    display: grid;
    place-items: center;
    margin-top: 13px;
    overflow: hidden;
}

.vbb-pc-userbar img {
    width: 100%;
    max-width: 170px;
    max-height: 32px;
    display: block;
    object-fit: contain;
}

.vbb-trust-pill {
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    align-items: center;
    position: relative;
    margin-top: 14px;
    padding: 0 10px;
    background: rgba(13,16,22,0.86);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-pill);
    overflow: hidden;
}

.vbb-trust-pill::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: var(--vbb-border);
    transform: translateX(-50%);
}

.vbb-trust-col {
    min-width: 0;
    display: grid;
    gap: 3px;
    justify-items: center;
    position: relative;
    z-index: 2;
    cursor: default;
}

.vbb-trust-name {
    color: var(--vbb-text-dark);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.vbb-trust-num {
    color: var(--vbb-text-main);
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
}

.vbb-trust-rep .vbb-trust-num {
    color: var(--vbb-accent);
}

.vbb-trust-center {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 3;
    margin: 0 auto;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border-2);
    border-radius: 50%;
    color: var(--vbb-text-muted);
    transition: 180ms ease;
}

.vbb-trust-center i {
    position: absolute;
    font-size: 14px;
    line-height: 1;
    transition: 180ms ease;
}

.vbb-trust-icon-hover {
    opacity: 0;
    transform: scale(0.65);
}

.vbb-trust-pill:has(.vbb-trust-rep:hover) .vbb-trust-icon-default,
.vbb-trust-pill:has(.vbb-trust-vouch:hover) .vbb-trust-icon-default {
    opacity: 0;
    transform: scale(0.65);
}

.vbb-trust-pill:has(.vbb-trust-rep:hover) .vbb-trust-icon-rep,
.vbb-trust-pill:has(.vbb-trust-vouch:hover) .vbb-trust-icon-vouch {
    opacity: 1;
    transform: scale(1);
}

.vbb-trust-pill:has(.vbb-trust-rep:hover) .vbb-trust-center {
    color: var(--vbb-accent);
    border-color: var(--vbb-border-accent);
    box-shadow: 0 0 14px rgba(31,205,118,0.14);
}

.vbb-trust-pill:has(.vbb-trust-vouch:hover) .vbb-trust-center {
    color: #9aa7ff;
    border-color: rgba(154,167,255,0.35);
    box-shadow: 0 0 14px rgba(154,167,255,0.14);
}

.vbb-trust-col:hover .vbb-trust-name {
    color: var(--vbb-text-muted);
}
     
.vbb-post-signature {
    margin-top: 18px;
    padding-top: 2px;
}

.vbb-signature-divider {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vbb-signature-divider::before,
.vbb-signature-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--vbb-border-2),
        transparent
    );
}

.vbb-signature-divider span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    border-radius: var(--vbb-radius-pill);
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    color: var(--vbb-text-muted);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.vbb-signature-divider span i {
    color: var(--vbb-accent);
    font-size: 11px;
}

.vbb-signature-content {
    padding: 11px 12px;
    background: rgba(13,16,22,0.55);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-sm);
    color: var(--vbb-text-soft);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.vbb-signature-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


.vbb-post-mod {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.vbb-post-mod a,
.vbb-post-mod a:link,
.vbb-post-mod a:visited,
.vbb-post-mod .vbb-btn {
    min-height: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 11px !important;
    background: var(--vbb-bg-card-2) !important;
    border: 1px solid var(--vbb-border) !important;
    border-radius: 9px !important;
    color: var(--vbb-text-muted) !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background-image: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    cursor: pointer;
    transition: 180ms ease;
}

.vbb-post-mod a span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    color: inherit !important;
    text-indent: 0 !important;
    font-size: inherit !important;
    line-height: 1 !important;
    font-weight: inherit !important;
}

.vbb-post-mod a::before {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 6px;
    background: rgba(255,255,255,0.045);
    color: var(--vbb-text-soft);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
}

.vbb-post-mod .postbit_edit::before {
    content: "✎";
    color: var(--vbb-accent);
    background: var(--vbb-accent-soft);
}

.vbb-post-mod .postbit_quote::before {
    content: "↩";
    color: #9aa7ff;
    background: rgba(154,167,255,0.11);
}

.vbb-post-mod .postbit_report::before {
    content: "!";
    color: var(--vbb-danger);
    background: rgba(237,66,69,0.12);
}

.vbb-post-mod .postbit_warn::before {
    content: "⚠";
    color: var(--vbb-warning);
    background: rgba(240,178,50,0.12);
}

.vbb-post-mod .vbb-btn i {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(154,167,255,0.11);
    color: #9aa7ff;
    font-size: 10px;
}

.vbb-post-mod a:hover,
.vbb-post-mod .vbb-btn:hover {
    color: var(--vbb-text-main) !important;
    background: var(--vbb-bg-card-3) !important;
    border-color: var(--vbb-border-2) !important;
    transform: translateY(-1px);
}

.vbb-post-mod .postbit_edit:hover {
    border-color: var(--vbb-border-accent) !important;
}

.vbb-post-mod .postbit_quote:hover {
    border-color: rgba(154,167,255,0.35) !important;
}

.vbb-post-mod .postbit_report:hover {
    border-color: rgba(237,66,69,0.35) !important;
}

.vbb-post-mod .postbit_warn:hover {
    border-color: rgba(240,178,50,0.35) !important;
}

.vbb-post-mod .popup_menu {
    min-width: 138px !important;
    padding: 7px !important;
    background: var(--vbb-bg-card) !important;
    border: 1px solid var(--vbb-border) !important;
    border-radius: 11px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.36) !important;
    overflow: hidden !important;
    z-index: 9999 !important;
}

.vbb-post-mod .popup_item_container {
    padding: 0 !important;
    margin: 0 0 5px !important;
    background: transparent !important;
    border: 0 !important;
}

.vbb-post-mod .popup_item_container:last-child {
    margin-bottom: 0 !important;
}

.vbb-post-mod .popup_item {
    width: 100% !important;
    min-height: 30px !important;
    height: 30px !important;
    justify-content: flex-start !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--vbb-text-muted) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
}

.vbb-post-mod .popup_item::before {
    display: none !important;
}

.vbb-post-mod .popup_item:hover {
    color: var(--vbb-accent) !important;
    background: var(--vbb-accent-soft) !important;
    transform: none !important;
}

@media (max-width: 620px) {
    .vbb-post-mod {
        width: 100%;
        justify-content: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .vbb-post-mod a,
    .vbb-post-mod .vbb-btn {
        width: 100% !important;
    }
}



.vbb-like-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vbb-like-box[data-vbb-like-box] {
    display: inline-flex;
    align-items: center;
}

.vbb-like-btn,
.vbb-like-btn:link,
.vbb-like-btn:visited {
    min-height: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    padding: 0 11px;
    overflow: visible;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    border-radius: 10px;
    color: var(--vbb-text-muted);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vbb-like-btn i {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    background: rgba(237,66,69,0.12);
    color: var(--vbb-danger);
    font-size: 11px;
    line-height: 1;
    transition: 180ms ease;
}

.vbb-like-text:empty {
    display: none;
}

.vbb-like-text {
    color: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.vbb-like-count {
    min-width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    border-radius: var(--vbb-radius-pill);
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    color: var(--vbb-text-soft);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    transition: 180ms ease;
}

.vbb-like-btn:hover {
    color: var(--vbb-text-main);
    background: var(--vbb-bg-card-3);
    border-color: rgba(237,66,69,0.30);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

.vbb-like-btn:hover i {
    background: rgba(237,66,69,0.18);
    color: #ff8d91;
}

.vbb-like-btn:hover .vbb-like-count {
    border-color: rgba(237,66,69,0.25);
    color: #ff8d91;
}

.vbb-like-btn.is-active,
.vbb-like-btn[data-liked="1"] {
    background: rgba(237,66,69,0.12);
    border-color: rgba(237,66,69,0.32);
    color: #ff8d91;
    box-shadow: 0 0 18px rgba(237,66,69,0.10);
}

.vbb-like-btn.is-active i,
.vbb-like-btn[data-liked="1"] i {
    background: var(--vbb-danger);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(237,66,69,0.32);
}

.vbb-like-btn.is-active .vbb-like-count,
.vbb-like-btn[data-liked="1"] .vbb-like-count {
    background: rgba(237,66,69,0.15);
    border-color: rgba(237,66,69,0.32);
    color: #ffb3b6;
}

.vbb-like-btn.is-vbb-like-busy {
    opacity: 0.72;
    pointer-events: none;
}

.vbb-like-btn.is-vbb-like-pop i {
    animation: vbbLikeMiniPop 420ms cubic-bezier(.2, 1.6, .35, 1) both;
}

.vbb-like-float-heart {
    color: var(--vbb-danger) !important;
    text-shadow: 0 12px 30px rgba(237,66,69,0.42) !important;
}

.vbb-like-particle {
    background: var(--vbb-danger) !important;
}

@keyframes vbbLikeMiniPop {
    0% {
        transform: scale(1);
    }

    38% {
        transform: scale(1.35);
    }

    72% {
        transform: scale(0.92);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 620px) {
    .vbb-like-btn {
        min-height: 31px;
        height: 31px;
        padding: 0 10px;
        border-radius: 9px;
    }

    .vbb-like-btn i {
        width: 17px;
        height: 17px;
        font-size: 10px;
    }

    .vbb-like-count {
        height: 17px;
        min-width: 17px;
    }
}
