    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e1e1e;
    padding: 30px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust to center the logo */
    max-width: 180px; /* Ensure the logo is not too large */
}

.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    display: none; /* Hide on desktop */
}

.container {
    display: flex;
    flex: 1;
    width: 100%;
    margin-top: 160px; /* Adjusted to leave space for header and story-bar */
}

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 250px;
    height: 100%;
    background: #1e1e1e;
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.sidebar.active {
    transform: translateX(0); /* Sidebar is visible */
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px 0;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar li:hover {
    color: #ff9800;
}

.sidebar .extra-links {
    margin-bottom: 20px;
}

.sidebar .extra-links a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    border: 2px solid #ff9800;
    border-radius: 25px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.sidebar .extra-links a:hover {
    background-color: #ff9800;
    color: #121212;
}

.main-content {
    flex: 1;
    padding: 20px;
    margin-left: 250px; /* Offset for sidebar */
    margin-top: 60px; /* Adjusted to fit content below story bar */
}

.story-bar {
    display: flex;
    gap: 15px;
    padding: 15px;
    overflow-x: auto;
    white-space: nowrap;
    background: #1e1e1e;
    position: fixed;
    top: 60px;
    left: 270px;
    width: calc(100% - 250px);
    z-index: 1001;
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
}

.story-bar::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
}

/* Smooth scrolling effect for mobile */
.story-bar {
    scroll-snap-type: x mandatory;
}

.video-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff9800;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
    scroll-snap-align: start;
    background-color: black;
    position: relative;
}

.video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .story-bar {
        left: 0;
        width: 100%;
        padding: 10px;
        gap: 10px;
    }

    .video-circle {
        width: 70px;
        height: 70px;
    }
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.video-item {
     position: relative;
}
.video-thumbnail {
    width: 100%;
    height: auto;
    display: block; /* Show thumbnail by default */
}


.video-item:hover .video-thumb {
    display: block; /* Show video on hover */
}
.video-thumb {
    display: none; /* Hide video by default */
    width: 100%;
    height: auto;
}

.ad-banner {
    background-color: #ff9800;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
    font-size: 24px;
    margin: 20px 0;
}

/* Mobile and Tablet Styles */
@media (max-width: 768px) {
    /* Show the hamburger menu button */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 50px;
        font-size: 30px;
        cursor: pointer;
    }

    /* Initially hide Sidebar on mobile */
    .sidebar {
        position: fixed;
        top: 60px;
        left: -285px; /* Fully hide sidebar off-screen */
        width: 250px;
        background: #1e1e1e;
        padding: 20px;
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    /* Show Sidebar when Active */
    .sidebar.active {
        transform: translateX(285px); /* Bring it into view */
        z-index: 1002;
    }

    .container {
        flex-direction: column;
        margin-top: 120px;
    }

    .main-content {
        margin-left: 0;
        padding: 10px;
    }

    .story-bar {
        width: 100%;
        left: 0;
        margin-left: 0;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Hide the hamburger menu on desktop */
    }

    .sidebar {
        left: 0; /* Make sidebar visible on desktop */
        transform: translateX(0); /* Sidebar is always visible on desktop */
    }

    .container {
        margin-top: 160px; /* Adjusted to leave space for header and story-bar */
    }
}

/* Modal Styles */
.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Sit on top of everything else */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background (50% opacity) */
    justify-content: center;
    align-items: center;
}

/* Modal content */
.modal-content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.6); 
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video Styles */
#modalVideo {
    width: 90%; /* Make video take up 90% of the screen width */
    height: 90%; /* Make video take up 90% of the screen height */
    object-fit: contain; /* Ensures the video maintains aspect ratio */
    border-radius: 8px;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background-color: transparent;
    border: 3px solid #ff9800; /* Orange border */
    border-radius: 10%; /* Make the border rounded */
    padding: 5px; /* Add some padding for better appearance */
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ff9800;
    border-color: #ff9800; /* Change border color to orange on hover/focus */
}

.no-style {
    text-decoration: none;
    color: inherit;
}

.no-style:hover {
    text-decoration: none;
}
#loadMoreBtn {
    display: block;
    width: 150px;
    margin: 20px auto;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #ff9800;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}
    </style>