.video-row {
      display: flex;
      flex-wrap: wrap; /* responsive stacking on small screens */
      gap: 15px;
    }

    .main-player {
      flex: 2;
      min-width: 300px;
    }

    .playlist-sidebar {
      flex: 1;
      min-width: 250px;
      max-height: 500px; /* max height on large screens */
      overflow-y: auto;
    }

    .playlist-item {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border: 1px solid #333;
      border-radius: 5px;
      margin-bottom: 10px;
      transition: background-color 0.2s;
    }

    .playlist-item:hover {
    background-color: #333;
}

    .playlist-item .text p {
      margin: 0;
    }

    .playlist-item .text .title {
      font-weight: bold;
    }

    .playlist-item .text .time {
      font-size: 0.85rem;
      color: gray;
    }

    .playlist-item img {
      width: 60px;
      height: 45px;
      object-fit: cover;
      border-radius: 4px;
      margin-left: 10px;
    }

    .ratio-16x9 iframe {
      width: 100%;
      height: 100%;
    }
/* Webkit browsers (Chrome, Edge, Safari) */
.playlist-sidebar::-webkit-scrollbar {
    width: 4px; /* width of scrollbar */
}

.playlist-sidebar::-webkit-scrollbar-track {
    background: #333; /* track color */
    border-radius: 4px;
}

.playlist-sidebar::-webkit-scrollbar-thumb {
    background: #333; /* thumb color */
    border-radius: 4px;
}

.playlist-sidebar::-webkit-scrollbar-thumb:hover {
    background: #000; /* thumb on hover */
}
header.main-header.sticky {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0px;
    z-index: 999;
    transition: all 0.3s ease;
}
/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b358;
    color: white;
}

/* Firefox */
.playlist-sidebar {
    scrollbar-width: thin;
    scrollbar-color: #333 #000;
}
    /* Make player responsive height */
    @media (min-width: 768px) {
      .main-player, .playlist-sidebar {
        height: 500px;
      }
    }

    @media (max-width: 767px) {
      .playlist-sidebar {
        max-height: 300px; /* shorter on mobile */
      }
    }
    
    
    
.sticky-icons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* Icon button style */
    .sticky-icons a {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      text-decoration: none;
      font-size: 22px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .sticky-icons a:hover {
      transform: scale(1.1);
    }

    /* WhatsApp color */
    .whatsapp {
      background-color: #25D366;
    }

    /* Call color */
    .call {
      background-color: var(--accent-color);
    }


.post-entry h2 {
    font-size: 2rem;
}
.post-entry h1 {
    font-size: 3rem;
}