body {
    margin: 0;
    font-family: sans-serif;
    background-color: #151515;
    color: white;
}

header {
    padding: 20px;
    text-align: center;
}

.stream-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    padding: 10px;
}

.video-column {
    flex: 3;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}

.chat-column {
    flex: 1;
    min-width: 300px;
    height: 600px;
}

.chat-column iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

.video-item img {
    width: 168px;
    height: 94px;
    object-fit: cover;
    flex-shrink: 0;
}

.video-item span {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}
.video-responsive {
    position: relative;
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e10600;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .stream-container {
        grid-template-columns: 1fr; 
    }
    
    .chat-column {
        height: 400px;
    }
}