
/* ===========================
   HEADER WRAPPER
=========================== */

.loadedmore-header-wrapper {
  background: #000;
  color: #fff;
  position: relative;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* MAIN HEADER */
.loadedmore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 14px;
}

/* ===========================
   LEFT MENU
=========================== */
.loadedmore-left {
  display: flex;
  align-items: center;
}

/* ===========================
   LOGO (CENTER)
=========================== */
.loadedmore-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.loadedmore-logo img {
  height: 48px;
  width: auto;
}

/* ===========================
   NAV (DESKTOP ONLY)
=========================== */
.loadedmore-nav {background: #111;
  display: flex;
  gap: 18px;
  align-items: center;
}

.loadedmore-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.85;
}

.loadedmore-nav a:hover {
  opacity: 1;
}

/* ===========================
   RIGHT SEARCH
=========================== */
.loadedmore-right {
  display: flex;
  align-items: center;
}

.loadedmore-search {
  position: relative;
}

/* hidden search */
.search-form {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #111;
  padding: 8px;
  border-radius: 8px;
  gap: 6px;
  z-index: 999;
}

/* active search */
.search-form.active {
  display: flex;
}

.search-form input {
  padding: 7px;
  border-radius: 5px;
  border: 1px solid #333;
}

/* ===========================
   BUTTONS + ICONS
=========================== */
.loadedmoremp3-button,
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.loadedmoremp3-button svg,
.search-toggle svg {
  width: 25px;
  height: 25px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {

  .loadedmore {
    justify-content: space-between;
  }

  /* hide nav on mobile */
  .loadedmore-nav {
    display: none;
  }

  .loadedmore-logo img {
    height: 50px;
  }

  .search-form {
    right: -10px;
    min-width: 180px;
  }
}


/* ===========================
   MOBILE NAV WRAPPER
   =========================== */
.nav-mobile {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #000;
  padding: 10px 0;
  margin-left: 5px;
}

.nav-mobile::-webkit-scrollbar {
  display: none;
}

/* ===========================
   NAV LIST
   =========================== */
.nav-icons {
  list-style: none;
  margin: 0;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* tighter spacing */
}

/* ===========================
   NAV ITEM
   =========================== */
.nav-icons li {
  flex-shrink: 0;
  text-align: center;
  min-width: 60px; /* reduced width */
}

/* ===========================
   LINK STYLE
   =========================== */
.nav-icons a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===========================
   ICON CIRCLES (FONT AWESOME)
   =========================== */
.nav-icons a span.fa,
.nav-icons a span.fas {
  width: 32px;   /* smaller circle */
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; /* smaller icon */
  margin-bottom: 4px;
  transition: all 0.25s ease;
}

/* hover effect */
.nav-icons a:hover span.fa,
.nav-icons a:hover span.fas {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===========================
   FLAG CIRCLES
   =========================== */
.flag-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  overflow: hidden;
}

/* FLAG SVG SIZE */
.flag-box svg {
  width: 18px;
  height: 18px;
}

/* ===========================
   TEXT LABEL
   =========================== */
.nav-icons strong {
  font-size: 11px;
  font-weight: 700px;
  font-family: 'Inter' sans-serif;
  letter-spacing: 0.5px;
}

.nav-icons strong:hover{color: var(--primary)}

/* ===========================
   OPTIONAL: ACTIVE EFFECT (future use)
   =========================== */
.nav-icons a.active span.fa,
.nav-icons a.active span.fas,
.nav-icons a.active .flag-box {
  background: #fff;
  color: #000;
}


/* ---------- Mobile Dropdown Menu ---------- */
.mobile-dropdown-menu {
    position: sticky;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 999;
    display: none;
    border-top: 1px solid #ccc;
}

.mobile-dropdown-menu.active {
    display: block;
}

/* ---------- CONTENT WRAPPER ---------- */
.mobile-dropdown-content {
    padding: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- GRID MENU ---------- */
.mobile-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ---------- ITEM ---------- */
.mobile-dropdown__item {
    border-bottom: 1px solid var(--border-color);
}

/* ---------- CARD LINK ---------- */
.mobile-dropdown__link {
    background: none;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* hover effect */
.mobile-dropdown__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(30,64,255,0.15);
}

/* ---------- ICON (SVG) ---------- */
.menu-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-bottom: 6px;
}
/* ---------- TEXT ---------- */
.mobile-dropdown__link span {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin-top: 6px;
    display: block;
    line-height: 1.2;
}

/* ---------- OTHER FIXES ---------- */
.site-navigation__menu li { 
    white-space: nowrap; 
}

.mobile-dropdown-header {
    display: none !important;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media(max-width: 480px){
    .mobile-dropdown__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mobile-dropdown__link {
        padding: 12px 8px;
        font-size: 12px;   /* FIXED (was 20px too big for grid cards) */
        font-weight: bold;  /* FIXED */
        font-family: 'Inter', sans-serif;
    }

    .menu-icon {
        width: 22px;
        height: 22px;
    }


  
/* ----------------------------
     No Search Results UI
  ----------------------------- */
  .no-results {
      text-align: center;
      padding: 30px;
      margin: 35px auto;
      background: var(--bg-main2);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 500px;
  }
  
  .no-results-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 10px;
  }
  
  .no-results h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--text-main);
  }
  
  .no-results p {
      font-size: 1rem;
      color: var(--rartist-name);
      margin-bottom: 15px;
  }
  
  /* No Results Search Bar */
  .no-results-search {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 2px solid var(--primary-border);
      border-radius: 8px;
      padding: 5px;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .no-results-search input {
      flex: 1;
      padding: 10px;
      border: none;
      outline: none;
      font-size: 1rem;
      background: transparent;
      color: var(--text-main);
  }
  
  .no-results-search button {
      padding: 10px 15px;
      background: var(--primary);
      border: none;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s ease;
  }
  
  .no-results-search button:hover {
      background: var(--primary-hover);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .no-results {
          padding: 20px;
          margin: 20px auto;
      }
  
      .no-results h3 {
          font-size: 1.5rem;
      }
  
      .no-results p {
          font-size: 0.9rem;
      }
  
      .no-results-search {
          max-width: 100%;
      }
  }

  @media (min-width: 992px) {
    .no-results-search.mobile {
      display: none !important;
    }
    }
    
    @media (max-width: 991px) {
      .no-results-search.mobile {
        max-width: 85%;
        margin-bottom: 10px;
      }
    }    


  

/* =========================
   Site Footer 
========================= */

.simple-footer{
    background:#000 !important;
    color:#aaa;
    text-align:center;
    padding:30px 15px;
    margin-top:40px;
    width:100%;
  font-family: 'Inter' sans-serif;
}

.simple-footer .footer-logo{
    margin-bottom:15px;
}

.simple-footer .footer-logo img{
    width:120px;
    height:auto;
    display:inline-block;
}

.simple-footer .footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    font-size:14px;
    margin-bottom:15px;
}

