/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video Lobby Styles */
.dynamic_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.video_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video_item {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video_item h2 {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Header and Footer styling (same as Promotions) */
.tl_header {
    background-color: #000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tl_logo img {
    width: 150px;
}

.main_nav ul {
    list-style: none;
    display: flex;
}

.main_nav ul li {
    margin: 0 15px;
}

.main_nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer_content {
    background-color: #333;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.footer_nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.footer_nav ul li {
    margin: 0 10px;
}

.footer_nav ul li a {
    color: #fff;
    text-decoration: none;
}

.banner-box {
    background-image: url('background-mobile.webp');
}

@media all and (min-width: 992px) {
    .banner-box {
        background-image: url('background.webp');
    }
}

.video-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.video-item {
    margin-bottom: 20px;
    text-align: center;
    cursor: pointer;
    color: #56eb7c;
}

.video-item img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

#nav-box div {
    display: inline-block;
}

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    font-size: 20px;
    color: #56eb7c;
    font-weight: 900;
    text-transform: capitalize;
    gap: 6px;
}

.breadcrumb a {
    text-decoration: none;
    color: #56eb7c;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Custom Styles for Buttons Below 600px */
@media (max-width: 600px) {
    .btn-custom {
        font-size: 1rem;
        padding: 5px 10px;
        height: 40px;
        width: 145px;
    }
}

@media (min-width: 600px) {
    .btn-custom {
        width: 180px;
        height: 48px;
    }
}

h4 {
    margin-top: 4px;
}

/* Add this style for the Back button */
.backButtonContainer {
    position: absolute;
    top: 72px;
    right: 10px;
}

.backButton {
    background-color: #56eb7c;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: #3b1568;
    font-size: 18px;
    font-weight: 900;
}

.backButton:hover {
    background-color: #45c86d;
}