/*
Theme Name:     SureLoaded Premium
Theme URI:      https://www.sureloaded.net
Description:  A custom WordPress theme for SureLoaded, optimized for SEO and speed.
Version:        1.3
Author:         GBT3K
Author URI:     https://www.sureloaded.net
Text Domain:    sureloaded
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Tags:           custom-post-types, SEO, responsive, music, videos, news
*/



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

body {
    font-family: Arial, sans-serif; 
    background-color: white;
    color: #333;
}


/* New CSS UPDATTE START */

.adnativead {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 25px 0;
}

/* Full Header Styling */
.destopnav-header {
	border-bottom: 2px solid #fd0094;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: -10px;
    padding: 10px 20px 10px 20px;
    background-color: #fd0094;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo */
.destopnav-logo img {
	max-height: 50px;
}

/* Navigation Menu */
.destopnav-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.destopnav-nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.destopnav-nav-menu li {
    position: relative;
}

/* Navigation Links */
.destopnav-nav-menu a, .destopnav-dropbtn {
	color: white !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	border-bottom: 2px solid #fd0094;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 8px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
}

/* Active Link */
.destopnav-nav-menu a.active, .destopnav-dropbtn.active {
    border-bottom: 2px solid #fff; /* Visible active underline */
}

.destopnav-nav-menu a::after, .destopnav-dropbtn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ddd;
    left: 50%;
    bottom: 0;
    transition: all 0.25s ease-in-out;
}

.destopnav-nav-menu a:hover, .destopnav-dropbtn:hover {
    transition: background-color 0.25s ease-in-out;
}

.destopnav-nav-menu a:hover::after, .destopnav-dropbtn:hover::after {
    width: 100%;
    left: 0;
}


/* Dropdown Menu */
.destopnav-dropdown {
    position: relative;
}

/* Dropdown Content */
.destopnav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fd0094;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 999;
    flex-direction: column;
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show Dropdown on Hover */
.destopnav-dropdown:hover .destopnav-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.destopnav-dropdown-content a {
    border-bottom: 2px solid #fd0094;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 12px !important;
    color: #fff !important;
    padding: 12px 10px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease-in-out;
}

/* Hidden Search Box */
.destopnav-search-box {
    display: none;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    right: 20px;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 2000;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(-10px);
}

/* Search Input */
.destopnav-search-box form {
    display: flex;
    align-items: center;
}