.simple-footer .footer-links a{
    color:#ccc;
    text-decoration:none;
}

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

.simple-footer .footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    font-size:18px;
    margin-bottom:15px;
}

.simple-footer .footer-social a{
    color:#ccc;
}

.simple-footer .footer-social a:hover{
    color:#fff;
}

.simple-footer .footer-copy{
    font-size:12px;
    color:#666;
}



/* =========================
   Footer Bottom Navigation 
========================= */

body .app-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-around;
    align-items: center;

    /* MATCH HEADER BLUE */
    background: linear-gradient(
        to top,
        #000,
        #000
    ) !important;

    padding: 6px 0 8px !important;
    z-index: 99999 !important;
box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6)!important;
    }

/* REMOVE ANY DARK LAYER */
body .app-bottom-nav::before,
body .app-bottom-nav::after {
    display: none !important;
}

/* NAV ITEMS */
body .app-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;

    color: #ffffff !important;
    font-size: 10px;
    opacity: 0.85;
    transition: all 0.2s ease;
}

/* ICONS (FontAwesome / SVG / ANYTHING) */
body .app-bottom-nav .nav-item i,
body .app-bottom-nav .nav-item svg,
body .app-bottom-nav .nav-item span {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;

    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* TEXT */
body .app-bottom-nav .nav-item p {
    margin: 0;
    font-size: 10px;
    color: #ffffff !important;
  font-family: 'inter', sans-serif;

}

/* ACTIVE TAB */
body .app-bottom-nav .nav-item.active {
    opacity: 1 !important;
    font-weight: 600 !important;
}

/* ACTIVE ICON POP */
body .app-bottom-nav .nav-item.active i,
body .app-bottom-nav .nav-item.active svg {
    transform: scale(1.2);
}

/* CLICK EFFECT */
body .app-bottom-nav .nav-item:active {
    transform: scale(0.9);
}

/* FORCE EVERYTHING INSIDE WHITE */
body .app-bottom-nav * {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
}

/* SAFE SPACE */
body {
    padding-bottom: 70px !important;
}

/* HIDE ON DESKTOP */
@media (min-width: 768px) {
    .app-bottom-nav {
        display: none !important;
    }
}



/* =========================
   Sticky player
========================= */

.xm-sticky-player{
    position:fixed;
    left:0;
    bottom:-120px;
    width:100%;

    background:#111;
    border-top:1px solid rgba(255,255,255,0.08);

    padding:10px 12px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:10px;

    z-index:99999;

    transition:all 0.35s ease;
}

.xm-sticky-player.active{
    bottom:0;
  margin-bottom: 45px;
}

/* =========================
LEFT (reduce overflow issue)
========================= */

.xm-player-left{
    display:flex;
    align-items:center;
    gap:10px;

    min-width:0; /* IMPORTANT FIX */
    flex:1;
}

.xm-player-thumb img{
    width:45px;
    height:45px;
    border-radius:8px;
    object-fit:cover;
    flex-shrink:0;
}

.xm-player-meta{
    min-width:0;
}

.xm-player-meta h4{
    color:#fff;
    font-size:13px;
    margin:0;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    max-width:140px;
}

.xm-player-meta p{
    color:#aaa;
    font-size:11px;
    margin:2px 0 0;
}

/* =========================
CENTER
========================= */

.xm-player-center{
    flex:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* smaller play button */
.xm-control-btn{
    width:38px;
    height:38px;

    border:none;
    border-radius:50%;

    background:#fff;
    color:#000;

    cursor:pointer;

    font-size:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:6px;
}

/* =========================
PROGRESS BAR FIX (MAIN FIX)
========================= */

.xm-progress-wrap{
    width:100%;
    max-width:100%;

    display:flex;
    align-items:center;
    gap:6px;
}

#xmCurrentTime,
#xmDuration{
    font-size:10px;
    color:#aaa;
    width:34px;
    text-align:center;
}

/* progress bar styling */
#xmProgress{
    flex:1;
    height:4px;
    cursor:pointer;
    accent-color:#fff;
}

/* =========================
RIGHT (optional hide on mobile)
========================= */

.xm-player-right{
    display:none; /* clean mobile UI */
}

/* =========================
MOBILE TWEAKS
========================= */

@media(max-width:768px){

    .xm-sticky-player{
        padding:8px 10px;
        gap:8px;
    }

    .xm-player-meta h4{
        max-width:110px;
        font-size:12px;
    }

    .xm-player-meta p{
        font-size:10px;
    }

    .xm-player-thumb img{
        width:40px;
        height:40px;
    }

}


  
/* ----------------------------
   Body wrapper
  ----------------------------- */

  
  .body-wrapper {
    justify-content: space-between;
    background: none;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    margin-bottom: 0px;
  }
  
  /* Homepage Layout */
  .homepage-container {
      display: flex !important;
      justify-content: space-between;
      gap: 20px;
  }
  
  /* Main Content */
  .main-content {
      width: 67%;
      align-self: flex-start;
      background: var(--mobile-header-bg);
      padding: 15px;
      border-radius: 10px;
  }
  
  @media (max-width: 991px) {
    .homepage-container {
      flex-direction: column;
      max-width: 100%;
      padding: 5px;
      margin: 0;
    }
    
    .main-content {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
    }
  }



  
