/**
 * EOA Livestream Player V2 Styles
 */

.eoa-livestream-v2-wrapper {
    position: relative;
    width: 100%;
}

.eoa-livestream-v2-container {
    position: relative;
    width: 100%;
    height: 413px;
    transition: all 0.3s ease;
}

.eoa-livestream-v2-container.livestream-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    z-index: 999999 !important;
    background: #000 !important;
}

.eoa-livestream-v2-container.livestream-fullscreen .eoa-livestream-v2-iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
}

.eoa-livestream-v2-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Fullscreen toggle reuses the same class names from V1 */
.eoa-livestream-v2-container .eoa-fullscreen-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1;
    z-index: 10;
    transition: background 0.2s ease;
}

.eoa-livestream-v2-container .eoa-fullscreen-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

.eoa-livestream-v2-container .eoa-fullscreen-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.eoa-livestream-v2-container.livestream-fullscreen .eoa-fullscreen-toggle {
    top: 20px;
    right: 20px;
}
