.vxbf-container { max-width: 100%; margin: 0 auto; padding: 0 16px; position: relative; }

/* ═══════════════════════════════
   1. READING PROGRESS BAR
═══════════════════════════════ */
.vxbf-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--vx-primary), #c084fc);
    z-index: 99999;
    transition: width .12s ease-out;
    box-shadow: 0 0 12px rgba(139, 92, 246, .5);
    pointer-events: none;
    opacity: 0;
}
.vxbf-progress-bar.active { opacity: 1; }

.vxbf-header { text-align: center; padding: 32px 0 24px; animation: vxbf-fade-up .7s ease-out both; }
.vxbf-title { font-size: 28px; font-weight: 700; color: var(--vx-text); margin-bottom: 6px; }
.vxbf-subtitle { font-size: 14px; color: var(--vx-text-3); }

@keyframes vxbf-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vxbf-filters { margin-bottom: 24px; animation: vxbf-fade-up .7s ease-out .15s both; }

.vxbf-search-wrap { position: relative; margin-bottom: 12px; }
.vxbf-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--vx-text-3); pointer-events: none; }
.vxbf-search {
    width: 100%;
    padding: 10px 12px 10px 36px;
    font-size: 14px;
    font-family: inherit;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: 8px;
    color: var(--vx-text);
    outline: none;
    transition: border .15s, box-shadow .15s;
}
.vxbf-search:focus {
    border-color: var(--vx-primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}

.vxbf-cats { display: flex; flex-wrap: wrap; gap: 6px; }

.vxbf-cat-btn {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--vx-border);
    border-radius: 99px;
    background: transparent;
    color: var(--vx-text-2);
    cursor: pointer;
    font-family: inherit;
    transition: all .2s ease;
}
.vxbf-cat-btn span { opacity: .5; margin-left: 2px; }
.vxbf-cat-btn:hover {
    background: var(--vx-bg-hover);
    transform: translateY(-1px);
}
.vxbf-cat-btn.active {
    background: var(--cat-c, var(--vx-primary));
    color: #fff;
    border-color: var(--cat-c, var(--vx-primary));
    box-shadow: 0 4px 12px rgba(139, 92, 246, .25);
}

/* ═══════════════════════════════
   2. CARD GRID con STAGGER ENTRY
═══════════════════════════════ */
.vxbf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vxbf-grid.vxbf-leaving .vxbf-card {
    animation: vxbf-card-exit .35s ease-in forwards;
}

.vxbf-card {
    background: var(--vx-bg-card);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    opacity: 0;
    animation: vxbf-card-enter .55s cubic-bezier(.2, .8, .25, 1) forwards;
}
.vxbf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08), 0 4px 12px rgba(139, 92, 246, .08);
}

@keyframes vxbf-card-enter {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes vxbf-card-exit {
    to {
        opacity: 0;
        transform: translateY(-12px) scale(.98);
        filter: blur(4px);
    }
}

.vxbf-card-big { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.vxbf-card-big .vxbf-card-img { min-height: 280px; }

.vxbf-card-img {
    position: relative;
    min-height: 180px;
    background: var(--vx-bg-input);
    overflow: hidden;
}
.vxbf-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    position: absolute; inset: 0;
    transition: transform .5s cubic-bezier(.2, .8, .25, 1), filter .3s;
}
.vxbf-card:hover .vxbf-card-img img {
    transform: scale(1.06);
}
.vxbf-card-noimg {
    background: linear-gradient(135deg, var(--vx-bg-input), var(--vx-bg-hover));
}

.vxbf-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }

.vxbf-card-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.vxbf-card-cat {
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--cc, var(--vx-primary));
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.vxbf-card-hype {
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    color: #fff;
    animation: vxbf-pulse-soft 2s ease-in-out infinite;
}
.vxbf-hype-breaking { background: #ff2d2d; }
.vxbf-hype-hot { background: #ff8c00; }
.vxbf-hype-warm { background: #f5c542; color: #333; animation: none; }
.vxbf-hype-cooling { background: #5bc0de; animation: none; }

@keyframes vxbf-pulse-soft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, .4); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 45, 45, 0); }
}

