/**
 * ═══════════════════════════════════════════════════════════════════════════════════
 * PF_VMS.css - Video Management System (Blubb)
 * Theme: ORANGE & DARK - Cinematic Videoplattform
 * Version: 1.0.0
 * Autor: Franz PFuisi
 * PFWS 1.4.1.3.25 konform
 * ═══════════════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   🎨 CSS VARIABLES - ORANGE & DARK THEME
   ═══════════════════════════════════════════════════════════════ */
:root {
    --pf-vms-orange: #ff6b35;
    --pf-vms-dark-orange: #e85d2a;
    --pf-vms-light-orange: #ff8c5f;
    --pf-vms-dark: #1a1a1a;
    --pf-vms-darker: #2a2a2a;
    --pf-vms-gray: #2a2a2a;
    --pf-vms-light-gray: #3a3a3a;
    --pf-vms-text: #f0f0f0;
    --pf-vms-text-muted: #b0b0b0;
    
    --pf-vms-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --pf-vms-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --pf-vms-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    --pf-vms-shadow-heavy: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   📦 BASE LAYOUT (HAM Pattern)
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-layout-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
}

.pf-vms-layout-wrapper.overlay-mode {
    height: 100%;
}

.pf-vms-topnav-spacer {
    height: 60px;
    flex-shrink: 0;
}

.pf-vms-box {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--pf-vms-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pf-vms-shadow-heavy);
}

.pf-vms-box.overlay-mode {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    border-radius: var(--pf-overlay-shell-box-radius, 12px);
    box-shadow: none;
}

.pf-vms-module {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    color: var(--pf-vms-text);
    position: relative;
}

.pf-vms-toast-stack {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    width: min(320px, calc(100% - 20px));
}

.pf-vms-toast {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #fff;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(255, 153, 58, 0.22) 0%, rgba(255, 153, 58, 0) 65%),
        linear-gradient(135deg, rgba(18, 29, 48, 0.95) 0%, rgba(26, 18, 12, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pf-vms-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 12px 0 0 12px;
    background: rgba(255, 255, 255, 0.4);
}

.pf-vms-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pf-vms-toast.is-leaving {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
}

.pf-vms-toast.is-success {
    border-color: rgba(255, 167, 51, 0.5);
    box-shadow: 0 12px 26px rgba(255, 120, 42, 0.25);
}

.pf-vms-toast.is-success::before {
    background: linear-gradient(180deg, #ffbb55 0%, #ff7a2e 100%);
}

.pf-vms-toast.is-warn {
    border-color: rgba(255, 210, 76, 0.45);
}

.pf-vms-toast.is-warn::before {
    background: linear-gradient(180deg, #ffe27a 0%, #ffba30 100%);
}

.pf-vms-toast.is-error {
    border-color: rgba(255, 118, 118, 0.45);
}

.pf-vms-toast.is-error::before {
    background: linear-gradient(180deg, #ff8a8a 0%, #ff4c4c 100%);
}

.pf-vms-toast.is-info {
    border-color: rgba(157, 199, 255, 0.45);
}

.pf-vms-toast.is-info::before {
    background: linear-gradient(180deg, #a6d2ff 0%, #63a8ff 100%);
}

.pf-vms-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}

.pf-vms-toast-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

/* ═══════════════════════════════════════════════════════════════
   🎬 HEADER - CINEMATIC ORANGE
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--pf-vms-gradient);
    color: white;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

.pf-vms-header-compact-logo {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    z-index: 3;
}

.pf-vms-header-compact-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    object-fit: contain;
    display: block;
}

/* Wave Animation - Hintergrund */
.pf-vms-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 20%, #ff8c42 40%, #ffa500 60%, #ff6b35 80%, #f7931e 100%);
    background-size: 400% 400%;
    animation: pf-vms-gradient-wave 10s ease infinite;
    z-index: -1;
}

/* Shimmer Overlay */
.pf-vms-header::after {
    display: none;
}

@keyframes pf-vms-gradient-wave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pf-vms-header-shimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 10px) rotate(180deg); }
}

.pf-vms-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Drag-Handle */
.pf-drag-handle {
    font-size: 28px;
    cursor: grab;
    transition: transform 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.pf-drag-handle:active {
    cursor: grabbing;
    transform: scale(0.95);
}

/* Info-Toggle Wrapper */
.pf-vms-icon-wrapper {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 10;
    pointer-events: auto;
}

.pf-vms-icon-wrapper:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pf-vms-icon-wrapper:active {
    transform: scale(0.95) rotate(-5deg);
}

.pf-vms-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    cursor: pointer;
    transition: none;
    pointer-events: none;
    user-select: none;
}

.pf-vms-icon .pf-vms-svg-icon {
    width: 22px;
    height: 22px;
}

.pf-vms-title-section {
    display: flex;
    flex-direction: column;
}

.pf-vms-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pf-vms-meta {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
}

.pf-vms-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.pf-vms-btn-small {
    min-height: 34px;
    padding: 6px 10px;
    gap: 8px;
}

.pf-vms-btn-dashboard {
    color: rgba(255, 255, 255, 0.93);
    background: rgba(8, 17, 31, 0.28);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);
    transition: background 0.22s ease, border-color 0.22s ease;
}

.pf-vms-btn-dashboard:hover {
    background: rgba(8, 17, 31, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: none;
}

.pf-vms-tooltip-anchor {
    position: relative;
}

.pf-vms-tooltip-anchor::after {
    content: attr(data-pf-tooltip);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(-4px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.94);
    color: #f8fafc;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: normal;
    min-width: 84px;
    max-width: min(220px, calc(100vw - 24px));
    text-align: center;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1200;
}

.pf-vms-tooltip-anchor::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + 3px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(15, 23, 42, 0.94);
    transform: translateX(-50%) translateY(-4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1200;
}

#pf-vms-shimmer-toggle.pf-vms-tooltip-anchor::after,
#pf-vms-shimmer-toggle.pf-vms-tooltip-anchor::before {
    z-index: 1600;
}

.pf-vms-tooltip-anchor:not([data-pf-tooltip])::after,
.pf-vms-tooltip-anchor[data-pf-tooltip=""]::after,
.pf-vms-tooltip-anchor:not([data-pf-tooltip])::before,
.pf-vms-tooltip-anchor[data-pf-tooltip=""]::before {
    display: none;
}

