.pavosol-filmdata-3d9a790d {
    --pavosol-accent: #2196F3;
    --pavosol-accent-glow: rgba(33, 150, 243, 0.4);
    --pavosol-text: #ffffff;
    --pavosol-muted: #94a3b8;
    background-color: #0a0d14;
    color: var(--pavosol-text);
    padding: 60px 40px;
    border-radius: 16px;
    font-family: sans-serif;
    overflow: hidden;
}

.pavosol-fd-top {
    display: flex;
    gap: 60px;
}

.pavosol-fd-left {
    flex: 0 0 40%;
}

.pavosol-fd-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--pavosol-accent);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.pavosol-fd-headline {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #fff;
}

.pavosol-fd-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--pavosol-muted);
    margin: 0 0 24px;
}

.pavosol-fd-trust {
    font-size: 12px;
    color: #64748b;
}

.pavosol-fd-right {
    flex: 1;
}

.pavosol-fd-chart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 350px;
    position: relative;
}

.pavosol-fd-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--anim-delay);
}

.pavosol-filmdata-3d9a790d.is-visible .pavosol-fd-bar-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.pavosol-fd-bar-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    white-space: nowrap;
}

.pavosol-fd-bar-track {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pavosol-fd-bar-fill {
    width: 100%;
    background: var(--pavosol-accent);
    border-radius: 6px;
    height: 0%;
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, filter 0.3s ease;
    position: relative;
    cursor: pointer;
}

.pavosol-filmdata-3d9a790d.is-visible .pavosol-fd-bar-fill {
    height: var(--target-h);
}

.pavosol-fd-bar-fill:hover {
    box-shadow: 0 0 20px var(--pavosol-accent-glow);
    filter: brightness(1.2);
}

.pavosol-fd-bar-fill.type-compare .pavosol-fd-bar-split {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    background: #10b981;
    border-radius: 0 0 6px 0;
}

.pavosol-fd-tooltip {
    position: absolute;
    bottom: calc(var(--target-h) + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1e293b;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    width: max-content;
    max-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.pavosol-fd-bar-fill:hover + .pavosol-fd-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pavosol-fd-bar-label {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 35px;
}

.pavosol-fd-bar-source {
    font-size: 10px;
    color: #475569;
    text-align: center;
}

@media (max-width: 991px) {
    .pavosol-fd-top { flex-direction: column; }
    .pavosol-fd-chart { height: auto; flex-direction: column; align-items: stretch; }
    .pavosol-fd-bar-wrapper { flex-direction: row; height: auto; margin-bottom: 20px; align-items: center; background: rgba(255,255,255,0.03); padding: 15px; border-radius: 10px; }
    .pavosol-fd-bar-track { display: none; }
    .pavosol-fd-bar-value { margin: 0 20px 0 0; font-size: 32px; min-width: 80px; }
    .pavosol-fd-bar-label { text-align: left; margin: 0; min-height: auto; font-size: 14px; }
    .pavosol-fd-bar-source { display: none; }
}