.main-layout {

    display: flex;

    gap: 20px;
}

/*
左侧播放器区域
*/
.monitor-container {

    flex: 1;
}

.monitor-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;
}

.monitor-player {

    width: calc(30% - 10px);
    height: calc(30% - 10px);

    aspect-ratio: 1 / 1;

    background: #000;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid #00c2ff;

    position: relative;

    min-width: 300px;
}

.monitor-player video {

    width: 100% !important;

    height: 110% !important;

    object-fit: cover !important;

    object-position: 25% center !important;

    position: absolute !important;

    top: 0;
    left: 0;
}

/*
右侧在线流列表
*/
.stream-sidebar {

    width: 300px;

    background: #111;

    border-radius: 10px;

    padding: 15px;

    color: white;

    height: fit-content;
}

.stream-sidebar h3 {

    margin-top: 0;

    margin-bottom: 15px;

    color: #00c2ff;
}

.stream-list {

    list-style: none;

    padding: 0;

    margin: 0;
}

.stream-list li {

    padding: 10px;

    margin-bottom: 10px;

    background: #1d1d1d;

    border-radius: 8px;

    word-break: break-all;

    border-left: 3px solid #00c2ff;
}

.stream-count {

    margin-bottom: 15px;

    color: #999;
}