.pf-vms-tooltip-left::after {
    left: 0;
    right: auto;
    transform: translateY(-4px);
}

.pf-vms-tooltip-left::before {
    left: 14px;
    right: auto;
    transform: translateY(-4px);
}

.pf-vms-tooltip-bottom-left::after {
    left: 0;
    right: auto;
    top: calc(100% + 8px);
    bottom: auto;
    transform: translateY(-4px);
}

.pf-vms-tooltip-bottom-left::before {
    left: 14px;
    right: auto;
    top: calc(100% + 3px);
    bottom: auto;
    transform: translateY(-4px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 0;
    border-bottom: 6px solid rgba(15, 23, 42, 0.94);
}

.pf-vms-tooltip-right::after {
    left: auto;
    right: 0;
    transform: translateY(-4px);
}

.pf-vms-tooltip-right::before {
    left: auto;
    right: 14px;
    transform: translateY(-4px);
}

.pf-vms-tooltip-top-left::after {
    left: 0;
    right: auto;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(4px);
}

.pf-vms-tooltip-top-left::before {
    left: 14px;
    right: auto;
    top: auto;
    bottom: calc(100% + 3px);
    transform: translateY(4px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-top: 6px solid rgba(15, 23, 42, 0.94);
}

.pf-vms-tooltip-anchor:hover::after,
.pf-vms-tooltip-anchor:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pf-vms-tooltip-anchor:hover::before,
.pf-vms-tooltip-anchor:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pf-vms-tooltip-left:hover::after,
.pf-vms-tooltip-left:focus-visible::after,
.pf-vms-tooltip-bottom-left:hover::after,
.pf-vms-tooltip-bottom-left:focus-visible::after,
.pf-vms-tooltip-top-left:hover::after,
.pf-vms-tooltip-top-left:focus-visible::after,
.pf-vms-tooltip-right:hover::after,
.pf-vms-tooltip-right:focus-visible::after {
    opacity: 1;
}

.pf-vms-tooltip-left:hover::before,
.pf-vms-tooltip-left:focus-visible::before,
.pf-vms-tooltip-bottom-left:hover::before,
.pf-vms-tooltip-bottom-left:focus-visible::before,
.pf-vms-tooltip-top-left:hover::before,
.pf-vms-tooltip-top-left:focus-visible::before,
.pf-vms-tooltip-right:hover::before,
.pf-vms-tooltip-right:focus-visible::before {
    opacity: 1;
}

.pf-vms-tooltip-left:hover::after,
.pf-vms-tooltip-left:focus-visible::after,
.pf-vms-tooltip-left:hover::before,
.pf-vms-tooltip-left:focus-visible::before,
.pf-vms-tooltip-bottom-left:hover::after,
.pf-vms-tooltip-bottom-left:focus-visible::after,
.pf-vms-tooltip-bottom-left:hover::before,
.pf-vms-tooltip-bottom-left:focus-visible::before,
.pf-vms-tooltip-top-left:hover::after,
.pf-vms-tooltip-top-left:focus-visible::after,
.pf-vms-tooltip-top-left:hover::before,
.pf-vms-tooltip-top-left:focus-visible::before,
.pf-vms-tooltip-right:hover::after,
.pf-vms-tooltip-right:focus-visible::after,
.pf-vms-tooltip-right:hover::before,
.pf-vms-tooltip-right:focus-visible::before {
    transform: translateY(0);
}

.pf-vms-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 6px;
    height: 34px;
    min-height: 34px;
    color: #f9fcff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.pf-vms-user:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.pf-vms-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.12) 100%);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-vms-user-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pf-vms-user-avatar-fallback {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.pf-vms-bubu-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(12, 19, 31, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff9f3;
    line-height: 1;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pf-vms-bubu-pill.is-pulse {
    animation: pf-vms-bubu-pill-pulse 0.7s ease;
}

@keyframes pf-vms-bubu-pill-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 153, 51, 0); }
    45% { transform: scale(1.06); box-shadow: 0 0 0 7px rgba(255, 153, 51, 0.18); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 153, 51, 0); }
}

.pf-vms-bubu-icon {
    font-size: 0.82rem;
    line-height: 1;
}

.pf-vms-bubu-value {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pf-vms-bubu-delta {
    position: absolute;
    right: 5px;
    top: -14px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #ffe27a;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.pf-vms-bubu-delta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pf-vms-svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.pf-vms-dash-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.pf-vms-dash-logo {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    transform-origin: center;
    animation: pf-vms-dash-logo-float 3.8s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.28));
}

.pf-vms-btn-dashboard:hover .pf-vms-dash-logo {
    animation: pf-vms-dash-logo-spin 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

@keyframes pf-vms-dash-logo-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-1px) scale(1.03); }
}

@keyframes pf-vms-dash-logo-spin {
    0%   { transform: rotate(0deg) scale(1); }
    70%  { transform: rotate(360deg) scale(1.16); }
    100% { transform: rotate(360deg) scale(1); }
}

.pf-vms-dash-label {
    display: inline-flex;
    align-items: center;
}

.pf-vms-dashboard-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1350;
}

.pf-vms-dashboard-submenu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 210px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 149, 84, 0.42);
    background: linear-gradient(160deg, rgba(31, 20, 14, 0.98) 0%, rgba(53, 30, 18, 0.98) 100%);
    box-shadow: 0 16px 32px rgba(8, 17, 31, 0.42), 0 0 0 1px rgba(255, 145, 77, 0.12);
    z-index: 48;
}