/* ----------------------------
     Sidebar wrapper
  ----------------------------- */


  /* Sidebar Wrapper (Desktop) */
  .sidebar {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    flex: 1.5;
    margin-left: 2px;
  }
  
  /* Trending Sidebar Container */
  .trending-sidebar {
    background: var(--mobile-header-bg);
    padding: 15px;
    border-radius: 10px;
  }
  
  .trending-sidebar h3 {
    font-size: 20px;
    color: var(--menu-bg);
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  /* Trending Song List */
  .trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Trending Song Item */
  .trending-item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color-d);
    transition: background 0.3s ease;
  }
  
  .trending-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* Numbering Outside the Thumbnail */
  .trending-number {
    font-size: 16px;
    font-weight: bold;
    color: var(--body-text);
    margin-right: 10px;
    min-width: 20px;
    text-align: right;
    display: inline-block;
  }  
  
  /* Thumbnail Container */
  .trending-thumbnail {
    position: relative;
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .trending-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Trending Song Details */
  .trending-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 

.trending-sidebar .song-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}


.trending-sidebar .artist-name {
    font-size: 11px;
    color: var(--fartist-name);
    font-weight: bold;
}

/* Mobile Adjustments: Sidebar Moves Below Main Content */
@media (max-width: 991px) {
  .sidebar {
    width: 100%;
    margin: 20px 0 0 0;
    border-radius: 8px;
  }
  
  .trending-sidebar {
    border-radius: 8px;
  }

  .trending-number {
    font-size: 14px;
  }
}
  


  
  
/* ----------------------------
     Breadcrumbs 
  ----------------------------- */

  
  .breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 5px;
    padding-bottom: 7px;
  }
  
  .breadcrumbs-line {
    width: calc(100% + 20px);
    height: 1px;
    background-color: var(--border-color-d);
    margin: 0 -10px 10px;
  }

  .breadcrumbs-line-page {
    width: calc(100% + 30px);
    height: 1px;
    background-color: var(--border-color-d);
    margin: 0 -15px 15px;
  }
  
  .breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
  }
  
  .breadcrumb-separator {
    margin: 0 8px;
  }
  
  .breadcrumb-item.current {
    font-weight: bold;
  }
  


/* =========================
   Postlist 1
========================= */


  /* Song Section */
  .song-section {
      margin-bottom: 50px;
  }
  
  /* Section Header for Song Section */
  .song-section .section-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 15px;
      padding: 10px 15px;
      background: var(--menu-bg);
      border-radius: 5px;
  }
  
  .song-section .section-header h2 {
      font-size: 20px;
      color: var(--nav-link-underline);
      font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .song-section:last-of-type {
      margin-bottom: 0;
    }
  }
  
  /* Song List */
  .song-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .song-item {
      display: flex;
      align-items: center;
      padding: 12px 10px;
      border-bottom: 1px solid var(--border-color-d);
      transition: background 0.3s ease;
  }
  
  .song-item:hover {
      background: rgba(255, 255, 255, 0.05);
  }
  
  /* Thumbnail */
  .song-thumbnail {
      position: relative;
      width: 55px;
      height: 55px;
      overflow: hidden;
      border-radius: 8px;
      margin-right: 15px;
      flex-shrink: 0;
  }
  
  .song-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
  }
  
  /* Play Button Centered on Hover */
  .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 22px;
      color: var(--nav-link-underline);
      opacity: 0;
      transition: opacity 0.3s ease;
  }
  
  .song-thumbnail:hover .play-icon {
      opacity: 1;
  }
  
  /* Song Details */
  .song-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  
  /* See More Button at Bottom */
  .see-more-container {
      margin-top: 15px;
      text-align: right;
  }
  
  .see-more-btn {
      display: inline-block;
      background: var(--menu-bg);
      color: var(--nav-link-underline);
      font-size: 14px;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
  }
  
  .see-more-btn:hover {
      background: var(--deep-blue-hover);
  }

  /* Load More */
  .load-more-wrapper {
      margin-top: 15px;
      text-align: center;
  }
  
  .load-more-btn {
      display: inline-block;
      background: var(--menu-bg);
      color: var(--nav-link-underline);
      font-size: 14px;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
  }
  
  .load-more-btn:hover {
      background: #888;
  }
  
  .song-section .song-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--body-text);
  }
  
  .song-section .artist-name {
  font-size: 12px;
  color: var(--fartist-name);
  font-weight: bold;
  }
  
  .song-section .artist-name a {
  font-size: 12px;
  color: var(--fartist-name);
  font-weight: bold;
  }




/* =========================
   Heading 
========================= */


/* Red Ribbon Header */
.custom-daily-header {
    border-bottom: 3px solid var(--primary);
    margin-bottom: 25px;
    height: 35px;
    position: relative;
    width: 100%;
}
.custom-daily-header h2 span {
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    font-style: italic;
    text-transform: uppercase;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
}





/* =========================
   Index section 
========================= */



/* SECTION */
.xm-section-title {
    font-size: 15px;
    font-weight: 600;
}

/* ROW */
.xm-row-wrapper { position: relative; margin-bottom: 24px; }

.xm-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.xm-row::-webkit-scrollbar { display: none; }

/* CARD */
.xm-card {
    flex: 0 0 42%;
    max-width: 42%;
    scroll-snap-align: start;
}

@media(min-width:768px){
    .xm-card {
        flex: 0 0 18%;
        max-width: 18%;
    }
}

/* IMAGE */
.xm-thumb {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
}

