/**
 * SV Live Stream Styling
 * Flat Design passend zum Twenty Twenty-Four Theme
 */

.sv-live-stream-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
}

/* Controls Container - links oben (nur Vollbild-Button) */
.sv-live-stream-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
    display: none;
}

.sv-live-stream-container.online .sv-live-stream-controls {
    display: block;
}

/* Vollbild-Button - links oben */
.sv-live-stream-fullscreen {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    height: 34px;
}

.sv-live-stream-fullscreen:hover {
    background: rgba(13, 152, 186, 0.9);
}

.sv-live-stream-fullscreen svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* LIVE Indicator - rechts oben */
.sv-live-stream-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    height: 34px;
}

.sv-live-stream-container.online .sv-live-stream-indicator {
    display: flex;
}

.sv-live-stream-dot {
    width: 10px;
    height: 10px;
    background: #0D98BA;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        background: #0D98BA;
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
        background: #0000FF;
    }
}

.sv-live-stream-text {
    color: black;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Wrapper */
.sv-live-stream-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder - nur sichtbar wenn offline */
.sv-live-stream-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.sv-live-stream-container.online .sv-live-stream-placeholder {
    display: none;
}

.sv-live-stream-message {
    font-size: 1.1rem;
    margin: 0;
    color: #666;
    text-align: center;
}

/* Bild - nur sichtbar wenn online */
.sv-live-stream-image {
    display: none;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.sv-live-stream-container.online .sv-live-stream-image {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .sv-live-stream-container {
        margin: 1.5rem auto;
    }
    
    .sv-live-stream-controls {
        top: 10px;
        left: 10px;
    }
    
    .sv-live-stream-fullscreen {
        padding: 6px 10px;
        font-size: 0.85rem;
        height: 30px;
    }
    
    .sv-live-stream-fullscreen span {
        display: none;
    }
    
    .sv-live-stream-indicator {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        height: 30px;
    }
    
    .sv-live-stream-wrapper {
        min-height: 300px;
    }
    
    .sv-live-stream-placeholder {
        min-height: 300px;
    }
    
    .sv-live-stream-message {
        font-size: 1rem;
    }
}