.pf-vms-dashboard-submenu::before,
.pf-vms-dashboard-submenu::after {
    content: '';
    position: absolute;
    right: 18px;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pf-vms-dashboard-submenu::before {
    top: -9px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid rgba(255, 149, 84, 0.42);
}

.pf-vms-dashboard-submenu::after {
    top: -8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid rgba(39, 23, 15, 0.98);
}

.pf-vms-dashboard-submenu-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 11px;
    border-radius: 9px;
    border: 0;
    background: transparent;
    color: #fff4e6;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.pf-vms-dashboard-submenu-item:hover,
.pf-vms-dashboard-submenu-item:focus-visible {
    background: linear-gradient(135deg, rgba(255, 122, 61, 0.24) 0%, rgba(255, 179, 0, 0.34) 100%);
    color: #ffffff;
}

.pf-vms-dashboard-submenu-switch {
    border: 1px solid rgba(255, 166, 107, 0.34);
    background: rgba(255, 140, 95, 0.12);
}

.pf-vms-dashboard-submenu-switch-ui {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pf-vms-dashboard-submenu-switch-state {
    min-width: 30px;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 2px 7px;
    color: #fff4e0;
    background: rgba(249, 115, 22, 0.36);
}

.pf-vms-dashboard-submenu-switch-track {
    width: 34px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 174, 130, 0.44);
    background: rgba(95, 50, 24, 0.78);
    padding: 2px;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pf-vms-dashboard-submenu-switch-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #ffe8cf;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.38);
    transform: translateX(16px);
    transition: transform 0.22s ease;
}

.pf-vms-box.is-footer-fx-off .pf-vms-dashboard-submenu-switch-state {
    color: #ffe7cf;
    background: rgba(194, 65, 12, 0.38);
}

.pf-vms-box.is-footer-fx-off .pf-vms-dashboard-submenu-switch-track {
    background: rgba(82, 39, 18, 0.65);
    border-color: rgba(194, 65, 12, 0.55);
}

.pf-vms-box.is-footer-fx-off .pf-vms-dashboard-submenu-switch-dot {
    transform: translateX(0);
}

.pf-vms-dashboard-menu.is-open .pf-vms-btn-dashboard {
    background: rgba(8, 17, 31, 0.42);
    border-color: rgba(255, 179, 0, 0.48);
    box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.32), 0 4px 14px rgba(8, 17, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* ═══════════════════════════════════════════════════════════════
   📄 BODY & FOOTER - DARK THEME
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    background: #513b36a8;
    min-height: 0;
    border-left: 0;
    border-right: 0;
    scrollbar-color: var(--pf-vms-orange) #2a2a2a;
    scrollbar-width: thin;
    position: relative;
    z-index: 1;
}

.pf-vms-body::-webkit-scrollbar {
    width: 15px;
}

.pf-vms-body::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.pf-vms-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff8c5f, #ff6b35);
    border-radius: 6px;
    border: 2px solid #2a2a2a;
}

.pf-vms-footer {
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: var(--pf-vms-gradient);
    color: white;
    padding: 8px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    font-size: 0.72rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.pf-vms-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 20%, #ff8c42 40%, #ffa500 60%, #ff6b35 80%, #f7931e 100%);
    background-size: 400% 400%;
    animation: pf-vms-gradient-wave 10s ease infinite;
    z-index: -1;
}

.pf-vms-footer::after {
    display: none;
}

@keyframes pf-vms-footer-shimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 10px) rotate(-180deg); }
}

.pf-vms-header.no-shimmer::after,
.pf-vms-footer.no-shimmer::after {
    display: none;
}

.pf-vms-box.is-footer-fx-off .pf-vms-header,
.pf-vms-box.is-footer-fx-off .pf-vms-footer {
    background: linear-gradient(135deg, #FF3040 0%, #FF5E00 45%, #FFA800 100%);
}

.pf-vms-box.is-footer-fx-off .pf-vms-header::before,
.pf-vms-box.is-footer-fx-off .pf-vms-footer::before {
    animation: none !important;
}

.pf-vms-box.is-footer-fx-off .pf-vms-header::after,
.pf-vms-box.is-footer-fx-off .pf-vms-footer::after {
    animation: none !important;
    opacity: 0.7;
}

.pf-vms-shimmer-icon {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-vms-shimmer-icon svg {
    width: 100%;
    height: 100%;
}

.pf-vms-footer-fx-toggle .pf-vms-footer-icon-off,
.pf-vms-shimmer-icon-off {
    display: none;
}

#pf-vms-shimmer-toggle[data-state="inactive"] .pf-vms-shimmer-icon-on,
#pf-vms-shimmer-toggle[data-state="inactive"] .pf-vms-footer-icon-on,
.is-footer-fx-off .pf-vms-footer-fx-toggle .pf-vms-footer-icon-on {
    display: none;
}

#pf-vms-shimmer-toggle[data-state="inactive"] .pf-vms-shimmer-icon-off,
#pf-vms-shimmer-toggle[data-state="inactive"] .pf-vms-footer-icon-off,
.is-footer-fx-off .pf-vms-footer-fx-toggle .pf-vms-footer-icon-off {
    display: inline-flex;
}

.pf-vms-shimmer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.pf-vms-shimmer-btn .pf-vms-svg-icon,
.pf-vms-shimmer-btn .pf-vms-svg-icon svg,
.pf-vms-shimmer-btn .pf-vms-footer-icon,
.pf-vms-shimmer-btn .pf-vms-footer-icon svg {
    width: 12px;
    height: 12px;
}

.pf-vms-shimmer-btn:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.52);
}

.pf-vms-shimmer-btn:active {
    transform: translateY(0);
}

.pf-vms-shimmer-btn[data-state="inactive"] {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.58);
    background: rgba(15, 23, 42, 0.2);
}

.pf-vms-shimmer-btn[data-state="inactive"] svg {
    opacity: 0.7;
}

.pf-vms-shimmer-btn[data-state="inactive"]:hover {
    background: rgba(15, 23, 42, 0.28);
}

.pf-vms-footer-left,
.pf-vms-footer-center,
.pf-vms-footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.pf-vms-footer-center {
    justify-content: center;
}

.pf-vms-footer-runtime {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.7rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.pf-vms-footer-right {
    justify-content: flex-end;
    justify-self: end;
    flex-wrap: nowrap;
}

.pf-vms-footer-module,
.pf-vms-footer-meta {
    color: rgba(255, 255, 255, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pf-vms-to-top-wrap {
    display: contents;
}

.pf-vms-to-top-btn {
    position: absolute;
    right: 24px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 107, 87, 0.95) 0%, rgba(255, 190, 77, 0.95) 100%);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.38);
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    font-size: 1.2rem;
    line-height: 1;
    color: #ffffff;
    z-index: 220;
}

.pf-vms-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pf-vms-to-top-btn:hover,
.pf-vms-to-top-btn:focus-visible {
    transform: translateY(-2px);
}

