:root {
    --vbb-bg-card: #0b0e13;
    --vbb-bg-card-2: #0f1218;
    --vbb-bg-pill: #141821;
    --vbb-border: rgba(255,255,255,0.07);
    --vbb-border-2: rgba(255,255,255,0.095);
    --vbb-border-accent: rgba(31,205,118,0.28);
    --vbb-text-main: #f1f3f8;
    --vbb-text-muted: #7d8697;
    --vbb-text-dark: #5f6879;
    --vbb-accent: #1fcd76;
    --vbb-accent-soft: rgba(31,205,118,0.11);
    --vbb-prime: #f0c75e;
    --vbb-danger: #d9435f;
    --vbb-radius-md: 16px;
    --vbb-radius-pill: 999px;
}

.vbb-home-body,
.vbb-home-body * {
    box-sizing: border-box;
}

.vbb-home-body {
    width: 100%;
    max-width: 100%;
    padding: 16px 0 36px;
    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-home-body a {
    color: inherit;
    text-decoration: none;
}

.vbb-home-alert {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, rgba(31,205,118,0.10), rgba(31,205,118,0.035));
    border: 1px solid rgba(31,205,118,0.16);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-home-alert-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.vbb-home-alert-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--vbb-accent-soft);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 18px;
}

.vbb-home-alert-text {
    min-width: 0;
    color: var(--vbb-text-main);
    font-size: 14px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.vbb-home-alert-text strong {
    color: var(--vbb-accent);
    font-weight: 850;
}

.vbb-home-alert-close {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--vbb-accent);
    font-size: 17px;
}

.vbb-home-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.46fr);
    gap: 18px;
    align-items: start;
}

.vbb-home-left,
.vbb-home-right,
.vbb-home-section,
.vbb-forum-list,
.vbb-feed-list,
.vbb-widget,
.vbb-widget-body {
    min-width: 0;
    max-width: 100%;
}

.vbb-home-section {
    margin-bottom: 20px;
}

.vbb-home-section-head {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    min-width: 0;
}

.vbb-home-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--vbb-text-main);
    font-size: 16px;
    font-weight: 850;
    min-width: 0;
}

.vbb-home-section-title > i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 15px;
}

.vbb-live-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--vbb-accent);
    box-shadow: 0 0 12px rgba(31,205,118,0.9);
}