.xm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.xm-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* GENRE */
.xm-genre {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

/* PLAY BUTTON */
.xm-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #2563eb;
    border-radius: 50%;
}

.xm-play::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 10px;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* TEXT */
.xm-card p {
    font-size: 13px;
    margin-top: 8px;
}

.xm-artist {
    font-size: 11px;
    color: #9ca3af;
}


/* ================================
   SONGS FOR YOU 
================================ */

.songs-for-you {
    background: #0b0b0b;
    padding: 12px;
    margin-top: 25px;
    color: #fff;
    border-radius: 10px;
}

/* HEADER */
.sfy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sfy-header h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.sfy-header p {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

/* SEE ALL */
.see-all {
    color: #f5b400;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
}

/* SCROLL */
.sfy-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
}

/* SCROLLBAR */
.sfy-scroll::-webkit-scrollbar {
    height: 4px;
}
.sfy-scroll::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

/* CARD */
.sfy-card {
    min-width: 105px;
    max-width: 105px;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.sfy-card:hover {
    transform: translateY(-3px);
}

.sfy-card a {
    text-decoration: none;
    display: block;
}

/* IMAGE */
.sfy-thumb {
    position: relative;
}

.sfy-thumb img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* PLAY BUTTON */
.sfy-thumb::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.2s ease;
}

.sfy-card:hover .sfy-thumb::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* TITLE */
.sfy-title {
    font-size: 12px;
    margin: 5px 0 2px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;

    /* truncate */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ARTIST */
.sfy-artist {
    font-size: 10px;
    color: #888;

    /* truncate */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================
   DESKTOP (SLIGHTLY BIGGER)
================================ */
@media (min-width: 769px) {

    .songs-for-you {
        padding: 15px;
    }

    .sfy-card {
        min-width: 130px;
        max-width: 130px;
    }

    .sfy-thumb img {
        height: 130px;
    }

    .sfy-title {
        font-size: 13px;
    }

    .sfy-artist {
        font-size: 11px;
    }
}

  
  /* Scrolling Banners Container */
  .scrolling-banners {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      overflow: hidden;
      margin: 0 0 30px -5px;
  }
  
  /* Scroll Buttons */
  .scroll-btn {
      background: var(--menu-bg);
      border: none;
      padding: 8px 12px;
      font-size: 22px;
      color: var(--nav-link-color);
      cursor: pointer;
      transition: background 0.3s ease;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
  }
  
  .scroll-btn:hover {
      background: rgba(255, 255, 255, 0.5);
  }
  
  /* Disable Previous Button When at First Banner */
  .prev-btn:disabled {
      background: rgba(255, 255, 255, 0.1);
      cursor: default;
  }
  
  /* Positioning Scroll Buttons */
  .prev-btn {
      left: 10px;
  }
  .next-btn {
      right: 10px;
  }
  
  .next-btn:disabled {
      background: rgba(255, 255, 255, 0.1);
      cursor: default;
  }
  
  /* Banner Wrapper (Track) */
  .banner-wrapper {
      display: flex;
      transition: transform 0.4s ease-in-out;
      width: 100%;
      max-width: 100%;
  }
  
  /* Ensure banners take the right space */
  .banner {
      flex: 0 0 calc(50% - 5px);
      padding: 5px;
      text-align: center;
      position: relative;
      transition: transform 0.3s ease;
      height: 250px;
      box-sizing: border-box;
  }
  
  /* Banner Image */
  .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
  }
  
  /* Banner Category */
  .banner-category {
      position: absolute;
      top: 10px;
      left: 15px;
      background: var(--menu-bg);
      padding: 5px 10px;
      color: var(--nav-link-underline);
      font-size: 13px;
      font-weight: bold;
      border-radius: 3px;
  }
  
  .banner-category a {
      text-decoration: none;
      color: var(--nav-link-underline);
  }
  
  /* Banner Title */
  .banner-title {
      position: absolute;
      bottom: 10px;
      left: 15px;
      font-size: 15px;
      font-weight: bold;
      color: var(--nav-link-underline);
      background: var(--banner-title-bg);
      padding: 5px 10px;
      border-radius: 5px;
  }
  
  /* Play Button (Hidden Initially) */
  .play-circle {
      position: absolute;
      bottom: 15px;
      right: 15px;
      font-size: 30px;
      color: var(--nav-link-underline);
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s;
  }
  
  /* Show Play Button on Hover */
  .banner:hover .play-circle {
      opacity: 1;
  }
  
  /* Responsive Fixes */
  @media (max-width: 767px) {
      .banner {
          flex: 0 0 100%;
          height: 200px;
      }
      .scroll-btn {
          font-size: 18px;
          padding: 6px 10px;
      }
    
      .scrolling-banners {
          margin: 0 0 20px 0;
          width: 100%;
      }
      .homepage-container .banner {
          padding: 0;
      }
  }
  


/* ===== MAIN CONTAINER ===== */
.xm-home {
    background: linear-gradient(to bottom, #0b0f1a, #0f172a);
    color: #fff;
    padding: 14px 0 14px 14px;
    border-radius: 18px;
    overflow: hidden;
}

/* HEADER */
.xm-header { margin-bottom: 16px; padding-right: 14px; }
.xm-greeting { font-size: 11px; color: #94a3b8; }
.xm-title { font-size: 19px; font-weight: 700; }


  /* Add spacing between Latest Music and New Albums */
  .latest-music {
      margin-bottom: 50px;
  }
  
  .new-albums {
      margin-bottom: 50px;
  }
  
  /* Section Headers */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 7px;
    border-bottom: 3px solid var(--menu-bg);
    
}

.section-header h2 {
    font-size: 20px;
    color: var(--menu-bg);
    font-weight: bold;
}

.section-header .see-more {
    text-decoration: none;
    color: var(--menu-bg);
    font-weight: bold;
    font-size: 12px;
}

.section-header .see-more::after {
    content: "&raquo;";
}
  
  /* Music & Album Grid */
.music-grid, .album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.album-grid .album-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--nav-link-underline);
}