.pf-vms-to-top-btn:active {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   ℹ️ INFO SECTION - HAM STYLE
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-info-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 20px;
    border-bottom: 2px solid var(--pf-vms-orange);
    margin: 0;
    animation: pf-vms-info-slide-down 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.pf-vms-info-section::-webkit-scrollbar {
    width: 8px;
}

.pf-vms-info-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.pf-vms-info-section::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 87, 0.5);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.pf-vms-info-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 87, 0.8);
}

@keyframes pf-vms-info-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-vms-info-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pf-vms-info-description {
    background: var(--pf-vms-gray);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pf-vms-info-description label,
.pf-vms-info-description .pf-vms-info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pf-vms-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pf-vms-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--pf-vms-text);
    margin: 0;
}

.pf-vms-info-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-vms-info-block {
    background: var(--pf-vms-gray);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--pf-vms-orange);
}

.pf-vms-info-block:hover {
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    background: var(--pf-vms-light-gray);
}

.pf-vms-info-block label,
.pf-vms-info-block .pf-vms-info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pf-vms-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.pf-vms-value {
    font-size: 0.9rem;
    color: var(--pf-vms-text);
    font-weight: 500;
}

.pf-vms-link {
    color: var(--pf-vms-orange);
    text-decoration: none;
}

.pf-vms-link:hover {
    text-decoration: underline;
}

#pf-vms-info-section[hidden] {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   🔘 DASHBOARD BUTTON - GLASS EFFECT
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.pf-vms-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pf-vms-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pf-vms-btn-primary {
    background: var(--pf-vms-gradient);
    border: 2px solid var(--pf-vms-orange);
    box-shadow: var(--pf-vms-shadow);
}

.pf-vms-btn-primary:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: var(--pf-vms-shadow-heavy);
}

.pf-vms-btn-secondary {
    background: var(--pf-vms-gradient-dark);
    border: 2px solid var(--pf-vms-gray);
    color: var(--pf-vms-orange);
}

.pf-vms-btn-secondary:hover {
    border-color: var(--pf-vms-orange);
    background: var(--pf-vms-gray);
}

.pf-vms-btn-large {
    padding: 12px 24px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   📑 TAB NAVIGATION - REGISTERKARTEN
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-tabs {
    display: flex;
    gap: 4px;
    padding: 0 4px;
    margin-bottom: 0;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
}

.pf-vms-tab {
    appearance: none;
    background: var(--pf-vms-gradient);
    background-size: 160% 160%;
    background-position: 0% 0%;
    border: 2px solid var(--pf-vms-orange);
    border-bottom: 2px solid var(--pf-vms-orange);
    border-radius: 10px 10px 0 0;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.22s ease,
                color 0.18s ease,
                filter 0.18s ease,
                background-position 0.35s ease;
    position: relative;
    transform-origin: center bottom;
    overflow: hidden;
    margin-bottom: -2px;
    box-shadow: var(--pf-vms-shadow);
}

/* Shimmer sweep on hover */
.pf-vms-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transition: left 0.48s ease;
    pointer-events: none;
}

.pf-vms-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-vms-tab-label {
    display: inline;
}

