/**
 * eu-artplayer.css
 * 子主题 ArtPlayer 播放器容器样式。
 * 通过 padding-bottom 比例占位，ArtPlayer 绝对定位填满。
 * --scale-height 由 PHP 注入（百分比，未设置时默认 16:9 = 56.25%）。
 */
.eu-artplayer-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: var(--scale-height, 56.25%);
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.eu-artplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.eu-artplayer .art-video-player {
    width: 100% !important;
    height: 100% !important;
}