/* Music & Album Cards */
.music-card, .album-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--mobile-header-bg);
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

/* Let all grid items stretch to same height per row */
.music-grid > .music-card,
.album-grid > .album-card {
    align-self: stretch;
}

/* Music & Album Thumbnail */
.music-thumbnail, .album-thumbnail {
    position: relative;
    overflow: hidden;
}

.music-thumbnail img, .album-thumbnail img {
    width: 100%;
    height: 160px;
    display: block;
    object-fit: fill;
    border-radius: 5px;
}

/* Info section stretches with flex */
.music-info, .album-info {
    padding: 10px;
    flex-grow: 1;
}

.album-info .artist-name {
      margin-top: -6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--body-text);
  }

.music-info .artist-name {
      font-size: 13px;
      font-weight: bold;
      color: var(--body-text);
  }

/* Responsive Fix for Thumbnail */
@media (max-width: 768px) {
    .music-thumbnail img, .album-thumbnail img {
        width: 100%;
        height: 160px;
        display: block;
        object-fit: fill;
    }
}
  
  /* Show Play Button on Hover */
  .music-thumbnail:hover .play-icon, .album-thumbnail:hover .play-icon {
      opacity: 1;
  }
  
  /* Music & Album Info */
  .music-info, .album-info {
    padding-bottom: 10px;
    padding-left: 0;
    text-align: left;
    background: none;
}

.song-title, .album-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--nav-link-underline);
}

.music-card .artist-name {
    font-size: 12px;
    color: var(--fartist-name);
    font-weight: 600;
}
  
.album-card .artist-name {
    font-size: 12px;
    color: var(--fartist-name);
    font-weight: 600;
  }
  
  .music-card .artist-name a {
    font-size: 12px;
    color: var(--fartist-name);
    font-weight: bold;
}

.album-card .artist-name a {
    font-size: 12px;
    color: var(--fartist-name);
    font-weight: bold;
  }

  /* Responsive: 2 Columns on Mobile */
  @media (max-width: 768px) {
      .music-grid, .album-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      .section-header h2 {
          font-size: 18px;
      }
      .latest-music, .new-albums {
          margin-bottom: 40px;
      }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
  .music-grid, .album-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}




/* ===== Archive section===== */

  /* Section Header for Song Section */
  .archive-section .archive-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 15px;
      padding: 5px 0 15px 0;
      border-bottom: 3px solid var(--menu-bg);
      background: none;
  }
  
  .archive-section {
    margin-bottom: 10px;
  }
  
  .archive-section .section-header h2 {
      font-size: 20px;
      color: var(--nav-link-underline);
      font-weight: bold;
  }
  
  .archive-section .song-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--body-text);
  }
  
  .archive-section .artist-name {
    font-size: 13px;
    color: var(--def-text-color);
  }
  
  .archive-section .artist-name a {
    font-size: 13px;
    color: var(--def-text-color);
  }
  
  @media (max-width: 768px) {
    .archive-section:last-of-type {
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 769px) {
    .archive-section {
      padding: 10px;
    }
  }
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  
  .pagination .page-numbers {
    margin: 0 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: var(--nav-link-underline);
    background-color: var(--menu-bg);
    border: 1px solid var(--border-color-d);
    border-radius: 3px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .pagination .page-numbers:hover {
    background-color: var(--search-btn-bg-hover);
    color: #fff;
  }
  
  /* Active page styling */
  .pagination .page-numbers.current {
    background: none;
    color: var(--body-text);
    border: 1px solid var(--accent-color);
    cursor: default;
    padding: 7px 14px;
  }
  
  .pagination .page-numbers.dots {
    pointer-events: none;
    border: none;
    background: none;
    font-size: 16px;
    color: var(--body-text);
  }
  
  /* Style the Previous and Next links with SVG and text */
  .pagination .prev,
  .pagination .next {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .pagination .pagination-icon {
    display: inline-block;
    vertical-align: middle;
  }
  
  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .pagination {
      padding: 10px 0;
      font-size: 14px;
    }
    
    .pagination .page-numbers {
      margin: 0 3px;
      padding: 3px 8px;
    }
    
    .pagination .page-numbers.dots {
      font-size: 14px;
    }
    
    /* Active page styling */
  .pagination .page-numbers.current {
    background: none;
    color: var(--body-text);
    border: 1px solid var(--accent-color);
    cursor: default;
    padding: 4px 9px;
  }
  }
  
  .archive-description {
    background: var(--mobile-header-bg);
    padding: 20px;
    padding-bottom: 40px; /* Increased bottom padding for spacing */
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .archive-description p {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--body-text);
  }
  
  /* Last Updated label styled as a badge in the bottom-right */
  .last-updated {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--rartist-name);
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
  }
  
  .last-updated i {
    margin-right: 5px;
    font-size: 16px;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .archive-description {
      padding: 15px;
      padding-bottom: 35px;
    }
    .archive-description p {
      font-size: 14px;
    }
    .last-updated {
      font-size: 12px;
      bottom: 8px;
      right: 8px;
      padding: 4px 8px;
    }
  }
  
  .hottest-search {
    margin: 10px 15px;
  }
  
  .gb-space {
    border: none;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .hottest-label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--body-text);
    margin-bottom: 10px;
  }
  
  .hottest-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hottest-buttons .search-btn {
    background: none;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .hottest-buttons .search-btn:hover {
    background: var(--search-btn-bg);
    color: #fff;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .hottest-label {
      font-size: 16px;
    }
    
    .hottest-buttons .search-btn {
      padding: 6px 12px;
      font-size: 13px;
    }
  }




 /* ============================
   Music Single Content Styling
   ============================ */

  /* Mobile */


/* Content Body Typography */
.article-content-body {
    font-family: 'Lora', serif; 
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-text);
}

