/* ================================================
   VTPlay Pro — Stylesheet v2.0
   ================================================ */

/* ================================================
   BLINDAGEM CONTRA ESTILOS DE TEMA
   Abordagem cirúrgica — sem all:revert que quebra layout
   ================================================ */

/* box-sizing universal dentro do player */
.vtplay-pro-wrapper *,
.vtplay-pro-wrapper *::before,
.vtplay-pro-wrapper *::after {
    box-sizing: border-box !important;
}

/* SVG: temas como Astra/OceanWP fazem svg { max-width:100%; height:auto }
   o que achata ícones — blindamos com !important
   NÃO forçamos display aqui para não sobrescrever style="display:none" do JS */
.vtplay-pro-wrapper svg {
    max-width: none !important;
    max-height: none !important;
    vertical-align: middle;
    overflow: visible;
}

/* <p> herda margin-bottom do tema (geralmente 1em ou 1.5em) */
.vtplay-pro-wrapper p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border: 0;
    background: none;
}

/* <strong> herda color/font-size de temas que estilizam strong globalmente */
.vtplay-pro-wrapper strong {
    font-weight: 700;
    font-size: inherit !important;
    color: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    text-transform: none;
}

/* <button> base: reset de aparência nativa — cada botão reaplica o que precisa */
.vtplay-pro-wrapper button {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: inherit;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    text-decoration: none !important;
    letter-spacing: normal;
    text-transform: none !important;
    word-spacing: normal;
}

/* Utilitário de ocultação — !important garante imunidade contra temas */
.vtplay-hidden {
    display: none !important;
}

.vtplay-pro-wrapper {
    display: block;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    line-height: 1;
    color: #fff;
}

.vtplay-pro-container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #000;
}

/* iframe ocupa tudo menos a barra de controles */
.vtplay-iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: 0;
    z-index: 1;
    display: block;
    pointer-events: none; /* impede cliques diretos no iframe — barra fica clicável */
}

.vtplay-pro-container.vtplay-fullscreen .vtplay-iframe {
    top: -60px;
    height: calc(100% + 120px);
}

/* ---------- Thumbnail Overlay ---------- */
.vtplay-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 20;
    cursor: pointer;
    overflow: hidden;
}

.vtplay-thumbnail {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    pointer-events: none;
}

.vtplay-overlay:hover .vtplay-thumbnail {
    transform: translate(-50%, -50%) scale(1.04);
    filter: brightness(0.78);
}

