/* Reset & Trigger Styles */
.lvp-container {
    width: 100%;
}

.lvp-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    line-height: 1;
    overflow: hidden;
}

/* Entfernt den blauen Hintergrund vom Icon */
.lvp-icon {
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
}

.lvp-trigger:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Modal Overlay */
.lvp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lvp-modal-content {
    position: relative;
    width: 90%;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lvp-close {
    position: absolute;
    top: -45px; right: -10px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
}

.lvp-overlay iframe, 
.lvp-overlay video {
    width: 100%; height: 100%;
    display: block;
}