.sidebar {
  width: 255px;
  height: 100vh;
  background-color: #000;
  color: white;
  position: fixed;
  top: 0;
  left: -250px; /* Start off-screen */
  transition: left 0.3s ease;
  box-sizing: border-box;
  z-index:999;
}

.sidebar.open {
  left: 0; /* Move into view */
}

.icon {
font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    display: inline-block;
    position: relative;
    transition: all .4s;
    place-content: center;
    transform: translateY(2px);
}

.icon.open {
  color:red;
}

/* Full-screen popup styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
  justify-content: center;
  align-items: center;
  z-index: 2000; /* Above everything else */
}

.popup.active {
  display: flex; /* Show popup when active */
}

.popup-content {
  border-radius: 10px;
  text-align: center;
  max-width:450px;
}

.top-0{
    top:0;
}
.csutom-mt{
        z-index: 9999;
    margin-top: 5px;
}
.logo-sidebar{
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #9f9f9f2b;
}

.logo-sidebar img{
    width:150px;
}

.sidebar-content{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height: calc(100vh - 74px);
        overflow: overlay;
}
.sidebar-nav{
     display:flex;
    flex-direction:column;
    gap:10px;
    font-size:14px;
}
.sidebar-nav a{
    margin-inline: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    position:relative;
    color:#fff;

}
.sidebar-nav a.active{
     background: #262B2E;
}
.sidebar-nav a:hover{
    background:#262b2e8f;
    
}

.nav-count{
        position: absolute;
    right: 12px;
    width: 20px;
    height: 20px;
    background: #F44336;
    border-radius: 4px;
    display: grid;
    place-content: center;
    font-size: 13px;
    color: #fff;
}
.sidebar-footer{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-bottom:16px;
}

.sidebar-footer a{
    margin-inline: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    position:relative;
    color:#fff;
}
.sidebar-footer a:hover{
    background:#262b2e8f;
}

.col-img{
    position: relative;
}

.rating{
    position: absolute;
    top: 16px;
    left: 16px;
    background: #00000052;
    width: 32px;
    height: 32px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid var(--bs-primary);
}
.btn-bookmark{
        position: absolute;
    top: 16px;
    right: 16px;
    background: #333;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: grid
;
    place-content: center;
    font-size: 14px;
}

.col-title{
        font-size: 1.25em;
    font-weight: 500;
    line-height: 1.75em;
    margin-bottom: 0;
}
.icons{
    display:flex;
}
.s-icon{
        display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
}
.s-icon .t{
    font-size:13px;
}
.icon-circle{
        width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    color: #111;
    display: grid
;
    place-content: center;
}
.icon-circle span{

        background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid
;
    place-content: center;
    color: #e5bb2e;
}
.btn-play{
	text-transform: uppercase;
    border: unset;
    position: relative;
    transition: all 250ms;
    overflow: hidden;
    font-weight:500;
}
.btn-play::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 background-color: #ddd;
 z-index: -1;
 transition: all 250ms
}

.btn-play:hover {
 color: #111 !important;
}

.btn-play:hover::before {
 width: 100%;
}
@media(max-width:500px){
.icons {
    display: flex
;
    justify-content: space-between;
}
.s-icon{
    padding: 12px;
}
    .rating {
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    font-size: 13px;
}
.btn-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #333;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: grid;
    place-content: center;
    font-size: 13px;
}
}