.pf-vms-tab:hover:not(.active) {
    color: var(--pf-vms-orange);
    transform: translateY(-2px) scale(1.02, 1.08);
    margin-bottom: -5px;
    border-color: var(--pf-vms-orange);
    background: var(--pf-vms-dark);
    background-position: 100% 100%;
    filter: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.pf-vms-tab:hover:not(.active)::after {
    left: 150%;
}

.pf-vms-tab.active {
    background: var(--pf-vms-dark);
    color: var(--pf-vms-orange);
    font-weight: 700;
    text-shadow: none;
    border: 2px solid var(--pf-vms-orange);
    border-bottom: 2px solid var(--pf-vms-dark);
    margin-bottom: -2px;
    z-index: 3;
    box-shadow: none;
    transform: none;
}

.pf-vms-tab.active::after {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   📄 TAB CONTENT
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-tab-content {
    padding: 25px;
    background: var(--pf-vms-dark);
    border: 2px solid var(--pf-vms-orange);
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.pf-vms-tab-pane {
    display: none;
    animation: pf-vms-fade-in 0.5s ease;
}

.pf-vms-tab-pane.active {
    display: block;
}

@keyframes pf-vms-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   🎬 HERO SECTION - OVERVIEW
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-hero {
    background: var(--pf-vms-gradient);
    position: relative;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 0;
    box-shadow: var(--pf-vms-shadow-heavy);
}

.pf-vms-hero-shell {
    margin-bottom: 30px;
}

.pf-vms-hero-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pf-vms-hero-toggle:hover {
    background: rgba(0, 0, 0, 0.34);
    transform: scale(1.05);
}

.pf-vms-hero-reopen {
    width: 100%;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pf-vms-hero-reopen[hidden] {
    display: none !important;
}

.pf-vms-hero-reopen-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.pf-vms-hero h2 {
    margin: 0 0 15px 0;
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pf-vms-heading-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pf-vms-heading-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.pf-vms-hero .pf-vms-heading-logo {
    width: 24px;
    height: 24px;
}

.pf-vms-hero p {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.pf-vms-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pf-vms-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pf-vms-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pf-vms-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════════
   📺 VIDEO GRID
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-section-title {
    color: var(--pf-vms-orange);
    font-size: 24px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pf-vms-orange);
}

.pf-vms-section-desc {
    color: var(--pf-vms-text-muted);
    margin: -10px 0 25px 0;
    font-size: 14px;
}

.pf-vms-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pf-vms-video-pagination {
    display: flex;
    justify-content: center;
    margin: -8px 0 30px;
}

.pf-vms-video-card {
    --pf-vms-card-accent: var(--pf-vms-orange);
    background: var(--pf-vms-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.pf-vms-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--pf-vms-card-accent) 40%, transparent);
    border-color: var(--pf-vms-card-accent);
}

.pf-vms-video-thumbnail {
    aspect-ratio: 16/9;
    background: var(--pf-vms-gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pf-vms-video-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.pf-vms-video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.pf-vms-video-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.pf-vms-video-icon {
    font-size: 64px;
    opacity: 0.6;
}

.pf-vms-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.pf-vms-live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e63946;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    animation: pf-vms-live-pulse 2s ease infinite;
}

@keyframes pf-vms-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pf-vms-video-info {
    padding: 15px;
}

.pf-vms-video-title {
    color: var(--pf-vms-text);
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
}

.pf-vms-video-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: var(--pf-vms-text-muted);
    margin-bottom: 10px;
}

.pf-vms-channel {
    color: var(--pf-vms-orange);
    font-weight: 600;
}

.pf-vms-channel-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-vms-channel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1b140f;
    background: linear-gradient(135deg, #ffd36c, #ff9f5a);
}

.pf-vms-category-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--pf-vms-category-color, var(--pf-vms-orange)) 18%, #121212);
    color: var(--pf-vms-category-color, var(--pf-vms-orange));
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--pf-vms-category-color, var(--pf-vms-orange));
}

/* ═══════════════════════════════════════════════════════════════
   🗂️ CATEGORY GRID
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pf-vms-category-card {
    background: var(--pf-vms-gray);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.pf-vms-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border-color: var(--pf-vms-orange);
}

.pf-vms-category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.pf-vms-category-info {
    flex: 1;
}

.pf-vms-category-name {
    color: var(--pf-vms-text);
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.pf-vms-category-count {
    color: var(--pf-vms-text-muted);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   📡 CHANNELS GRID (TAB 2)
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.pf-vms-channel-card {
    background: linear-gradient(160deg, rgba(41, 31, 24, 0.95) 0%, rgba(34, 27, 22, 0.95) 100%);
    border: 1px solid rgba(255, 145, 77, 0.38);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.pf-vms-channel-head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pf-vms-channel-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 191, 124, 0.8);
    background: #121212;
}

.pf-vms-channel-meta {
    min-width: 0;
    flex: 1;
}

.pf-vms-channel-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.pf-vms-channel-name {
    margin: 0;
    color: #fff4ea;
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}

.pf-vms-channel-badge {
    --pf-vms-channel-badge-color: #ffb366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    color: #1b140f;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pf-vms-channel-badge-color) 65%, #ffe6c7), var(--pf-vms-channel-badge-color));
    margin-left: auto;
    flex-shrink: 0;
}

.pf-vms-channel-handle {
    margin: 2px 0 0;
    color: #ffd1aa;
    font-size: 0.82rem;
    font-weight: 600;
}

.pf-vms-channel-stats {
    margin: 2px 0 0;
    color: rgba(255, 233, 214, 0.92);
    font-size: 0.78rem;
}

.pf-vms-channel-desc {
    margin: 12px 0 14px;
    color: #f8e9dc;
    font-size: 0.9rem;
    line-height: 1.45;
}

.pf-vms-channel-samples {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pf-vms-channel-sample {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.32);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pf-vms-channel-sample:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 155, 94, 0.7);
    background: rgba(255, 139, 74, 0.12);
}

.pf-vms-channel-sample-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.pf-vms-channel-sample-title {
    color: #fff4ea;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.pf-vms-channel-sample-meta {
    color: rgba(255, 218, 188, 0.85);
    font-size: 0.72rem;
}

.pf-vms-channel-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pf-vms-channel-actions .pf-vms-btn {
    flex: 1;
    min-width: 170px;
}

.pf-vms-channel-all-link {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #ffd8b9;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.92;
}

.pf-vms-channel-all-link:hover {
    color: #fff0df;
    text-decoration: underline;
}

.pf-vms-channel-promo-box {
    border-left-color: #ffa55f;
    background: linear-gradient(145deg, rgba(46, 25, 13, 0.95) 0%, rgba(27, 18, 13, 0.95) 100%);
    border: 1px solid rgba(255, 145, 77, 0.34);
    border-left: 4px solid #ffa55f;
}

.pf-vms-channel-promo-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-vms-channel-promo-head h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff4e8;
}

.pf-vms-channel-promo-logo {
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}

.pf-vms-channel-promo-lead {
    margin: 10px 0 14px;
    color: #ffe7d1;
    line-height: 1.5;
}

.pf-vms-channel-promo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.pf-vms-channel-promo-chip {
    border: 1px solid rgba(255, 167, 96, 0.35);
    background: rgba(255, 145, 77, 0.12);
    color: #ffe3ca;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    text-align: center;
}

.pf-vms-channel-promo-chip strong {
    color: #fff6ee;
}

.pf-vms-channel-promo-list {
    margin-top: 4px;
}

.pf-vms-channel-promo-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pf-vms-channel-promo-list strong {
    color: #ffb071;
}

.pf-vms-channel-promo-ctas {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pf-vms-channel-promo-ctas .pf-vms-btn {
    flex: 1;
    min-width: 220px;
}

/* ═══════════════════════════════════════════════════════════════
   # HASHTAG TAB
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-hashtag-intro {
    background: linear-gradient(145deg, rgba(35, 28, 21, 0.96) 0%, rgba(24, 20, 16, 0.96) 100%);
    border: 1px solid rgba(255, 166, 96, 0.32);
    border-left: 4px solid #ffb05f;
}

.pf-vms-hashtag-intro p {
    margin: 0 0 14px;
    color: #ffe7d1;
    line-height: 1.55;
}

.pf-vms-hashtag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-vms-hashtag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffe8d6;
    background: rgba(255, 145, 77, 0.12);
    border: 1px solid rgba(255, 167, 96, 0.34);
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pf-vms-hashtag-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 177, 121, 0.75);
    background: rgba(255, 145, 77, 0.2);
}

.pf-vms-hashtag-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffcf9f;
}

.pf-vms-hashtag-chip-icon .pf-vms-svg-icon {
    width: 14px;
    height: 14px;
}

.pf-vms-hashtag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.pf-vms-hashtag-card {
    --pf-vms-hashtag-accent: #ff8c42;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(38, 29, 22, 0.98) 0%, rgba(24, 18, 14, 0.98) 100%);
    border: 1px solid color-mix(in srgb, var(--pf-vms-hashtag-accent) 42%, #3a312b);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.pf-vms-hashtag-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--pf-vms-hashtag-accent) 50%, transparent 100%);
}

.pf-vms-hashtag-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.pf-vms-hashtag-kicker {
    margin: 0 0 4px;
    color: #c9ab91;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
}

.pf-vms-hashtag-title {
    margin: 0;
    color: #fff4ea;
    font-size: 1.08rem;
    line-height: 1.25;
}

.pf-vms-hashtag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #1b140f;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pf-vms-hashtag-badge-color) 65%, #ffe6c7), var(--pf-vms-hashtag-badge-color));
    flex-shrink: 0;
}

.pf-vms-hashtag-desc {
    margin: 0;
    color: #ffddc0;
    font-size: 0.9rem;
    line-height: 1.45;
}

.pf-vms-hashtag-taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-vms-hashtag-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--pf-vms-hashtag-accent);
    background: color-mix(in srgb, var(--pf-vms-hashtag-accent) 16%, #171210);
    border: 1px solid color-mix(in srgb, var(--pf-vms-hashtag-accent) 42%, #3a312b);
    font-size: 0.76rem;
    font-weight: 700;
}

.pf-vms-hashtag-videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pf-vms-hashtag-video {
    display: flex;
    gap: 10px;
    text-decoration: none;
    padding: 8px;
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pf-vms-hashtag-video:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--pf-vms-hashtag-accent) 72%, #ffffff);
    background: rgba(255, 145, 77, 0.12);
}

.pf-vms-hashtag-video-thumb {
    width: 112px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #000;
}

.pf-vms-hashtag-video-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pf-vms-hashtag-video-title {
    color: #fff2e7;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

.pf-vms-hashtag-video-submeta {
    color: #d8bba0;
    font-size: 0.74rem;
}

.pf-vms-hashtag-actions {
    display: flex;
    justify-content: flex-start;
}

.pf-vms-hashtag-actions .pf-vms-btn {
    min-width: 220px;
}

@media (max-width: 900px) {
    .pf-vms-hashtag-grid {
        grid-template-columns: 1fr;
    }

    .pf-vms-hashtag-video {
        flex-direction: column;
    }

    .pf-vms-hashtag-video-thumb {
        width: 100%;
    }

    .pf-vms-hashtag-actions .pf-vms-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .pf-vms-channel-samples {
        grid-template-columns: 1fr;
    }

    .pf-vms-channel-actions .pf-vms-btn {
        min-width: 0;
        width: 100%;
    }

    .pf-vms-channel-promo-ctas .pf-vms-btn {
        min-width: 0;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   🔴 LIVESTREAM SETUP
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-livestream-promo {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 145, 77, 0.34);
    border-radius: 12px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(46, 25, 13, 0.95) 0%, rgba(27, 18, 13, 0.95) 100%);
}

.pf-vms-livestream-promo-head {
    color: #fff3e5;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 10px;
}

.pf-vms-livestream-promo-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.pf-vms-livestream-chip {
    border: 1px solid rgba(255, 167, 96, 0.35);
    background: rgba(255, 145, 77, 0.12);
    color: #ffe3ca;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    text-align: center;
    font-weight: 700;
}

.pf-vms-livestream-promo-ctas {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pf-vms-livestream-promo-ctas .pf-vms-btn {
    flex: 1;
    min-width: 220px;
}

.pf-vms-livestream-setup {
    background: var(--pf-vms-gray);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.pf-vms-livestream-setup-title {
    margin: 0 0 18px;
    color: #fff1e2;
    font-size: 1.08rem;
}

.pf-vms-setup-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--pf-vms-light-gray);
}

.pf-vms-setup-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pf-vms-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pf-vms-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--pf-vms-shadow);
}

.pf-vms-step-content {
    flex: 1;
}

.pf-vms-step-content h4 {
    color: var(--pf-vms-orange);
    margin: 0 0 10px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-vms-step-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pf-vms-light-orange);
}

.pf-vms-step-title-icon .pf-vms-svg-icon {
    width: 18px;
    height: 18px;
}

.pf-vms-step-content p {
    color: var(--pf-vms-text);
    margin: 0;
    line-height: 1.6;
}

.pf-vms-step-content a {
    color: var(--pf-vms-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pf-vms-step-content a:hover {
    color: var(--pf-vms-light-orange);
    text-decoration: underline;
}

.pf-vms-code {
    background: var(--pf-vms-darker);
    color: var(--pf-vms-orange);
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-top: 10px;
    border-left: 3px solid var(--pf-vms-orange);
    overflow-x: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ℹ️ INFO BOX
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-info-box {
    background: var(--pf-vms-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--pf-vms-orange);
}

.pf-vms-info-box h4 {
    color: var(--pf-vms-orange);
    margin: 0 0 15px 0;
    font-size: 20px;
}

.pf-vms-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-vms-feature-list li {
    color: var(--pf-vms-text);
    padding: 10px 0;
    border-bottom: 1px solid var(--pf-vms-light-gray);
    line-height: 1.6;
}

.pf-vms-feature-list li:last-child {
    border-bottom: none;
}

.pf-vms-feature-list strong {
    color: var(--pf-vms-orange);
}

/* Livestream Features Grid */
.pf-vms-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pf-vms-feature-item {
    text-align: center;
}

.pf-vms-feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.pf-vms-feature-icon-svg {
    font-size: 0;
    color: var(--pf-vms-light-orange);
}

.pf-vms-feature-icon-svg .pf-vms-svg-icon {
    width: 30px;
    height: 30px;
}

.pf-vms-feature-item strong {
    display: block;
    color: var(--pf-vms-orange);
    margin-bottom: 5px;
    font-size: 16px;
}

.pf-vms-feature-item p {
    color: var(--pf-vms-text-muted);
    font-size: 13px;
    margin: 0;
}

.pf-vms-livestream-bottom-ctas {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pf-vms-livestream-bottom-ctas .pf-vms-btn {
    flex: 1;
    min-width: 220px;
}

/* ═══════════════════════════════════════════════════════════════
   💶 KOSTEN TAB
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.pf-vms-cost-card {
    --pf-vms-cost-accent: #ff8c42;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--pf-vms-cost-accent) 45%, #3a312b);
    background: linear-gradient(160deg, rgba(41, 31, 24, 0.96) 0%, rgba(30, 23, 19, 0.96) 100%);
    padding: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.pf-vms-cost-card.is-featured {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--pf-vms-cost-accent) 78%, #f5d7bb);
    box-shadow: 0 14px 30px rgba(255, 140, 66, 0.28);
}

.pf-vms-cost-ribbon {
    position: absolute;
    top: 14px;
    right: -40px;
    transform: rotate(35deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2f1809;
    background: linear-gradient(90deg, #ffd5ac 0%, #ffb675 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    z-index: 2;
}

.pf-vms-cost-topbar {
    border-radius: 999px;
    background: color-mix(in srgb, var(--pf-vms-cost-accent) 80%, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
}

.pf-vms-cost-topbar-logo {
    width: 20px;
    height: 20px;
    display: block;
}

.pf-vms-cost-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #2b1b10;
    background: #ffe3cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.pf-vms-cost-title {
    margin: 14px 0 6px;
    color: #fff4ea;
    font-size: 1.08rem;
}

.pf-vms-cost-subtitle {
    margin: 0 0 12px;
    color: #ffd7b7;
    font-size: 0.86rem;
}

.pf-vms-cost-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pf-vms-cost-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 7px 9px;
    background: rgba(12, 10, 9, 0.28);
}

.pf-vms-cost-feature-text {
    color: #ffe8d4;
    font-size: 0.83rem;
    line-height: 1.35;
    flex: 1;
}

.pf-vms-cost-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: color-mix(in srgb, var(--pf-vms-cost-accent) 72%, #ffe8d4);
    flex-shrink: 0;
}

.pf-vms-cost-check .pf-vms-svg-icon {
    width: 16px;
    height: 16px;
}

.pf-vms-cost-cta {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    border-color: color-mix(in srgb, var(--pf-vms-cost-accent) 72%, #2f251e);
    color: color-mix(in srgb, var(--pf-vms-cost-accent) 72%, #ffe8d4);
}

.pf-vms-cost-card.is-featured .pf-vms-cost-cta {
    color: #2b1a0f;
    border-color: transparent;
}

@media (max-width: 900px) {
    .pf-vms-cost-grid {
        grid-template-columns: 1fr;
    }

    .pf-vms-livestream-bottom-ctas .pf-vms-btn,
    .pf-vms-livestream-promo-ctas .pf-vms-btn {
        min-width: 0;
        width: 100%;
    }

    .pf-vms-cost-ribbon {
        right: -44px;
        min-width: 140px;
        font-size: 0.64rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ✨ FEATURES CARDS
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pf-vms-feature-group {
    margin-bottom: 22px;
}

.pf-vms-feature-group:last-child {
    margin-bottom: 0;
}

.pf-vms-feature-group-title {
    color: #ffe2bf;
    font-size: 1rem;
    margin: 0 0 12px;
    padding-left: 2px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.pf-vms-feature-group-desc {
    color: #d7b89a;
    font-size: 0.86rem;
    margin: -4px 0 14px;
    line-height: 1.45;
    max-width: 70ch;
}

.pf-vms-feature-card {
    background: linear-gradient(180deg, #2a221d 0%, #221c18 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #5b4637;
}

.pf-vms-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 145, 77, 0.35);
    border-color: #ffb57c;
}

.pf-vms-feature-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pf-vms-feature-icon-color, #ffd166);
    background: color-mix(in srgb, var(--pf-vms-feature-icon-color, #ffd166) 20%, rgba(0, 0, 0, 0.05));
    border: 1px solid color-mix(in srgb, var(--pf-vms-feature-icon-color, #ffd166) 55%, #4a3a2f);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.pf-vms-feature-card-icon .pf-vms-svg-icon {
    width: 28px;
    height: 28px;
}

.pf-vms-feature-card-title {
    color: #ffe7cf;
    font-size: 17px;
    margin: 0 0 8px 0;
}

.pf-vms-feature-card-desc {
    color: #ffd8b7;
    font-size: 13px;
    margin: 0;
    line-height: 1.45;
}

.pf-vms-heading-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-vms-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-vms-title-icon-features {
    color: #ffd166;
}

.pf-vms-title-icon-compare {
    color: #7bd389;
}

.pf-vms-compare-head-icon {
    display: inline-flex;
    margin-right: 6px;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   🆚 COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-comparison {
    background: linear-gradient(180deg, #28211d 0%, #211b17 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #5b4738;
    overflow-x: auto;
}

.pf-vms-comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffe6cf;
}

.pf-vms-comparison-table thead {
    background: #1a1512;
}

.pf-vms-comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #ff9f43;
    color: #fff0df;
}

.pf-vms-comparison-table th.pf-vms-blubb {
    color: #ffb56d;
}

.pf-vms-comparison-table th.pf-vms-youtube {
    color: #ff8f8f;
}

.pf-vms-comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffe2c8;
}

.pf-vms-comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.pf-vms-comparison-table tr:hover {
    background: rgba(255, 159, 67, 0.14);
}

.pf-vms-comparison-table td.pf-vms-blubb {
    font-weight: 600;
    color: #ffd2a0;
}

.pf-vms-comparison-table td.pf-vms-youtube {
    color: #ffc0c0;
}

.pf-vms-compare-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    padding: 4px 10px;
    margin-right: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
    border: 1px solid transparent;
}

.pf-vms-compare-status .pf-vms-svg-icon {
    width: 14px;
    height: 14px;
}

.pf-vms-compare-status-good {
    color: #173722;
    background: #91e3a6;
    border-color: #5ebb78;
}

.pf-vms-compare-status-warn {
    color: #4a2d00;
    background: #ffd166;
    border-color: #f2b94b;
}

.pf-vms-compare-status-bad {
    color: #4b1010;
    background: #ffb3b3;
    border-color: #e97d7d;
}

/* ═══════════════════════════════════════════════════════════════
   📣 CALL TO ACTION
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-cta {
    background: var(--pf-vms-gradient);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--pf-vms-shadow-heavy);
}

.pf-vms-cta h3 {
    color: white;
    font-size: 28px;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pf-vms-cta-icon {
    display: inline-flex;
    color: #ffe29d;
}

.pf-vms-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-vms-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin: 0 0 25px 0;
}

.pf-vms-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   📱 ACTIONS
   ═══════════════════════════════════════════════════════════════ */
.pf-vms-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   📱 RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header {
        min-height: 0;
        height: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }

    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header::before,
    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header::after {
        display: none;
    }

    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header-left,
    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header-right {
        display: none;
    }

    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-header-compact-logo {
        display: inline-flex;
        position: fixed;
        top: 10px;
        right: 10px;
        left: auto;
        transform: none;
        z-index: 240;
        border-radius: 999px;
        overflow: hidden;
    }

    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-footer {
        display: none;
    }

    .pf-vms-box.is-mobile-shell-collapsed .pf-vms-to-top-btn {
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .pf-vms-topnav-spacer {
        height: 0;
    }

    .pf-vms-box.overlay-mode {
        width: 100%;
        height: 100%;
        max-height: 100%;
        --pf-overlay-shell-box-radius: clamp(10px, 3vw, 14px);
        border-radius: var(--pf-overlay-shell-box-radius, clamp(10px, 3vw, 14px));
        margin: 0;
    }

    .pf-vms-header,
    .pf-vms-footer {
        padding: clamp(6px, 2.2vw, 8px) clamp(7px, 2.6vw, 10px);
    }

    .pf-vms-header {
        overflow: visible;
    }

    .pf-vms-header {
        align-items: center;
        gap: clamp(6px, 2vw, 8px);
        flex-direction: row;
        min-height: clamp(50px, 11vw, 56px);
    }

    .pf-vms-header-left {
        gap: clamp(6px, 2vw, 8px);
        min-width: 0;
    }

    .pf-drag-handle {
        font-size: clamp(18px, 5vw, 20px);
    }

    .pf-vms-icon-wrapper {
        width: clamp(34px, 8.5vw, 40px);
        height: clamp(34px, 8.5vw, 40px);
        border-radius: clamp(9px, 2.2vw, 10px);
    }

    .pf-vms-title-section {
        min-width: 0;
    }

    .pf-vms-title {
        font-size: clamp(14px, 5vw, 20px);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pf-vms-meta {
        display: none;
    }

    .pf-vms-header-right {
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }

    .pf-vms-user {
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        flex: 0 0 40px;
        padding: 0;
        gap: 0;
        justify-content: center;
        align-items: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: none;
        box-sizing: border-box;
        aspect-ratio: 1 / 1;
        overflow: visible;
    }

    .pf-vms-user-name,
    .pf-vms-user-license,
    .pf-vms-bubu-pill {
        display: none;
    }

    .pf-vms-user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 999px;
    }

    .pf-vms-btn.pf-vms-btn-dashboard {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        flex: 0 0 40px;
        padding: 0;
        gap: 0;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        aspect-ratio: 1 / 1;
        overflow: visible;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: none;
    }

    .pf-vms-btn.pf-vms-btn-dashboard .pf-vms-dash-label {
        display: none;
    }

    .pf-vms-btn.pf-vms-btn-dashboard .pf-vms-dash-icon {
        width: 26px;
        height: 26px;
    }

    .pf-vms-toast-stack {
        right: 10px;
        left: 10px;
        top: 10px;
        width: auto;
    }

    .pf-vms-toast {
        padding: 9px 10px;
    }

    .pf-vms-toast-text {
        font-size: 0.75rem;
    }

    .pf-vms-btn.pf-vms-btn-dashboard .pf-vms-dash-logo {
        width: 26px;
        height: 26px;
        display: block;
        margin: 0 auto;
        border-radius: 999px;
        object-fit: contain;
    }

    .pf-vms-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        padding-bottom: calc(clamp(6px, 2.2vw, 8px) + env(safe-area-inset-bottom));
        font-size: clamp(9.5px, 2.7vw, 11px);
        gap: 4px;
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .pf-vms-footer-left {
        display: none;
    }

    .pf-vms-footer-right {
        display: none;
    }

    .pf-vms-footer-right span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pf-vms-shimmer-btn {
        width: clamp(30px, 7.5vw, 34px);
        height: clamp(30px, 7.5vw, 34px);
        padding: 0;
        border-radius: clamp(8px, 2vw, 9px);
        font-size: clamp(12px, 3.2vw, 14px);
    }

    .pf-vms-footer-center {
        display: flex;
        justify-content: center;
        max-width: 100%;
        text-align: center;
    }

    .pf-vms-footer-runtime {
        max-width: 100%;
        text-align: center;
    }

    .pf-vms-dashboard-submenu {
        right: 0;
        min-width: 190px;
    }

    .pf-vms-body {
        padding: 6px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        border-left-width: 0;
        border-right-width: 0;
        scrollbar-color: var(--pf-vms-orange) #2a2a2a;
    }

    .pf-vms-info-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pf-vms-info-section {
        padding: 10px;
        max-height: min(300px, 44vh);
    }

    .pf-vms-info-description {
        padding: 10px;
    }

    .pf-vms-desc {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .pf-vms-info-block {
        padding: 9px 10px;
        gap: 6px;
    }

    .pf-vms-info-block label,
    .pf-vms-info-block .pf-vms-info-label,
    .pf-vms-info-description label,
    .pf-vms-info-description .pf-vms-info-label {
        font-size: 0.64rem;
        margin-bottom: 3px;
    }

    .pf-vms-value {
        font-size: 0.82rem;
    }

    .pf-vms-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 6px;
        padding: 4px 6px 0;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 6px;
        position: relative;
        border-bottom: none;
        box-shadow: none;
    }

    .pf-vms-tabs::-webkit-scrollbar {
        display: none;
    }

    .pf-vms-tab {
        flex: 0 0 auto;
        min-width: clamp(46px, 12vw, 54px);
        width: clamp(46px, 12vw, 54px);
        height: clamp(40px, 10vw, 46px);
        border-radius: 12px 12px 0 0;
        margin-bottom: -2px;
        border-bottom-color: transparent;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        scroll-snap-align: start;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
    }

    .pf-vms-tab-label {
        display: none;
    }

    .pf-vms-tab::after {
        display: none;
    }

    .pf-vms-tab:hover:not(.active) {
        transform: none;
        margin-bottom: -2px;
        filter: brightness(1.04);
    }

    .pf-vms-tab.active {
        border-bottom-color: var(--pf-vms-dark);
        margin-bottom: -2px;
        box-shadow: none;
        transform: none;
    }

    .pf-vms-tab-content {
        padding: 10px;
        border-radius: 0 0 10px 10px;
    }

    .pf-vms-render-time {
        display: none;
    }

    .pf-vms-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-vms-video-grid,
    .pf-vms-category-grid,
    .pf-vms-features-grid {
        grid-template-columns: 1fr;
    }
}
