.channel-card {
    background: white;
    border: 1px solid #dee2e6;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.channel-info h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
}

.channel-url {
    color: #666;
    font-family: monospace;
    font-size: 0.85em;
    word-break: break-all;
}

.play-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9em;
}

.play-btn:hover {
    background: #2980b9;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: #000;
    position: relative;
    border: 1px solid #444;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 5px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
}