.vxbf-card-featured {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: var(--vx-warning);
}

.vxbf-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--vx-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.vxbf-card:hover .vxbf-card-title { color: var(--vx-primary); }

.vxbf-card-excerpt {
    font-size: 13px;
    color: var(--vx-text-2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vxbf-card-footer {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--vx-text-3);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--vx-border);
}

.vxbf-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 24px 0;
}
.vxbf-page {
    width: 36px;
    height: 36px;
    border: 1px solid var(--vx-border);
    border-radius: 6px;
    background: transparent;
    color: var(--vx-text-2);
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
}
.vxbf-page.active {
    background: var(--vx-primary);
    color: #fff;
    border-color: var(--vx-primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, .25);
}
.vxbf-page:hover:not(.active) { background: var(--vx-bg-hover); transform: translateY(-1px); }

.vxbf-loading { text-align: center; padding: 60px 20px; color: var(--vx-text-3); font-size: 14px; }
.vxbf-empty { text-align: center; padding: 60px 20px; color: var(--vx-text-3); }
.vxbf-empty p { margin-top: 12px; font-size: 14px; }

/* ═══════════════════════════════
   4. DETAIL VIEW — entry animation
═══════════════════════════════ */
.vxbf-detail-view {
    animation: vxbf-detail-enter .5s ease-out;
}

@keyframes vxbf-detail-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vxbf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 13px;
    color: var(--vx-text-3);
    animation: vxbf-fade-up .5s ease-out both;
}
.vxbf-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--vx-primary);
    transition: gap .2s;
}
.vxbf-breadcrumb a:hover { gap: 8px; }
.vxbf-bc-sep { opacity: .4; }

/* ═══════════════════════════════
   3. HERO con PARALLAX leggero + 6. GRADIENT animato
═══════════════════════════════ */
.vxbf-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .1s both;
    transition: background-position .15s ease-out;
}

/* Gradient animato fallback (no hero_image) */
.vxbf-hero.vxbf-hero-gradient {
    background-image: linear-gradient(135deg,
        var(--vx-primary) 0%,
        #c084fc 25%,
        #818cf8 50%,
        #6366f1 75%,
        var(--vx-primary) 100%);
    background-size: 300% 300%;
    animation: vxbf-fade-up .6s ease-out .1s both,
               vxbf-gradient-flow 12s ease-in-out infinite;
}

@keyframes vxbf-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.vxbf-hero-overlay { position: absolute; inset: 0; transition: opacity .3s; }
.vxbf-hero-body { position: relative; z-index: 1; }

.vxbf-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    opacity: 0;
    animation: vxbf-fade-up .6s ease-out .25s forwards;
}
.vxbf-hero-cat {
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--cc, var(--vx-primary));
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}
.vxbf-source-badge {
    padding: 2px 8px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

/* ═══════════════════════════════
   5. HERO TITLE — typewriter sottile
═══════════════════════════════ */
.vxbf-hero-title {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    min-height: 1.2em;
}
.vxbf-hero-title .vxbf-tw-char {
    display: inline-block;
    opacity: 0;
    animation: vxbf-tw-in .25s ease-out forwards;
}
.vxbf-hero-title .vxbf-tw-space {
    display: inline-block;
    width: .25em;
}

@keyframes vxbf-tw-in {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.vxbf-hero-desc {
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0;
    animation: vxbf-fade-up .6s ease-out .9s forwards;
}

.vxbf-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity .15s, transform .15s, box-shadow .2s;
    opacity: 0;
    animation: vxbf-fade-up .5s ease-out 1.1s forwards;
}
.vxbf-hero-btn:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.vxbf-countdown {
    text-align: center;
    padding: 20px;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: 10px;
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .2s both;
}
.vxbf-cd-label { font-size: 14px; font-weight: 500; color: var(--vx-text-2); margin-bottom: 8px; }
.vxbf-cd-timer {
    font-size: 32px;
    font-weight: 700;
    color: var(--vx-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.vxbf-article {
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .3s both;
}

.vxbf-article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--vx-text-3);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vx-border);
}