.destopnav-search-box input[type="text"] {
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.destopnav-search-box button {
    padding: 8px 16px;
    background-color: #fd0094;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Show Search Box on Active */
.destopnav-search-box.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Search Icon */
.destopnav-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Destop Navigation Hide */
@media (max-width: 769px) {
    .destopnav-header {
        display: none;
    }
}

/* Full Header Styling End */

/* Mobile Search Box */
.mobile-search-box {
    margin: 25px auto 0;
    position: relative;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: 1px solid #fd0094;
    width: 95%;
    max-width: 100%;
    text-align: center;
}

/* Search Form */
.mobile-search-box form {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Search Input */
.mobile-search-box input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Search Button */
.mobile-search-box button {
    padding: 10px;
    background-color: #fd0094;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Show Only on Mobile */
@media (max-width: 600px) {
    .mobile-search-box {
        display: block !important;
    }
}

@media (min-width: 601px) {
    .mobile-search-box {
        display: none !important;
    }
}

/* Mobile Search Box END */

.gapper {
   margin-bottom: 20px;
}
.gappad {
   padding-bottom: 1px;
}
.gap2 {
   margin-bottom: 10px;
}

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

/* Footer Style */
.footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #fd0094;
}
/* Footer Style End */

/* Post Image Styles Start */
.post-image-container {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Post Image Default style for PC */
.post-image-content {
    max-width: 100%;
    height: auto;
    width: 70%;
    border-radius: 2px;
}

/* Post Image Style for Tablet screens only */
@media screen and (min-width: 600px) and (max-width: 1024px) {
    .post-image-content {
        max-width: 100%;
        width: 70% !important;
    }
}

/* Style for mobile screens only */
@media screen and (max-width: 768px) {
    .post-image-content {
        max-width: 100%;
        width: 100%;
    }
}

/* Caption Style for mobile screens only */
@media screen and (max-width: 768px) {
    .image-caption {
        max-width: 100% !important;
        width: 70% !important;
        font-size: 12px !important;
    }
}

/* Default Caption Style */
.image-caption {
    position: absolute;
    bottom: 5px;
    right: 0;
	  left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: whitesmoke;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    max-width: 100%;
	width: 50%;
}
/* Post Image Styles End */

 /* Mobile Header Start */

.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fd0094 !important;
    z-index: 10000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ensure mobile nav is visible only on mobile */
@media (max-width: 768px) {
    .nav-mobile {
        display: block !important;
    }
}

/* Hide scrollbar for all browsers */
.nav-mobile::-webkit-scrollbar {
    display: none;
}

.nav-mobile {
    scrollbar-width: none;
}

/* Hide header on desktop if needed */
@media (min-width: 769px) {
    .nav-mobile, .sticky-header {
        display: none !important;
    }
}

header {
    background-color: #fd0094;
    padding: 10px 10px 0 10px;
}

@media (min-width: 992px) {
    header {
    padding: 10px;
    width: 1240px;
    margin: 0 auto;
    margin-bottom: 0;
}
}

.nav-mobile {
    background-color: #fd0094;
    padding: 6px 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    white-space: nowrap;
    display: block;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: top 0.3s ease-in-out;
}

/* Hide scrollbar for Webkit browsers */
.nav-mobile::-webkit-scrollbar {
    display: none;
}

/* Navigation Icons */
.nav-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Links */
.nav-icons li {
    flex-shrink: 0;
    text-align: center;
    min-width: 70px;
}

.nav-icons a {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 0;
    transition: color 0.3s ease-in-out;
}

/* Ensure mobile nav is visible only on mobile devices */
    @media (max-width: 768px) {
        .nav-mobile {
            display: block !important;
        }
    }

    /* Hide scrollbar for all browsers */
    .nav-mobile::-webkit-scrollbar {
        display: none;
    }

    .nav-mobile {
        scrollbar-width: none;
    }
    
    @media (min-width: 769px) {
        .nav-mobile, .header-container {
            display: none !important;
        }
    }

/* Hide the search bar by default */
.search-bar {
    display: none;
    padding: 10px;
    background-color: white;
    position: absolute;
    top: 47px; /* Adjust based on your header height */
    right: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 2000;
}

/* Style the search input and button */
.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    width: 210px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar button {
    padding: 8px 16px;
    background-color: #fd0094;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

 /* Mobile Header Start */

/* Music Sub Category Links */
.music-links {
    display: none;
    padding: 5px;
    margin-top: 20px;
	margin-left: 10px;
	margin-right: 10px;
    text-align: center;
    gap: 8px;
    flex-wrap: wrap;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Styled Links */
.music-link {
	position: relative;
    display: inline-flex;
    font-weight: bold;
    font-size: 13px;
    color: black;
    text-decoration: none;
    padding: 3px 8px;
    margin: 0;
	border-bottom: 2px solid #fff;
}

/* Highlight active page */
.music-link.active {
    border-bottom: 2px solid #fd0094;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .music-links {
        display: flex; /* Override display: none */
        justify-content: center; /* Centers links */
    }
}

/* Explicitly hide on larger screens */
@media (min-width: 769px) {
    .music-links {
        display: none !important;
    }
}

/* Show post list for mobile users only */
@media (max-width: 769px) {
    .post-list-mobile {
        display: block;
    }
    .post-list-destop {
        display: none;
    }
}

/* Hide mobile post list on desktop screens */
@media (min-width: 770px) {
    .post-list-mobile {
        display: none;
    }
}

/* Post List */
.post-list {
    margin-top: 5px;
}

/* Post Item */
.post-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.post-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Post Image */
.post-image a img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.post-image a:hover img {
    transform: scale(1.05);
}

/* Post Details */
.post-details {
    flex-grow: 1;
}

/* Post Title */
.post-title a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #fd0094;
}

/* Post Category */
.post-category {
    font-size: 12px;
    font-weight: bold;
	background-color: rgba(253, 0, 148, 0.9);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	padding: 5px;
	border: none;
    border-radius: 6px 0px;
    display: inline-block;
    margin-top: 8px;
}

.post-category a {

    text-decoration: none;
    color:#fff;
}

.post-category a:hover {
	color: white;
    text-decoration: underline;
}

/* General Styling for Latest Posts */
.post-list-destop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

/* Individual Post Item */
.post-list-destop-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}

.post-list-destop-item:hover {
    transform: translateY(-3px);
}

/* Thumbnail Container */
.post-list-destop-thumbnail {
    position: relative;
    width: calc(100% - 20px); 
    height: 160px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.post-list-destop-thumbnail img {
    width: 77%;
    height: 100%;
    object-fit: cover;
}

.post-list-destop-category {
    position: absolute;
    background-color: rgba(253, 0, 148, 0.9);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px 0 8px 0; 
    z-index: 10;
    display: block;
}

/* Hide category on screens smaller than 769px */
@media (max-width: 769px) {
    .post-list-destop {
        display: none;
    }
}


/* Title Styling */
.post-list-destop-title {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.post-list-destop-title a {
    text-decoration: none;
    color: #333;
}

.post-list-destop-title a:hover {
    color: #e74c3c; /* Accent color on hover */
}

/* ad download start */
.notification {
  background-color: #007BFF;
  display: inline-block;
  color: white;
  padding: 10px 28px 8px 20px;
  font-weight: bold;
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 15px;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.notification a {
  color: white;
  text-decoration: none!important;
  display: block;
}

.notification .close-btn {
  position: absolute;
  top: -3px;
  right: 0px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

.notification .close-btn:hover {
	text-decoration: none!important;
  color: #ccc;
}

.notification:hover {
	text-decoration: none!important;
  background-color: #2E4392;
}

/* ad download end */

.spaceforto-pc {
	    margin-top: 5px;
  display: nne; /* Hide by default */
}

@media only screen and (min-width: 768px) {
  .spaceforto-pc {
    display: block; /* Show only on larger screens */
    margin-top: -20px;
  }
}

.spacefobo-pc {
	    margin-top: 5px;
  display: none; /* Hide by default */
}

@media only screen and (min-width: 768px) {
  .spaceforbo-pc {
    display: block; /* Show only on larger screens */
    margin-top: 29px;
  }
}

/* Top Songs CSS Start */
.sureloaded-top-songs {
	width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* CSS scrollbar Start */
/* Show scrollbar only on screens smaller than 600px (mobile devices) */
@media only screen and (max-width: 600px) {
  .video-slider::-webkit-scrollbar,
  .sureloaded-top-songs::-webkit-scrollbar {
      width: 6px;
  }

  .video-slider::-webkit-scrollbar-track,
  .sureloaded-top-songs::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  .video-slider::-webkit-scrollbar-thumb,
  .sureloaded-top-songs::-webkit-scrollbar-thumb {
   background-color: rgba(253, 0, 148, 0.9);
      border-radius: 3px;
  }

  .video-slider::-webkit-scrollbar-thumb:hover,
  .sureloaded-top-songs::-webkit-scrollbar-thumb:hover {
      background: #014040;
  }
}

/* Hide scrollbar for larger screens */
@media only screen and (min-width: 601px) {
  .video-slider::-webkit-scrollbar,
  .sureloaded-top-songs::-webkit-scrollbar {
      display: none;
      width: 0;
      height: 0;
  }
}

/* CSS scrollbar END */

/* Individual Song Item */
.sureloaded-top-songs-item {
    position: relative;
    min-width: 140px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.2s;
}

/* Thumbnail Container */
.sureloaded-top-songs-thumbnail {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Remove extra margins and adjust size */
.sureloaded-top-songs-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title Styling - Smaller text */
.sureloaded-top-songs-title {
    padding: 5px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limits text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Ensures overflowed text gets "..." */
    white-space: normal;
}

/* Numbering styled like a plastered category label */
.sureloaded-top-songs-number {
    position: absolute;
    top: 0;
    left: 0;
   background-color: rgba(253, 0, 148, 0.9);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px 0 8px 0;
    z-index: 10;
}

/* Hover effect for song items */
.sureloaded-top-songs-item:hover {
  transform: translateY(-3px);
    transition: 0.3s ease-in-out;
}

/* Hover effect for title */
.sureloaded-top-songs-title:hover {
    color: none;
}

/* Hover effect for images */
.sureloaded-top-songs-thumbnail img:hover {
    filter: brightness(80%);
    transition: 0.3s ease-in-out;
}
/* Top Songs CSS End */

/* Homepage Video CSS */
.video-slider {
    width: 700px; 
    max-width: 100%; 
    padding: 10px;
    overflow: hidden;
    display: flex;
    gap: 12px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    white-space: nowrap;
    margin-left: 0;
}
.video-item {
    flex: 0 0 auto;
    width: 220px; 
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    scroll-snap-align: center;
}

.video-image {
    position: relative; /* Allows absolute positioning for play icon */
}

.video-image a img {
    width: 220px; 
    height: 120px; 
    object-fit: cover;
    display: block;
    border-radius: 6px 6px 0 0;
}

.video-item:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.video-details {
    text-align: left;
}

.video-title a {
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    display: block;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
}

/* Play icon overlay */
.play-icon {
    position: absolute;
	  top: 42px;
    bottom: 5px;
    left: 94px;
    width: 35px; 
    height: 35px;
    background-color: red; 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
	height: 25px;
	border-radius: 50% / 10% ;
	font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

.album-header {
	margin-top: 20px;
    display: flex;
    justify-content: space-between; /* Moves items to opposite ends */
    align-items: center;
    padding: 1px 10px; /* Add padding for better spacing */
    background:#fd0094;
    border-radius: 5px;
    width: 100%;
}

.album-heading {
    font-size: 14px;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: inline-block;
    margin: 0; /* Removes any unexpected spacing */
}

.see-more {
    font-size: 14px;
	padding: 2px 5px;
	border-radius: 5px;
    color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    margin-left: auto; /* Pushes link to far right */
}

.see-more:hover {
    text-decoration: underline;
	color: white !important;
}

/* Download Button */

.button-container {
	margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 5px; /* Space between buttons */
    overflow-x: auto; /* Enable horizontal scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.button-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit-based browsers (Chrome, Safari, Edge) */
}

.myxl-head {
    color: #fff !important; /* Default text color */
    padding: 5px 10px; /* Padding for size */
    text-transform: uppercase;
    border-radius: 4px;
    background-color: #fd0094; /* Button background */
    text-decoration: none;
    display: inline-flex; /* Align content inside button */
    justify-content: center; /* Center text */
    align-items: center; /* Center items vertically */
    border:  2px solid #fd0094; /* No border by default */
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease; /* Smooth transitions */
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.myxl-hed::before {
    content: "\f061"; /* Font Awesome arrow-right icon */
    font-family: "Font Awesome 5 Free"; /* Specify Font Awesome font */
    font-weight: bold; /* Use solid style icons */
    margin-right: 8px; /* Space between icon and text */
    display: inline-block; /* Keep icon inline */
    vertical-align: middle; /* Align icon with text */
}

.myxl-head:hover {
    text-decoration: none !important;
    background-color: #fff;
    border: 2px solid #fd0094;
    color: #fd0094 !important;
}

/* Scrollbar Styles (Optional, for better aesthetics) */
.button-container::-webkit-scrollbar {
    height: 8px; /* Height of the horizontal scrollbar */
}

.button-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the scrollbar track */
}

.button-container::-webkit-scrollbar-thumb {
    background-color: #fd0094; /* Scrollbar thumb color */
    border-radius: 4px; /* Rounded edges for the thumb */
}

/* Responsive Design for Mobile */
@media (max-width: 600px) {
    .button-container {
        gap: 3px; /* Reduce gap between buttons for smaller screens */
    }
    .myxl-head {
        padding: 5px 10px; /* Adjust padding for smaller buttons */
    }
}

/* Download Button End */

/* Video Download Button */ 

.vdl-head-container {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 20px;
}

.vdl-head {
    color: #fff !important;
	   font-weight: 600;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: #fd0094;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fd0094;;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    flex-shrink: 0;
}

.vdl-head::before {
    content: "\f061";
font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.vdl-head:hover {
 text-decoration: none !important;
    background-color: #fff;
    border: 2px solid #fd0094; 
    color: #fd0094 !important;
}

/* Video Download Button End */

/* Trending List start */
.sureloaded-trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual list item */
.sureloaded-trending-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.sureloaded-trending-list-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Full clickable area */
.sureloaded-trending-list-link {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* Thumbnail container */
.sureloaded-trending-list-thumbnail {
    position: relative;
    width: 100px;
    height: 80px;
    margin-right: 15px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

/* Force strict uniformity */
.sureloaded-trending-list-thumbnail img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

/* Numbering plastered at the top-right */
.sureloaded-trending-list-number {
    position: absolute;
    bottom: 0;
    right: 0;
background-color: rgba(253, 0, 148, 0.9);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px 0 5px 0;
}

/* Post Details */
.sureloaded-trending-list-details {
    flex-grow: 1;
}

/* Post Title */
.sureloaded-trending-list-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}


.sureloaded-trending-list-title:hover {
    color: #fd0094;
}

/* Trending List End */

/* Style for the Page Title */
.page-title {
    background-color: #fd0094;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}
/* Style for the Page Title End*/

/* New CSS UPDATTE START End */

.tagtat{
    font-size: 14px !important;
}

a {
    color: #fd0094; /* Pink color for all links */
    text-decoration: none; /* Optional: Remove underline from links */
}
/* Add this CSS to your theme's stylesheet or a custom CSS file */
#morebutton {
    text-align: right !important;
}




a:hover,
a:focus {
    color: #fd0094; /* Darker #fd0094 color on hover/focus */
    text-decoration: none; /* Optional: Add underline on hover/focus */
}


.header-container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    position: relative; /* Allows positioning the toggle menu on mobile */
}

.logo{
    width: 180px;
    max-width: 100%;
    height: 40px;
    margin-left: 10px;
}

.logo-section h1 {
    font-size: 24px;
    color: #fd0094;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center; /* Center text */
}

.menu-toggle {
    position: absolute;
    right: 20px; /* Positioning the toggle button to the right */
    display: block;
    background: none;
    border: none;
    color: inherit;
    
}

.menu-toggle i {
    font-size: 28px;
    color: #fd0094;
}



/* Desktop Navigation Styles */
.nav-desktop {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.wp-caption-text{
    display: none;
}
.size-medium {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Ensures responsiveness */
}

.aligncenter {
    clear: both;
    margin: 20px 10px 10px 40px;
}
.schema{
    display: none;
}
/* Media Query for Laptop Design */
@media (min-width: 768px) {
    /* Hide mobile icons and menu toggle on larger screens */
    .nav-mobile {
        display: none;
    }
    audio {
        width: 50% !important;
    }
    
    .container {
      margin: 0 100px 50px 100px !important;
    }
    
    .image-caption {
        left: 40% !important;
    }

    .social-container{
        width: 100% !important;
    }
    
    .social-icon{
        font-size: 24px !important;
    }
    
   
    .menu-toggle{
        margin-right: 60px;
        margin-top: 20px;
        cursor: pointer;
    }

    /* Center the logo for desktop view */
    .header-container {
        justify-content: center;
    }
    
    .post-title h2 {
    font-size: 16px !important;
   
}

.post-title h1{
    font-size: 26px !important;
}
    
    .author-text {
    font-size: 15px !important;
}

.author-name {
    font-size: 15px !important;
}

.post-date {
    font-size: 15px !important;
}



    /* Show desktop navigation on larger screens */
    .nav-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    
    
    /* Hide desktop menu on mobile screens */
    .nav-desktop {
        display: none;
    }

    /* Show mobile icons and menu toggle on smaller screens */
    .nav-mobile {
        display: block;
    }

    .menu-toggle {
        display: block;
        
        
    }

    .header-container {
        justify-content: space-between;
    }
}
/* General Styles for Homepage Body */
.homepage-body {
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
 
}

/* Trending Now Title */
.trending-now {
    background-color: #fd0094;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 12px 20px; /* Reduced padding for narrower background */
    font-size: 14px; /* Reduced font size */
    text-align: center;
    margin-bottom: 5px;
    font-weight:800;
    display: flex;/* Ensures the width is only as wide as the content */
    border-radius: 5px;
}

/* Post List */
.post-list {
    margin-top: 5px;
}

.post-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.post-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    
}

.post-image img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-details {
    flex-grow: 1;
}

.post-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Next Post Link */
.next-post {
    display: block;
    background-color: #fd0094;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .post-title {
        font-size: 14px; /* Adjusted for mobile */
    }

    .trending-now {
        font-size: 14px; /* Smaller font size on mobile */
    }
}






@media (min-width: 992px) {
    .footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #fd0094;
    width: 1240px;
    margin: 0 auto;
}
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 5px 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 16px; /* Increased font size */
}

.footer-links a:hover {
    color: #fd0094;
}

.social-media {
    margin-bottom: 15px;
}

.social-media a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #fd0094;
}

.social-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px; /* Adjust as needed */
    margin-bottom: 10px; /* Adjust as needed */
}

.social-icon {
    text-decoration: none;
    font-size: 22px;
}
/* Facebook icon color */
.social-icon[href*="facebook.com"] {
    color: #1877F2; /* Facebook blue */
}

/* Twitter icon color */
.social-icon[href*="twitter.com"] {
    color: #1DA1F2; /* Twitter blue */
}

/* WhatsApp icon color */
.social-icon[href*="whatsapp.com"] {
    color: #25D366; /* WhatsApp Pink */
}

/* Telegram icon color */
.social-icon[href*="t.me"] {
    color: #0088cc; /* Telegram blue */
}

/* Link copy icon color */
#copy-link {
    color: #333; /* Dark gray for link copy */
}
#copy-link1{
    color: #333;
}

/* Hover effect for social icons */
.social-icon:hover {
    opacity: 0.8; /* Slightly dim on hover */
}


.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.copy-notification.fade-out {
    opacity: 0;
}


.dmca {
    margin-bottom: 15px;
}

.dmca img {
    width: 100px;
    height: 20px;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center; /* Center the links */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Adjust size for mobile */
        margin: 5px 10px;
    }

    .social-media a {
        font-size: 20px;
    }
    
   
    
}

#trend{
    margin-top: 20px;
}

/* General styling */
.container {
    padding: 10px;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 14px;
    padding: 5px 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #fd0094;
    transition: color 0.3s;
}

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

.breadcrumb .separator {
    background: none;
    padding: 0 2px;
    color: #666;
}

.breadcrumb span {
    color: #555;
}

/* Post Title */
.post-title h1 {
    font-size: 24px;
    margin-top: 10px;
}

.post-title h2 {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 13px;
    color: #fd0094;
    font-weight: 700;
}

.verified-badge {
    width: 12px;
    height: 12px;
    position: relative; /* or 'absolute' */
    top: 3px; /* Adjust the value as needed */
}

.post-date {
    color: gray;
    font-size: 12px;
}
.author-text{
    color: gray;
    font-size: 12px;
    display: inline;
    
}

/* Telegram Button */
.telegram-button {
    background-color: #fd0094;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.telegram-button:hover {
    color: white;
}


/* Post Content */
.post-content {
    font-size: 16px;
    margin-bottom: 20px;
}

.post-content > p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-content p:first-of-type {
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

/* Separator Line */
.separator {
    height: 1px;
    background-color: #e0e0e0;
}

/* Container for post content */
.post-content {
    max-width: 800px; /* Limit width for readability */
    font-family: Arial, sans-serif; /* Clean, professional font */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Dark text color for readability */
}

/* Headings */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    font-family: 'Arial', serif; /* Serif font for headings */
    color: #222; /* Slightly darker color for headings */
    margin-top: 1.5em; /* Space above headings */
    margin-bottom: 0.5em; /* Space below headings */
    line-height: 1.4; /* Improve spacing for headings */
}

/* Links */
.post-content a {
    color: #fd0094; /* Pink color for links */
    text-decoration: none; /* Remove underline */
}

.post-content a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Lists */
.post-content ul, .post-content ol {
    padding-left: 20px; /* Indent lists */
}

.post-content li {
    margin-bottom: 10px; /* Space between list items */
}

/* Images */
.post-content img {
    max-width: 100%; /* Responsive images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
    margin: 10px 0; /* Margin for spacing */
}

/* Blockquotes */
.post-content blockquote {
    border-left: 4px solid #fd0094; /* Pink border for blockquote */
    padding-left: 15px; /* Space inside blockquote */
    margin: 20px 0; /* Margin for spacing */
    font-style: italic; /* Italicize text */
    color: #555; /* Slightly lighter color */
    background-color: #f1f1f1; /* Light background */
    border-radius: 4px; /* Rounded corners for blockquote */
}

/* Code Blocks */
.post-content pre {
    background-color: #333; /* Dark background for code blocks */
    color: #f8f8f2; /* Light text color */
    padding: 10px; /* Padding inside code blocks */
    border-radius: 4px; /* Rounded corners for code blocks */
    overflow-x: auto; /* Scrollbar for long lines */
}

/* Tables */
.post-content table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Collapse borders */
    margin: 20px 0; /* Margin for spacing */
}

.post-content th, .post-content td {
    padding: 10px; /* Padding inside cells */
    border: 1px solid #ddd; /* Light border */
    text-align: left; /* Left align text */
}

.post-content th {
    background-color: #f4f4f4; /* Light background for headers */
    font-weight: bold; /* Bold headers */
}

/* Style for the post tags */
.post-tags {
  margin: 30px 0;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.post-tags p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Style each tag link like a button */
.post-tags a {
  display: inline-block;
  background: #f0f0f0;
  color: #fd0094;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

/* Hover effect */
.post-tags a:hover {
  background: #fd0094;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.post-tags {
  margin: 30px 0;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.post-tags p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Style each tag link like a button */
.post-tags a {
  display: inline-block;
  background: #fd0094;
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

/* Hover effect */
.post-tags a:hover {
  background: #fd0094;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style for the call-to-action section */
.rating-call-to-action {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: left; /* Align text to the left */
}

.rating-call-to-action p {
    margin: 10px 0;
}

.rating-call-to-action strong {
    font-weight: bold;
}

.rating-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fd0094; /* Adjust as needed */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.rating-link:hover {
    color: #fff;
}

/* Add more specific styles for other number IDs if needed */
#trending-now{
    margin-top: 10px;
}


/* Style for the SVG icon */
#trend svg {
    margin-left: 10px; /* Space between text and icon */
    margin-top: -3px;
    vertical-align: middle; /* Aligns the icon with the text */
}
.hiphopkray-related-post {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    margin-top: 20px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    max-width: 100%; /* Ensure full width on mobile */
}

.hiphopkray-related-post:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #333;
}

.hiphopkray-related-post-link {
    text-decoration: none;
    display: flex;
    color: #333 !important;
    width: 100%;
    font-size: 14px;
}

.hiphopkray-related-post-image {
    flex-shrink: 0;
    margin-right: 20px;
}

.hiphopkray-related-post-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.hiphopkray-related-post-title {
    flex-grow: 1;
    font-size: 14px;
    font-weight: bold;
    text-align: left; /* Align text to the left */
}




/* Media Query for Desktop View */
@media (min-width: 768px) {
    .hiphopkray-related-post {
        max-width: 500px; /* Set the desired width for desktop */
        margin: 20px 0; /* Align to the left by removing auto margin */
    }

    .hiphopkray-related-post-image img {
        width: 120px; /* Slightly larger image on desktop */
        height: 120px;
    }

    .hiphopkray-related-post-title {
        font-size: 18px; /* Slightly larger font size for desktop */
    }
}
/* Wrapper for the content and sidebar */
.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* Main content area */
.main-content {
    width: 75%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}

.main2-content {
    width: 75%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 40px;
}

@media (max-width: 767px) {
.main2-content {
    width: 99%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}
}

/* Sidebar */
.post-list-sidebar {
    width: 40%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding: 20px;
}

/* Sidebar post item */
.post-list-sidebar .post-item {
    display: flex;
    margin-bottom: 15px;
    
}

.post-list-sidebar .post-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.post-list-sidebar .post-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fd0094;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.post-list-sidebar .post-info {
    flex: 1;
}

.post-list-sidebar .post-title {
    font-size: 12px;
    color: #333;
    margin-left: 3rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-content, .post-list-sidebar {
        width: 100%;
        padding: 0;
        
    }

    /* Adjust the post list layout for mobile view */
    .post-list-sidebar {
        display: flex;
        flex-direction: column; /* Stack items vertically */
    }

    .post-list-sidebar .post-item {
        display: flex;
        align-items: flex-start; /* Align items to the top */
        margin-bottom: 20px; /* Space between items */
        
        border-bottom: 1px solid #ddd; /* Optional border for separation */
    }

    .post-list-sidebar .post-image-wrapper {
        margin-right: 20px; /* Increase space between image and text */
    }

    .post-list-sidebar .post-image {
        width: 120px; /* Adjust image size for mobile */
        height: 120px; /* Adjust image size for mobile */
        display: block; /* Ensure the image displays as a block */
    }

    .post-list-sidebar .post-number {
       
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .3s ease;
}
    

    .post-list-sidebar .post-info {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text vertically */
    }

    .post-list-sidebar .post-title {
        font-size: 14px; /* Adjust font size for mobile */
        margin-bottom: 5px; /* Add space below the title */
    }
}

/* end of post sidebar for single content*/

/*VIDEO SECTION CSS*/

/* Unique styling for the video section */
.video-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
    gap: 15px;
    margin: 20px auto;
    max-width: 1200px; /* Adjust as needed */
}

/* Ensure the grid items are properly styled */
.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}


/* Styling for the video thumbnail */
.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

/* Video title styling */
.video-title {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.video-title small {
    display: block;
    font-size: 12px;
    color: #777;
}

/* Responsive design for mobile view */
@media (max-width: 768px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Ensure 2 columns on mobile */
    }

    .video-thumbnail img {
        width: 100%; /* Full width for mobile */
        height: 100px; /* Maintain aspect ratio */
    }

    .video-title {
        font-size: 12px; /* Adjust font size for mobile */
    }
}

/* Ensure the grid is responsive and maintains 2x2 layout on very small screens */
@media (max-width: 480px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Two columns for small screens */
    }
}

/* END OF HOME VIDEO CSS*/
/* Pagination Container */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Pagination Links */
.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    background-color: #fd0094; /* Pink background for the links */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active Pagination Link */
.pagination .current {
    background-color: #fd0094; /* Darker color for the active page */
    color: #fff; /* Off-White text for the active page */
    border: 2px solid #fd0094; /* Pink border for the active page */
    font-weight: bold;
    padding: 8px 16px; /* Adjust padding to account for border */
    border-radius: 4px;
}

/* Hover Effects */
.pagination a:hover {
    background-color: #fd0094; /* Slightly darker Pink on hover */
    color: #fff;
}

/* Previous/Next Text */
.pagination .prev, .pagination .next {
    font-weight: bold;
    margin-top: 10px;
}

/* Additional Styling for Mobile */
@media (max-width: 768px) {
    .pagination a {
        padding: 6px 12px;
        font-size: 13px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .pagination .current {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* General Styling for Category, Tag, and Author Post Items */
.page-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.page-post-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}


.page-post-thumbnail {
    position: relative;
}

.page-post-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px; /* Adjust the height to maintain aspect ratio */
}

.page-post-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.page-post-title a {
    text-decoration: none;
    color: #333;
}

.page-post-title a:hover {
    color: #e74c3c; /* Accent color on hover */
}

/* Sidebar Styles */
.sidebar-desktop {
    float: right;
    width: 25%;
    margin-left: 20px; /* Adjust as needed */
}


.desktop-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    color: #333; /* Text color */
    
    text-decoration: none;
    display: block;
}

.desktop-nav li a:hover,
.desktop-nav li:hover > a {
    color: #fff;
}

/* Hide the dropdown menu by default */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333;
    list-style: none;
    padding: 10px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 150px;
}