.vtplay-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ---------- Play Button ---------- */
/* ---------- Play Button ---------- */
.vtplay-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    z-index: 10;
    /* Reset total do elemento <button> */
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    background-color: transparent !important;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    /* Tamanho sempre quadrado perfeito */
    width: clamp(64px, 10vw, 96px);
    height: clamp(64px, 10vw, 96px);
    aspect-ratio: 1 / 1;
    /* Sem dimensão relativa que quebre o ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1);
    --play-color: #FF0000;
}

/* Reset absoluto de todos os estados do button nativo */
.vtplay-play-btn:hover,
.vtplay-play-btn:focus,
.vtplay-play-btn:focus-visible,
.vtplay-play-btn:focus-within,
.vtplay-play-btn:active,
.vtplay-play-btn:visited {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.vtplay-play-btn:hover  { transform: translate(-50%, -55%) scale(1.1); }
.vtplay-play-btn:active { transform: translate(-50%, -55%) scale(0.95); }

/* ---- Círculo principal do play ---- */
.vtplay-play-circle {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--play-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 0 0 3px rgba(255,255,255,0.18),
        0 6px 28px rgba(0,0,0,0.55),
        0 2px 8px rgba(0,0,0,0.4);
    transition: background 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.vtplay-play-btn:hover .vtplay-play-circle {
    box-shadow:
        0 0 0 4px rgba(255,255,255,0.28),
        0 10px 40px rgba(0,0,0,0.65),
        0 0 24px color-mix(in srgb, var(--play-color) 50%, transparent);
}

.vtplay-play-circle svg {
    width: 45%;
    height: 45%;
    margin-left: 5%; /* optical centering of triangle */
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* ---- Pulse rings ---- */
.vtplay-pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2.5px solid var(--play-color);
    transform: translate(-50%, -55%) scale(1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Pulse only plays when button has .has-pulse */
.vtplay-play-btn.has-pulse .vtplay-pulse-ring-1 {
    animation: vtplay-pulse 2.4s ease-out infinite;
}

.vtplay-play-btn.has-pulse .vtplay-pulse-ring-2 {
    animation: vtplay-pulse 2.4s ease-out infinite 0.8s;
}

@keyframes vtplay-pulse {
    0%   { transform: translate(-50%, -55%) scale(1);    opacity: 0.7; }
    70%  { transform: translate(-50%, -55%) scale(1.75); opacity: 0;   }
    100% { transform: translate(-50%, -55%) scale(1.75); opacity: 0;   }
}

/* Pausa pulse no hover para não competir com a interação */
.vtplay-play-btn.has-pulse:hover .vtplay-pulse-ring {
    animation-play-state: paused;
}

/* ---- Ripple on click ---- */
.vtplay-play-ripple {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.vtplay-play-btn.ripple-active .vtplay-play-ripple {
    width: 230%; height: 230%;
    opacity: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

/* ---------- Spinner ---------- */
.vtplay-loading-spinner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 25;
    width: 44px; height: 44px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vtplay-spin 0.75s linear infinite;
    pointer-events: none;
}

@keyframes vtplay-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ---------- Título ---------- */
.vtplay-pro-title {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 15;
    padding: 14px 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
    color: #fff;
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

/* ================================================
   CAMADA DE CLIQUE (toggle play/pause)
   ================================================ */
.vtplay-click-area {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: calc(100% - 52px); /* não sobrepõe a barra */
    z-index: 2; /* acima do iframe (z:1), abaixo da tela de pausa (z:10) */
    cursor: pointer;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

/* ================================================
   TELA DE PAUSA
   ================================================ */
.vtplay-pause-screen {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.vtplay-pro-container.is-paused .vtplay-pause-screen,
.vtplay-pro-container.is-ended  .vtplay-pause-screen {
    opacity: 1;
    pointer-events: auto;
}

.vtplay-pause-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: vtplay-pop-in 0.22s ease;
}

@keyframes vtplay-pop-in {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}

.vtplay-pause-icon svg {
    width: clamp(36px, 6vw, 56px) !important;
    height: clamp(36px, 6vw, 56px) !important;
    max-width: none !important;
    display: block !important;
    opacity: 0.8;
    flex-shrink: 0;
}

.vtplay-pro-container.is-ended .vtplay-pause-icon svg rect { display: none; }

.vtplay-pause-label {
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,0.7) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: clamp(11px, 1.6vw, 14px) !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    border: none !important;
    background: none !important;
}

.vtplay-pause-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.vtplay-pause-buttons button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    padding: 13px 28px;
    border: none !important;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: clamp(14px, 2vw, 16px) !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
    line-height: 1 !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    box-shadow: none;
    outline: none;
    vertical-align: middle;
}

.vtplay-pause-buttons button svg {
    width: 15px; height: 15px;
    flex-shrink: 0;
}

.vtplay-pause-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    filter: brightness(1.1);
}

.vtplay-pause-buttons button:active {
    transform: translateY(0) scale(0.97);
}

/* Continuar — oculto por padrão, aparece só em is-paused (não em is-ended) */
.vtplay-btn-resume {
    display: none !important;
}
.vtplay-pro-container.is-paused .vtplay-btn-resume {
    display: inline-flex !important;
    background: var(--accent, #FF0000);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* is-ended tem prioridade — esconde Continuar mesmo se is-paused for aplicado antes */
.vtplay-pro-container.is-ended .vtplay-btn-resume {
    display: none !important;
}

/* Reiniciar */
.vtplay-btn-restart {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.28) !important;
    backdrop-filter: blur(6px);
}

.vtplay-btn-restart:hover {
    background: rgba(255,255,255,0.22) !important;
}

/* ================================================
   BARRA DE CONTROLES CUSTOMIZADA
   ================================================ */
.vtplay-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 52px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    user-select: none;
}

/* Oculta quando overlay está presente */
.vtplay-pro-container:has(.vtplay-overlay) .vtplay-controls {
    opacity: 0;
    pointer-events: none;
}

/* Oculta durante reprodução — reaparece no hover ou pausa */
.vtplay-pro-container.is-playing .vtplay-controls {
    opacity: 0;
    pointer-events: none;
}

.vtplay-pro-container.is-playing:hover .vtplay-controls,
.vtplay-pro-container.is-playing.show-controls .vtplay-controls {
    opacity: 1;
    pointer-events: auto;
}

/* Cursor some junto com a barra durante reprodução */
.vtplay-pro-container.is-playing.hide-cursor {
    cursor: none;
}

/* ---------- Play/Pause ---------- */
.vtplay-ctrl-playpause {
    background: none !important;
    border: none !important;
    padding: 4px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    text-decoration: none;
    letter-spacing: normal;
    flex-shrink: 0;
    outline: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.vtplay-ctrl-playpause svg { width: 20px !important; height: 20px !important; max-width: none !important; flex-shrink: 0; }
.vtplay-ctrl-playpause:hover { opacity: 0.8; transform: scale(1.12); }

/* Ícones de play/pause controlados por classe — imune a style="" override de temas */
.vtplay-ctrl-playpause .icon-pause        { display: none !important; }
.vtplay-ctrl-playpause.is-playing .icon-play  { display: none !important; }
.vtplay-ctrl-playpause.is-playing .icon-pause { display: block !important; }

/* ---------- Time ---------- */
.vtplay-ctrl-time {
    color: rgba(255,255,255,0.88);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    min-width: 72px;
    line-height: 1;
    text-transform: none;
    text-decoration: none;
}

/* ---------- Progress ---------- */
.vtplay-progress-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: height 0.15s ease;
}

.vtplay-progress-track:hover { height: 6px; }

.vtplay-progress-buffer {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: rgba(255,255,255,0.28);
    border-radius: 4px;
    width: 0%;
    pointer-events: none;
    transition: width 0.5s linear;
}

.vtplay-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--accent, #FF0000);
    border-radius: 4px;
    width: 0%;
    pointer-events: none;
    box-shadow: 0 0 6px var(--accent, #FF0000);
    will-change: width;
}

.vtplay-progress-thumb {
    position: absolute;
    top: 50%;
    width: 13px; height: 13px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    left: 0%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease;
    box-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.vtplay-progress-track:hover .vtplay-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- Volume ---------- */
.vtplay-ctrl-volume-group {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.vtplay-ctrl-mute {
    background: none !important;
    border: none !important;
    padding: 4px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    text-decoration: none;
    letter-spacing: normal;
    outline: none;
    transition: opacity 0.15s;
}

.vtplay-ctrl-mute svg { width: 18px !important; height: 18px !important; max-width: none !important; flex-shrink: 0; }
.vtplay-ctrl-mute:hover { opacity: 0.75; }

/* Ícones de mute/unmute */
.vtplay-ctrl-mute .icon-muted          { display: none !important; }
.vtplay-ctrl-mute.is-muted .icon-vol   { display: none !important; }
.vtplay-ctrl-mute.is-muted .icon-muted { display: block !important; }

.vtplay-volume-track {
    width: 64px;
    height: 3px;
    background: rgba(255,255,255,0.22);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: height 0.15s ease;
}

.vtplay-volume-track:hover { height: 5px; }

.vtplay-volume-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 100%;
    pointer-events: none;
}

.vtplay-volume-thumb {
    position: absolute;
    top: 50%;
    width: 11px; height: 11px;
    background: #fff;
    border-radius: 50%;
    left: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease;
}

.vtplay-volume-track:hover .vtplay-volume-thumb {
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- Fullscreen ---------- */
.vtplay-ctrl-fullscreen {
    background: none !important;
    border: none !important;
    padding: 4px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    text-decoration: none;
    letter-spacing: normal;
    flex-shrink: 0;
    outline: none;
    transition: opacity 0.15s, transform 0.15s;
}

.vtplay-ctrl-fullscreen svg { width: 18px !important; height: 18px !important; max-width: none !important; flex-shrink: 0; }
.vtplay-ctrl-fullscreen:hover { opacity: 0.75; transform: scale(1.12); }

/* Ícones de fullscreen */
.vtplay-ctrl-fullscreen .icon-fs-exit          { display: none !important; }
.vtplay-ctrl-fullscreen.is-fullscreen .icon-fs-enter { display: none !important; }
.vtplay-ctrl-fullscreen.is-fullscreen .icon-fs-exit  { display: block !important; }

/* ---------- Fullscreen state (API nativa + CSS fallback iOS) ---------- */
.vtplay-pro-container.vtplay-fullscreen {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    padding-bottom: 0 !important;
    border-radius: 0 !important;
    z-index: 99999;
}

/* CSS fullscreen: bloqueia scroll da página */
.vtplay-body-fs {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* No fullscreen a barra fica sempre visível — toque para esconder/mostrar */
.vtplay-pro-container.vtplay-fullscreen .vtplay-controls,
.vtplay-pro-container.vtplay-fullscreen.is-playing .vtplay-controls {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* No CSS fullscreen o iframe ocupa 100% da altura disponível menos a barra */
.vtplay-pro-container.vtplay-css-fullscreen .vtplay-iframe {
    top: 0 !important;
    height: 100% !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .vtplay-ctrl-volume-group { display: none; }
    .vtplay-ctrl-time { font-size: 11px; min-width: 60px; }
    .vtplay-controls { gap: 5px; padding: 0 8px; }
    .vtplay-pause-buttons button { padding: 9px 16px; font-size: 12px; }
}

/* Mobile: esconde play customizado e botão fullscreen */
@media (hover: none) and (pointer: coarse) {
    .vtplay-overlay .vtplay-play-btn { display: none !important; }
    .vtplay-ctrl-fullscreen           { display: none !important; }
}

/* ================================================
   BANNER DE RETOMADA (localStorage)
   ================================================ */
.vtplay-resume-banner {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 30;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.vtplay-resume-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.vtplay-resume-banner-text {
    color: rgba(255,255,255,0.85) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vtplay-resume-banner-text strong {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    font-family: inherit !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
}

.vtplay-resume-banner-actions {
    display: flex;
    gap: 8px;
}

.vtplay-resume-banner-actions button {
    padding: 6px 14px;
    border: none !important;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
    line-height: 1 !important;
    outline: none;
    box-shadow: none;
}

.vtplay-resume-banner-actions button:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.vtplay-resume-banner-yes {
    background: var(--accent, #FF0000);
    color: #fff;
}

.vtplay-resume-banner-no {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2) !important;
}

@media (max-width: 480px) {
    .vtplay-resume-banner {
        flex-direction: column;
        gap: 10px;
        width: calc(100% - 32px);
        white-space: normal;
        text-align: center;
        bottom: 58px;
    }
    .vtplay-resume-banner-actions { justify-content: center; }
}

/* ================================================
   LOCK SEEK — bloqueio de adiantamento
   ================================================ */

/* Zona não assistida da barra fica com cursor bloqueado */
.vtplay-pro-container[data-lock-seek="1"] .vtplay-progress-track {
    cursor: pointer;
}

/* Toast de aviso */
.vtplay-lock-toast {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    z-index: 35;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.vtplay-lock-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vtplay-lock-toast svg {
    width: 15px !important;
    height: 15px !important;
    max-width: none !important;
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .vtplay-lock-toast { font-size: 12px; top: 62px; }
}