.vxbf-article-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--vx-text);
}
.vxbf-article-content h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: var(--vx-text); }
.vxbf-article-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: var(--vx-text); }
.vxbf-article-content p { margin-bottom: 16px; }
.vxbf-article-content img { border-radius: 8px; margin: 16px 0; }

/* ═══════════════════════════════
   7. BLOCKQUOTE highlight on scroll
═══════════════════════════════ */
.vxbf-article-content blockquote {
    border-left: 3px solid var(--vx-border);
    padding: 12px 20px;
    margin: 16px 0;
    background: transparent;
    border-radius: 0 6px 6px 0;
    font-style: initial;
    color: var(--vx-text-2);
    transition: border-left-color .6s ease,
                background .6s ease,
                transform .6s ease,
                color .6s ease,
                padding-left .4s ease;
    transform: translateX(-4px);
    position: relative;
}
.vxbf-article-content blockquote.vxbf-quote-active {
    border-left-color: var(--vx-primary);
    border-left-width: 4px;
    background: linear-gradient(90deg, rgba(139, 92, 246, .08), rgba(139, 92, 246, 0));
    color: var(--vx-text);
    transform: translateX(0);
    padding-left: 24px;
}
.vxbf-article-content blockquote.vxbf-quote-active::before {
    content: '"';
    position: absolute;
    left: 8px;
    top: -8px;
    font-size: 48px;
    color: var(--vx-primary);
    opacity: .25;
    font-family: Georgia, serif;
    line-height: 1;
    animation: vxbf-quote-pop .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes vxbf-quote-pop {
    from { transform: scale(0) rotate(-15deg); opacity: 0; }
    to   { transform: scale(1) rotate(0); opacity: .25; }
}

.vxbf-article-content a { color: var(--vx-primary); text-decoration: underline; }
.vxbf-article-content ul, .vxbf-article-content ol { margin: 12px 0; padding-left: 24px; }
.vxbf-article-content li { margin-bottom: 6px; }
.vxbf-article-content pre {
    background: var(--vx-bg-input);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 13px;
    margin: 16px 0;
}

.vxbf-source-link { margin-top: 20px; }
.vxbf-source-link a { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; }

.vxbf-video {
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .4s both;
}
.vxbf-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.vxbf-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.vxbf-gallery {
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .45s both;
}
.vxbf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.vxbf-gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.vxbf-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .25s;
    pointer-events: none;
}
.vxbf-gallery-item:hover::after { background: rgba(0, 0, 0, .15); }
.vxbf-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.vxbf-gallery-item:hover img { transform: scale(1.08); }

.vxbf-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: vxbf-lb-fadein .25s ease-out;
}
@keyframes vxbf-lb-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.vxbf-lb-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    animation: vxbf-lb-img-in .35s cubic-bezier(.2, .8, .25, 1);
}
@keyframes vxbf-lb-img-in {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
}
.vxbf-lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    transition: opacity .15s, transform .15s;
}
.vxbf-lb-close:hover { opacity: 1; transform: rotate(90deg); }
.vxbf-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s, transform .15s;
    backdrop-filter: blur(4px);
}
.vxbf-lb-nav:hover { background: rgba(255, 255, 255, .22); }
.vxbf-lb-prev { left: 16px; }
.vxbf-lb-next { right: 16px; }
.vxbf-lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.vxbf-lb-next:hover { transform: translateY(-50%) translateX(3px); }

.vxbf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .5s both;
}
.vxbf-tag {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    background: var(--vx-bg-input);
    border: 1px solid var(--vx-border);
    border-radius: 99px;
    color: var(--vx-text-2);
    transition: all .2s;
}
.vxbf-tag:hover {
    background: var(--vx-primary-light);
    color: var(--vx-primary);
    border-color: var(--vx-primary);
    transform: translateY(-1px);
}