.article-content-body p {
    margin-bottom: 24px;
}


  .sp-song-info {
    flex: 1;
  }
  
  .sp-song-category {
    font-size: 14px;
    font-weight: bold;
    color: var(--body-text);
    margin-bottom: 30px;
    letter-spacing: 1px;
    padding-top: 10px;
  }
  
  .sp-song-details {
    list-style: none;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color-d);
  }
  
  .sp-song-details li {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--body-text);
    padding-bottom: 5px;
  }
  
  .sp-song-details li strong {
    color: var(--text-color);
    margin-right: 5px;
  }
  
  .sp-song-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .sp-song-controls button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--menu-bg);
    transition: color 0.3s ease;
  }
  
  .sp-song-controls button .fa-circle-play, .sp-song-controls button .fa-circle-pause {
    font-size: 35px;
  }
  
  /* Modern Share Button */
  .sp-share-btn {
    background-color: var(--menu-bg) !important;
    color: var(--nav-link-color) !important;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
    font-size: 14px !important;
    display: flex;
    align-items: center;
  }
  
  .sp-share-btn:hover {
    background-color: #2187ee !important;
  }
  
  .sp-share-btn span {
    margin-left: 5px;
  }
  
  /* Hover for both controls */
  .sp-song-controls button:hover {
    color: #2187ee;
  }
  
  .sp-save-audio {
    background-color: var(--menu-bg) !important;
    color: var(--nav-link-color) !important;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
    font-size: 14px !important;
    display: flex;
    align-items: center;
  }
  
  .sp-save-audio svg {
    margin-right: 5px;
    fill: var(--nav-link-color);
    width: 18px;
    height: 18px;
  }

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



@media (max-width:768px){
    .sp-song-info {
      width: 100%;
      align-self: flex-start;
      text-align: left;
      margin-left: 10px;
    }
    
    .sp-song-details li {
      font-size: 15px;
      padding-bottom: 10px;
    }
    
    .sp-song-controls {
      justify-content: flex-start;
    }
  }

  
  /* Post Title Styling */
  .sp-post-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--body-text);
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.3;
    margin-left: 20px;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .sp-post-title {
      font-size: 22px;
      margin-left: 10px;
    }
  }
  
  .sp-tabs {
    margin: 20px;
    font-family: Lora;
  }

.sp-tabs p:first-of-type {
    font-weight: bold;
}

.post-tabs h1,h2,h3,h4,h5,h6 {
    margin-bottom: 10px;
    
}
  
  /* Tab Headers */
  .sp-tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color-d);
    margin-bottom: 15px;
  }
  
  .sp-tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--body-text);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  
  .sp-tab-btn.active {
    border-bottom: 4px solid var(--menu-bg);
  }
  
  .sp-tab-panel {
    display: none;
  }
  
  .sp-tab-panel.active {
    display: block;
  }
  

/* Container and Text settings */
.sp-tab-text {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    color: var(--body-text);
}

/* Paragraph spacing and inheritance */
.sp-tab-text p {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    margin-bottom: 20px;
}
  
  /* Toggle Button */
  .sp-toggle-btn {
    background: none;
    border: 1px solid var(--border-color-d);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--menu-bg);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .sp-toggle-btn:hover {
    background-color: #2187ee;
    color: var(--nav-link-color);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Keep headers and text aligned left on mobile */
    .sp-tab-headers {
      justify-content: flex-start;
    }
    .sp-tab-btn {
      font-size: 15px;
    }
    
    .sp-tabs {
    margin: 10px;
  }
  }
  
  .sp-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    color: var(--body-text);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  /* Footer play/pause button */
  .sp-player-play-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--menu-bg);
    cursor: pointer;
  }
  
  .sp-player-track-info {
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0 15px;
  }
  
  .sp-player-cover {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
  }
  
  .sp-player-details {
    display: flex;
    flex-direction: column;
  }
  
  .sp-player-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--body-text);
  }
  
  .sp-player-artist {
    font-size: 13px;
    color: var(--body-text);
  }
  
  .sp-player-timing {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .sp-current-time,
  .sp-total-time {
    font-size: 12px;
  }
  
  .sp-progress-bar {
    width: 150px;
    height: 4px;
    background: var(--border-color-d);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  
  .sp-progress {
    width: 0%;
    height: 100%;
    background: #2187ee;
    border-radius: 2px;
  }
  
  .sp-player-close {
    background: none;
    border: none;
    font-size: 15px;
    color: var(--body-text);
    cursor: pointer;
    display: inline-flex;
      margin-top: -40px;
  }
  
  @media (max-width: 768px) {
    .sp-audio-player {
      align-items: stretch;
      padding: 10px;
      width: 100%;
      border-top: 2px solid var(--menu-bg);
    }
    
    .sp-player-play-btn {
    background: none;
    border: none;
    font-size: 25px;
    color: var(--menu-bg);
    cursor: pointer;
      z-index: 999;
      text-shadow: 0 0 6px #000000;
      margin-right: -3px;
  }
  
  .sp-player-cover {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    position: absolute;
    margin-left: -27px;
  }
    
   .sp-player-details {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
  }
    
    .sp-player-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--body-text);
  }
  
  .sp-player-artist {
    font-size: 11px;
    color: var(--body-text);
  }
    
    .sp-player-track-info {
      margin: 10px 0;
    }
    
    .sp-player-timing {
      justify-content: space-between;
      width: 45%;
    }
    
    .sp-player-close {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--body-text);
    cursor: pointer;
     display: inline-flex;
      margin-top: -10px;
  }
  }
  

