video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.stream-button-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

button.btn.stream-button {
    background-color: #1d4ed8; /* Blue Color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

button.btn.stream-button:hover {
    background-color: #1e3a8a; /* Darker Blue */
}
.main-video-wrapper {
    width: 60%;
    margin: auto;
}