.vxbf-social-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--vx-border);
    border-bottom: 1px solid var(--vx-border);
    margin-bottom: 24px;
    animation: vxbf-fade-up .6s ease-out .55s both;
}

.vxbf-share-btns { display: flex; gap: 6px; }

.vxbf-share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--vx-border);
    background: transparent;
    color: var(--vx-text-2);
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}
.vxbf-share-btn:hover {
    background: var(--vx-bg-hover);
    color: var(--vx-text);
    transform: translateY(-2px);
}
.vxbf-share-fb:hover { color: #1877f2; border-color: #1877f2; }
.vxbf-share-tw:hover { color: #000; border-color: #000; }
.vxbf-share-wa:hover { color: #25d366; border-color: #25d366; }
.vxbf-share-tg:hover { color: #0088cc; border-color: #0088cc; }

/* ═══════════════════════════════
   8. RECOMMEND BUTTON con BURST
═══════════════════════════════ */
.vxbf-recommend-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--vx-border);
    border-radius: 99px;
    background: transparent;
    color: var(--vx-text-2);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    position: relative;
}
.vxbf-recommend-btn:hover {
    background: var(--vx-bg-hover);
    transform: translateY(-1px);
}
.vxbf-recommend-btn.active {
    color: var(--vx-primary);
    border-color: var(--vx-primary);
    background: var(--vx-primary-light);
}
.vxbf-recommend-btn.active svg { fill: var(--vx-primary); }

.vxbf-recommend-btn.vxbf-rec-pulse svg {
    animation: vxbf-rec-bump .55s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes vxbf-rec-bump {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.4); }
    70%  { transform: scale(.92); }
    100% { transform: scale(1); }
}

.vxbf-burst {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 60px;
    height: 60px;
}
.vxbf-burst-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vx-primary);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle {
    animation: vxbf-burst-fly .65s cubic-bezier(.2, .8, .25, 1) forwards;
}
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(1) { --bx: 0px;   --by: -32px; background: #f5c542; }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(2) { --bx: 24px;  --by: -22px; background: #ff8c00; }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(3) { --bx: 32px;  --by: 4px;   background: var(--vx-primary); }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(4) { --bx: 22px;  --by: 26px;  background: #c084fc; }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(5) { --bx: -12px; --by: 28px;  background: #818cf8; }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(6) { --bx: -26px; --by: 12px;  background: var(--vx-primary); }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(7) { --bx: -28px; --by: -16px; background: #f5c542; }
.vxbf-burst.vxbf-burst-on .vxbf-burst-particle:nth-child(8) { --bx: -8px;  --by: -28px; background: #c084fc; }

@keyframes vxbf-burst-fly {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(.4); }
    60%  { opacity: 1; }
    100% { opacity: 0; transform: translate(calc(-50% + var(--bx)), calc(-50% + var(--by))) scale(.6); }
}

.vxbf-reviews-section {
    margin-bottom: 32px;
    animation: vxbf-fade-up .6s ease-out .6s both;
}
.vxbf-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--vx-text);
    margin-bottom: 16px;
}

.vxbf-rev-avg {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.vxbf-rev-num { font-size: 28px; font-weight: 700; color: var(--vx-text); }
.vxbf-rev-total { font-size: 13px; color: var(--vx-text-3); }
.vxbf-no-reviews { color: var(--vx-text-3); font-size: 13px; }

.vxbf-review {
    padding: 16px;
    border: 1px solid var(--vx-border);
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--vx-bg-card);
    transition: transform .2s, box-shadow .2s;
}
.vxbf-review:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}
.vxbf-review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; font-size: 13px; }
.vxbf-review-header strong { color: var(--vx-text); }
.vxbf-review-header span { color: var(--vx-text-3); font-size: 11px; }
.vxbf-review-stars { margin-bottom: 6px; }
.vxbf-review-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; color: var(--vx-text); }
.vxbf-review-text { font-size: 13px; color: var(--vx-text-2); line-height: 1.5; margin-bottom: 6px; }
.vxbf-review-pro { font-size: 12px; color: var(--vx-success); }
.vxbf-review-con { font-size: 12px; color: var(--vx-danger); }
.vxbf-review-reply {
    margin-top: 8px;
    padding: 10px 12px;
    background: var(--vx-bg-input);
    border-radius: 6px;
    font-size: 12px;
    color: var(--vx-text-2);
}
.vxbf-review-reply small { color: var(--vx-text-3); }