.sp-song-featured{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.sp-song-image{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.sp-song-caption{
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    margin: 0;
    padding: 10px 15px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
}

.in-post-ad.in-post-ad-1.in_post_ad_1-v2{
    text-align: center;
    margin: 10px auto;
    padding: 15px;
    max-width: 100%;
    position: relative;
}

.in-post-ad.in-post-ad-1.in_post_ad_1-v2::before{
    content: "Advertisement";
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 10px;
    text-align: center;
}



.xl-disclaimer-box {
    background: #f3f3f3;
    padding: 20px 25px;
    border-radius: 12px;
    position: relative;
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.7;
}

.xl-disclaimer-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 6px;
    background: #0073ff; /* BLUE */
    border-radius: 10px;
}

.xl-contact {
    margin-top: 10px;
    font-weight: 600;
}

.xl-contact a {
    color: #0073ff; /* BLUE LINK */
    text-decoration: none;
}

.xl-contact a:hover {
    text-decoration: underline;
}

#sticky-player{
    display:none;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#000;
    padding:12px;
    box-sizing:border-box;
    z-index:9999;
    box-shadow:0 -2px 10px rgba(0,0,0,.3);
margin-bottom: 45px;}

#sp-close{
    position:absolute;
    top:8px;
    right:10px;
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.sp-info{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.sp-info img{
    width:45px;
    height:45px;
    object-fit:cover;
    border-radius:6px;
}

.sp-title{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.sp-artist{
    color:#aaa;
    font-size:12px;
}

.sp-progress-row{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    margin-bottom:10px;
}

.sp-progress-row button{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    flex-shrink:0;
}

#sp-progress{
    flex:1;
    height:4px;
    appearance:none;
    -webkit-appearance:none;
    background:#333;
    border-radius:10px;
    outline:none;
}

/* thumb */
#sp-progress::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
}

#sp-progress::-moz-range-thumb{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
}
.sp-controls{
    display:flex;
    justify-content:center;
    gap:20px;
}

.sp-controls button{
    background:none;
    border:none;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}


  

/* ============================
   Social Follow Box Styling
   ============================ */
.social-follow-box {
    background: linear-gradient(135deg, var(--menu-bg) 0%, var(--deep-blue-hover) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle background glow effect */
.social-follow-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.social-follow-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff !important;
    position: relative;
    z-index: 1;
}

.social-follow-box p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #eee !important;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-btn i {
    font-size: 18px;
}

/* Twitter / X Button */
.social-btn.twitter {
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-btn.twitter:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Telegram Button */
.social-btn.telegram {
    background: #229ED9;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-btn.telegram:hover {
    background: #1c8ac0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .social-follow-box {
        padding: 25px 20px;
        margin: 20px 10px;
    }
    .social-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .social-btn {
        width: 100%;
    }
}






  /* ----------------------------
     PageBody Container
  ----------------------------- */
  .pagebody {
    margin: 5px auto;
    padding: 15px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
  }
  
  .pagebody p {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    margin-bottom: 20px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
    list-style: disc;
  }
  
  .pagebody li {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 15px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
  }
  
  @media (max-width: 991px) {
    .pagebody {
    margin: 5px auto;
    padding: 5px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
  }
    .pagebody p {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    margin-bottom: 20px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
  }
  
  .pagebody li {
    font-family: "Lora", Georgia, serif;
    font-size: 1.125rem;
    letter-spacing: -.01em;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 15px;
    background: var(--mobile-header-bg);
    border-radius: 8px;
  }
  }
  
  .page-heading {
    margin-bottom: 30px;
  }
  .page-heading h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--body-text);
    border-bottom: 2px solid var(--menu-bg); /* Bottom border */
    padding-bottom: 5px;
  }
  .page-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-text);
  }
  

/* =========================
 PAGE  STICKY PLAYER
========================= */

#sticky-player{
    display:none;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#000;
    padding:12px;
    box-sizing:border-box;
    z-index:9999;
    box-shadow:0 -2px 10px rgba(0,0,0,.4);
margin-bottom: 45px;}

#sp-close{
    position:absolute;
    top:8px;
    right:10px;
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/* INFO */
.sp-info{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.sp-info img{
    width:45px;
    height:45px;
    border-radius:6px;
    object-fit:cover;
}

.sp-title{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.sp-artist{
    color:#aaa;
    font-size:12px;
}

/* =========================
   PROGRESS + CONTROLS ROW
========================= */

.sp-progress-row{
    display:flex;
    align-items:center;
    gap:10px;
}

.sp-progress-row button{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    flex-shrink:0;
}

/* PROGRESS BAR */
#sp-progress{
    flex:1;
    height:4px;
    appearance:none;
    -webkit-appearance:none;
    background:#333;
    border-radius:10px;
    outline:none;
}

/* THUMB */
#sp-progress::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
}

#sp-progress::-moz-range-thumb{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
}

.spp-song-controls{
    display:flex;
    align-items:center;
    gap:10px;
}

/* COMMON STYLE FOR BOTH BUTTONS */
.spp-play-btn,
.spp-share-btn{
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    font-size:16px;
}

/* PLAY BUTTON */
.spp-play-btn{
    background:#111; /* music green */
    color:#fff;
}

/* SHARE BUTTON */
.spp-share-btn{
    background:#111;
    color:#fff;
    position:relative;
}

/* hide SHARE text */
.spp-share-btn span{
    display:none;
}