/* Ensure the parent is positioned relatively for the absolute dropdown */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* Show the dropdown menu on hover */
.nav-menu .menu-item-has-children:hover .dropdown-menu {
    display: block;
}

/* Optional: Style the dropdown menu items */
.nav-menu .dropdown-menu li {
    margin-bottom: 10px;
}

.nav-menu .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu .dropdown-menu li a {
    text-decoration: none;
    color: #fff;
}

.listen-section {
    margin-top: 10px;
}

.listen-section p {
    font-weight: bold;
    margin-bottom: 10px;
}

audio {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

.download-button {
    display: inline-block;
    background-color: #fd0094;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-button .button {
    display: inline-flex;
    align-items: center;
    background-color: #fd0094;
    color: white;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    gap: 10px; /* Space between text and icon */
}

.download-button .button svg {
    margin-left: 8px; /* Space between text and icon */
    fill: white; /* Icon color */
}
.youtube-embed {
    text-align: center;
}

.youtube-embed iframe {
    max-width: 100%;
    height: 300px;
}

.download-button .button {
    display: inline-flex;
    align-items: center;
    background-color: #fd0094;
    color: white;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    gap: 10px; /* Space between text and icon */
}

.download-button .button svg {
    margin-left: 8px; /* Space between text and icon */
    fill: white; /* Icon color */
}

.download-button .button:hover {
    background-color: #fd0094; /* Darker Pink on hover */
}
/* 404 Page Styles */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.error-404 .page-content {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.error-404 .page-content p {
    margin: 0;
}

.error-404 a {
    color: #fd0094;
    text-decoration: none;
    font-weight: bold;
}

.error-404 a:hover {
    text-decoration: underline;
}

/* Search Form Styles */
.search-form {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
}

.search-form input[type="search"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.search-form input[type="search"]:focus {
  
    outline: none;
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    font-size: 1em;
    margin-left: 10px;
}

.search-form input[type="submit"]:hover {
    background-color: #005bb5;
}

/* Base styles: mobile-first fluid 16:9 ratio */
.responsive-video {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.responsive-video:before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 ratio */
}
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet: fixed size for screens 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .responsive-video {
        position: relative;
        width: 640px;
        height: 360px;
        padding: 0;
    }
    .responsive-video iframe {
        position: static;
        width: 100%;
        height: 100%;
    }
}

/* iPad: fixed size for screens 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .responsive-video {
        position: relative;
        width: 800px;
        height: 450px;
        padding: 0;
    }
    .responsive-video iframe {
        position: static;
        width: 100%;
        height: 100%;
    }
}