.vxbf-review-form {
    margin-top: 20px;
    padding: 20px;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: 10px;
}
.vxbf-form-title { font-size: 15px; font-weight: 600; color: var(--vx-text); margin-bottom: 12px; }

.vxbf-stars-input {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
.vxbf-star {
    cursor: pointer;
    transition: transform .15s;
}
.vxbf-star:hover { transform: scale(1.15); }

.vxbf-form-row { display: flex; gap: 10px; margin-bottom: 10px; }

.vxbf-input, .vxbf-textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--vx-bg-input);
    border: 1px solid var(--vx-border);
    border-radius: 6px;
    color: var(--vx-text);
    outline: none;
    transition: border .15s, box-shadow .15s;
    margin-bottom: 10px;
}
.vxbf-input:focus, .vxbf-textarea:focus {
    border-color: var(--vx-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .12);
}

.vxbf-btn-submit {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    background: var(--vx-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, transform .15s, box-shadow .2s;
}
.vxbf-btn-submit:hover {
    background: var(--vx-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, .35);
}

.vxbf-related {
    margin-bottom: 32px;
    animation: vxbf-fade-up .6s ease-out .65s both;
}
.vxbf-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.vxbf-related-card {
    border: 1px solid var(--vx-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    background: var(--vx-bg-card);
}
.vxbf-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}
.vxbf-related-img {
    height: 120px;
    background: var(--vx-bg-input);
    overflow: hidden;
}
.vxbf-related-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.vxbf-related-card:hover .vxbf-related-img img { transform: scale(1.06); }
.vxbf-related-info { padding: 12px; }
.vxbf-related-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--vx-text);
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color .15s;
}
.vxbf-related-card:hover .vxbf-related-info h4 { color: var(--vx-primary); }
.vxbf-related-info span { font-size: 11px; color: var(--vx-text-3); }

.vxbf-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    transition: all .25s;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}
.vxbf-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.vxbf-toast-success { background: var(--vx-success); }
.vxbf-toast-error   { background: var(--vx-danger); }
.vxbf-toast-info    { background: var(--vx-info); }

/* Riduce animazioni se utente preferisce */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .vxbf-hero { transition: none !important; }
}

@media (max-width: 640px) {
    .vxbf-title { font-size: 22px; }
    .vxbf-grid { grid-template-columns: 1fr; }
    .vxbf-card-big { grid-template-columns: 1fr; }
    .vxbf-card-big .vxbf-card-img { min-height: 200px; }
    .vxbf-hero { border-radius: 0; margin-left: -16px; margin-right: -16px; }
    .vxbf-hero-title { font-size: 1.6rem !important; }
    .vxbf-cd-timer { font-size: 24px; }
    .vxbf-form-row { flex-direction: column; gap: 0; }
    .vxbf-social-bar { flex-direction: column; gap: 12px; }
    .vxbf-related-grid { grid-template-columns: 1fr; }
    .vxbf-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .vxbf-article-content img,
    .vxbf-article-content img:nth-of-type(odd),
    .vxbf-article-content img:nth-of-type(even) {
        float: none;
        display: block;
        max-width: 100%;
        margin: 18px auto;
    }
}

.vxbf-article-content img {
    max-width: 190px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, .12);
    margin: 6px 0 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.vxbf-article-content img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(139, 92, 246, .2);
}

.vxbf-article-content img:nth-of-type(odd) {
    float: left;
    margin-right: 24px;
    shape-outside: margin-box;
}

.vxbf-article-content img:nth-of-type(even) {
    float: right;
    margin-left: 24px;
    shape-outside: margin-box;
}

.vxbf-article-content::after {
    content: '';
    display: block;
    clear: both;
}