/* hover effect */
.spp-play-btn:hover,
.spp-share-btn:hover{
    transform:scale(1.05);
    transition:0.2s ease;
}


  
  /* Comments Section Container */

  .logged-in-user {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .comments-section {
    background: var(--mobile-header-bg);
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
  }
  
  /* Styled Comments Header */
  .comments-header {
    font-size: 20px;
    color: var(--body-text);
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--border-color-d);
    padding-bottom: 10px;
  }
  
  /* Comments List */
  .comments-list {
    margin-bottom: 20px;
  }
  
  /* Individual Comment */
  .comment {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color-d);
  }
  
  /* Remove bottom border for nested replies and add a top border instead */
  .comment.reply {
    border-bottom: none;
    border-top: 1px solid var(--border-color-d);
    padding-top: 15px;
  }
  
  /* Comment Header */
  .comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  /* Author Info */
  .comment-author-avatar {
    margin-right: 10px;
  }
  
  .comment-author-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .comment-author-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .comment-author-name {
    font-weight: bold;
    font-size: 14px;
  }
  
  .comment-date {
    font-size: 12px;
    color: var(--rartist-name);
  }
  
  /* Comment Body */
  .comment-body p {
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0 10px 0;
  }
  
  /* Comment Actions */
  .comment-actions {
    display: flex;
    gap: 10px;
    font-size: 14px;
  }
  
  .reply-btn,
  .love-btn {
    background: none;
    border: none;
    color: var(--search-btn-bg);
    cursor: pointer;
    transition: color 0.3s;
    font-size: 14px;
  }
  
  .reply-btn:hover,
  .love-btn:hover {
    color: var(--deep-blue-hover);
  }
  
  .love-btn i {
    margin-right: 4px;
  }
  
  /* When loved, highlight in red */
  .love-btn.loved {
    color: #e74c3c;
  }
  
  .love-count {
    font-size: 14px;
  }
  
  /* Reply Form Container */
  .reply-form-container {
    margin-top: 10px;
    margin-left: 50px;
  }
  
  /* Reply Form */
  .reply-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .reply-form input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color-d);
    border-radius: 4px;
    background: var(--body-bg);
    color: var(--body-text);
  }
  
  .reply-form button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: var(--search-btn-bg);
    color: var(--nav-link-underline);
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .reply-form button:hover {
    background: var(--search-btn-bg-hover);
  }
  
  /* Nested Replies Container */
  .replies {
    margin-top: 10px;
    margin-left: 50px;
  }
  
  /* Top-Level Comment Form */
  .comment-form {
    background: var(--menu-bg);
    padding: 20px;
    border-radius: 8px;
  }
  
  .comment-form h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--nav-link-underline);
  }
  
  .comment-form input[type="text"],
  .comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color-d);
    border-radius: 4px;
    background: var(--body-bg);
    color: var(--body-text);
    margin-bottom: 10px;
  }
  
  .comment-form button {
    background: var(--search-btn-bg);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    color: var(--nav-link-underline);
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .comment-form button:hover {
    background: var(--search-btn-bg-hover);
  }

  .comment-success {
    background-color: #e0f7e9;
    color: #256029;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    animation: fadeSuccess 0.4s ease;
  }
  
  @keyframes fadeSuccess {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }  



/* ==========================
   404 ERROR PAGE
========================== */

.error {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 50px auto;
    padding: 40px 20px;
    background: var(--mobile-header-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 900px;
    min-height: 350px;
    box-sizing: border-box;
}

.error-content {
    max-width: 550px;
    width: 100%;
}

.error-code {
    margin: 0;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: var(--body-text);
    letter-spacing: -2px;
}

.error-text {
    margin: 20px 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--body-text);
    opacity: 0.9;
}

.error-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: var(--menu-bg);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.error-btn:hover {
    background: var(--deep-blue-hover);
    transform: translateY(-2px);
}

.error-btn:active {
    transform: translateY(0);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .error {
        margin: 30px 15px;
        padding: 30px 20px;
        min-height: 280px;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-text {
        font-size: 1rem;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {

    .error {
        margin: 20px 10px;
        padding: 25px 15px;
        min-height: 240px;
        border-radius: 10px;
    }

    .error-code {
        font-size: 4rem;
    }

    .error-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .error-btn {
        width: 100%;
        max-width: 220px;
        padding: 12px 18px;
        font-size: 14px;
    }
}


  /* =====================
  AUTHOR STYLESHEETS 
   ===================== */

.loadedmore-author-box {
    border: 2px solid var(--border-color) !important;
    padding: 8px;
    position: relative;
    background: var(--bg-main);
    margin: 20px 0;
  border-radius: 8px;
}

.loadedmore-about-label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 12px;
    font-size: 13px;
    color: #fff;
    background-color: var(--primary) !important;
    border-radius: 0 0 0 4px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.loadedmore-author-mobile {
    display: block;
}

.loadedmore-author-avatar {
    margin: 0 auto 15px auto;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    padding: 2px;
    background: var(--bg-main);
    text-align: center;
    width: 90px; /* Fixed width to match avatar size */
    height: 90px; /* Fixed height to match avatar size */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure perfect circle */
}

.loadedmore-author-avatar img {
    border-radius: 50%;
    display: block;
    width: 90px !important; /* Force exact size */
    height: 90px !important; /* Force exact size */
    object-fit: cover; /* Maintain aspect ratio */
}

.loadedmore-author-content {
    text-align: center;
}

.loadedmore-author-header {
    margin-bottom: 10px;
}

.loadedmore-author-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.loadedmore-author-bio {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: center;
}

.loadedmore-author-social {
    margin-top: 10px;
    text-align: center;
}

.loadedmore-social-link {
    color: var(--text-main) !important;
    margin: 0 12px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.loadedmore-social-link:hover {
    opacity: 0.7;
}

/* Ensure Font Awesome icons display */
.loadedmore-social-link .fa {
    margin-right: 4px;
    font-size: 18px;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .loadedmore-author-box {
        padding: 20px;
    }
    
    .loadedmore-author-mobile {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .loadedmore-author-avatar {
        margin: 0 20px 0 0;
        float: none;
        flex-shrink: 0;
    }
    
    .loadedmore-author-content {
        text-align: left;
        flex: 1;
    }
    
    .loadedmore-author-bio {
        text-align: left;
    }
    
    .loadedmore-author-social {
        text-align: left;
    }
    
    .loadedmore-social-link {
        margin: 0 12px 0 0;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .loadedmore-author-box {
        padding: 15px 8px 12px 8px;
    }
    
    .loadedmore-author-avatar {
        margin: 0 auto 12px auto;
    }
    
    .loadedmore-author-name {
        font-size: 16px;
    }
    
    .loadedmore-author-bio {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .loadedmore-social-link {
        margin: 0 10px;
        font-size: 14px;
    }
    
    .loadedmore-about-label {
        font-size: 11px;
        padding: 5px 10px;
    }
  
}