.vbb-new-posts-btn {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: var(--vbb-radius-pill);
    background: #1a1d25;
    border: 1px solid var(--vbb-border);
    color: var(--vbb-text-main);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.vbb-forum-list {
    display: grid;
    gap: 10px;
}

.vbb-forum-row {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 118px;
    align-items: center;
    gap: 12px;
    min-height: 112px;
    padding: 13px;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-forum-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: var(--vbb-accent-soft);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 22px;
}

.vbb-forum-main {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.vbb-forum-title-row {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 6px;
    min-width: 0;
}

.vbb-forum-title {
    min-width: 0;
    color: var(--vbb-text-main);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.vbb-forum-badge {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 11px;
    border-radius: var(--vbb-radius-pill);
    background: var(--vbb-accent-soft);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.vbb-forum-desc {
    max-width: 100%;
    color: var(--vbb-text-muted);
    font-size: 13px;
    line-height: 1.48;
    font-weight: 650;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vbb-forum-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
    max-width: 100%;
    overflow: hidden;
}

.vbb-forum-tag {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border-radius: var(--vbb-radius-pill);
    background: var(--vbb-bg-pill);
    border: 1px solid var(--vbb-border);
    color: var(--vbb-text-muted);
    font-size: 12px;
    font-weight: 750;
    max-width: 100%;
}

.vbb-forum-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--vbb-accent);
}

.vbb-forum-stats {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.vbb-forum-stat {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 0 11px;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    border-radius: 13px;
    min-width: 0;
}

.vbb-forum-stat i {
    color: var(--vbb-accent);
    font-size: 15px;
}

.vbb-forum-stat strong {
    color: var(--vbb-text-main);
    font-size: 15px;
    font-weight: 850;
}

.vbb-feed-list {
    display: grid;
    gap: 10px;
}

.vbb-feed-row {
    width: 100%;
    max-width: 100%;
    min-height: 92px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 30px;
    gap: 12px;
    align-items: center;
    padding: 13px;
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-feed-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: linear-gradient(135deg, #372f8f, #7a55ff);
    color: #fff;
    font-size: 24px;
}

.vbb-feed-icon.round {
    border-radius: 50%;
}

.vbb-feed-body {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.vbb-feed-title {
    color: var(--vbb-text-main);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}

.vbb-feed-label {
    min-height: 21px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 6px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 11px;
    line-height: 21px;
    font-weight: 900;
    vertical-align: 1px;
    white-space: nowrap;
}

.vbb-feed-label.prime {
    color: var(--vbb-prime);
    background: rgba(240,199,94,0.09);
    border-left: 3px solid var(--vbb-prime);
}

.vbb-feed-label.selling {
    color: var(--vbb-accent);
    background: rgba(31,205,118,0.09);
    border-left: 3px solid var(--vbb-accent);
}

.vbb-feed-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 7px;
    color: var(--vbb-text-dark);
    font-size: 12px;
    font-weight: 800;
}

.vbb-feed-replies {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--vbb-text-dark);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.vbb-home-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.vbb-widget {
    background: var(--vbb-bg-card);
    border: 1px solid var(--vbb-border);
    border-radius: var(--vbb-radius-md);
    overflow: hidden;
}

.vbb-widget-head {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border-bottom: 1px solid var(--vbb-border);
    color: var(--vbb-text-main);
    font-size: 14px;
    font-weight: 850;
}

.vbb-widget-head i {
    color: var(--vbb-accent);
}

.vbb-widget-body {
    padding: 12px;
}

.vbb-mini-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.vbb-mini-stat {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 0 11px;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    border-radius: 11px;
}

.vbb-mini-stat i {
    color: var(--vbb-accent);
}

.vbb-mini-stat strong {
    color: var(--vbb-text-main);
    font-size: 16px;
    font-weight: 900;
}

.vbb-mini-list {
    display: grid;
    gap: 8px;
}

.vbb-mini-row {
    min-height: 42px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 7px;
    background: var(--vbb-bg-card-2);
    border: 1px solid var(--vbb-border);
    border-radius: 10px;
}

.vbb-mini-avatar,
.vbb-mini-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--vbb-accent-soft);
    border: 1px solid var(--vbb-border-accent);
    color: var(--vbb-accent);
    font-size: 12px;
    font-weight: 900;
}

.vbb-mini-icon {
    border-radius: 10px;
    font-size: 14px;
}

.vbb-mini-title {
    display: block;
    color: var(--vbb-text-main);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbb-mini-meta {
    display: block;
    margin-top: 2px;
    color: var(--vbb-text-muted);
    font-size: 11px;
}

.vbb-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vbb-accent);
    box-shadow: 0 0 10px rgba(31,205,118,0.85);
}

@media (max-width: 1250px) {
    .vbb-home-grid {
        grid-template-columns: 1fr;
    }

    .vbb-feed-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .vbb-forum-row {
        grid-template-columns: 50px minmax(0, 1fr);
        min-height: auto;
    }

    .vbb-forum-stats {
        display: none;
    }

    .vbb-home-widgets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .vbb-home-body {
        padding-top: 10px;
        overflow-x: hidden;
    }

    .vbb-home-alert {
        align-items: flex-start;
        padding: 11px;
    }

    .vbb-home-alert-text {
        font-size: 13px;
    }

    .vbb-home-grid,
    .vbb-feed-list,
    .vbb-home-widgets {
        grid-template-columns: 1fr;
    }

    .vbb-home-section-head {
        align-items: flex-start;
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .vbb-new-posts-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .vbb-forum-row {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        padding: 12px;
        border-radius: 14px;
    }

    .vbb-forum-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
        border-radius: 13px;
    }

    .vbb-forum-title-row {
        gap: 7px;
        margin-bottom: 5px;
    }

    .vbb-forum-title {
        font-size: 18px;
    }

    .vbb-forum-badge {
        min-height: 22px;
        padding: 0 8px;
        font-size: 11px;
    }

    .vbb-forum-desc {
        font-size: 12px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .vbb-forum-tags {
        gap: 5px;
        margin-top: 8px;
    }

    .vbb-forum-tag {
        min-height: 21px;
        padding: 0 8px;
        font-size: 11px;
    }

    .vbb-feed-row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
        min-height: auto;
    }

    .vbb-feed-icon {
        width: 40px;
        height: 40px;
        font-size: 21px;
        border-radius: 12px;
    }

    .vbb-feed-title {
        font-size: 13px;
    }

    .vbb-feed-replies {
        grid-column: 2;
    }

    .vbb-mini-stat-grid {
        grid-template-columns: 1fr;
    }
}