#main {
  opacity: 1; /* ✅ visible by default */
  transition: opacity 0.4s ease-in-out;
}

#main.fade-transition {
  opacity: 0;
}

#main.fade-in {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajax Error Layout Start */
.ajax-error-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.ajax-error-box {
  background: #fff;
  border: 1px solid #fd0094;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 12px rgba(253, 0, 148, 0.2);
  text-align: left;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode .ajax-error-box {
  background: #1a1a1a;
  border-color: #fd0094;
  color: #eee;
}

.ajax-error-icon {
  font-size: 48px;
  margin-bottom: 40px!important;
  margin-top: 20px;
  color: #fd0094;
}

.ajax-error-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

body.dark-mode .ajax-error-title {
  color: #fff;
}

.ajax-error-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

body.dark-mode .ajax-error-message {
  color: #ccc;
}

.ajax-error-tips {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px;
  font-size: 15px;
  color: #444;
}

.ajax-error-tips li {
  margin: 6px 0;
}

body.dark-mode .ajax-error-tips {
  color: #bbb;
}

.ajax-retry-button {
  background: #fd0094;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ajax-retry-button:hover {
  background: #e60084;
}

body.dark-mode .ajax-retry-button {
  background: #fd0094;
  color: #fff;
}

body.dark-mode .ajax-retry-button:hover {
  background: #e60084;
}
/* Ajax Error Layout End */
.new-songs-genre-dropdown,
.archive-genre-dropdown,
.albums-genre-dropdown{
	margin-left: 10px!important;
	margin-bottom: -10px!important;
	margin-top: 0!important;
}

.new-songs-genre-dropdown {
	margin-bottom: 15px!important;
}

.albums-genre-dropdown {
	margin-top: 15px!important;
	margin-bottom: 5px!important;
}

.genre-dropdown {
  position: relative;
  display: inline-block;
  max-width: fit-content;
  margin: 20px 0 0 20px;
}

.genre-dropdown select {
  padding: 0.6rem 2.5rem 0.6rem 1rem; /* space for icon */
  font-size: 1rem;
  border: 2px solid #fd0094!important;
  border-radius: 6px;
  background-color: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
	
}

.genre-dropdown .dropdown-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fd0094;
  font-size: 1rem;
}

 
/* === Base Styles === */

.audio-player-ui {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  box-shadow: 8px 4px 12px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px 5px 20px;
  font-family: 'Segoe UI', sans-serif;
  z-index: 900;
	  transition: background 0.5s ease;
}

.player-thumbnail img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.player-info {
  flex: 1;
  margin-bottom: 5px;
  line-height: 17px;
  max-width: 100%;
  overflow: hidden;
}

.player-title,
.player-artist {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.player-artist {
  font-weight: 600;
  font-size: 13px;
  color: #bbb;
}

.player-artist .artist-link {
  color: #bbb;
  text-decoration: none;
}

.player-artist .artist-link:hover {
  text-decoration: underline;
}

.player-song-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.player-song-link:hover {
  text-decoration: underline;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.player-toggle,
.player-prev,
.player-next,
.player-settings,
.player-queue {
  background: none;
  border: none;
  cursor: pointer;
	font-size: 14px;
  color: #bbb;
  transition: color 0.2s ease;
}

.player-toggle {
  font-size: 22px;
  color: #bbb;
}

.player-toggle i {
  font-size: 22px;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  transform-origin: center;
  backface-visibility: hidden;
}

.player-toggle:hover i,
.player-prev:hover i,
.player-next:hover i,
.player-queue:hover i,
.player-settings:hover i {
  color: #fd0094 !important;
}

.player-duration {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 5px;
}

.player-close {
  display: none;
  position: absolute;
  top: 3px;
  right: 10px;
  cursor: pointer;
  z-index: 1000;
}

.player-close i {
  font-size: 18px;
  color: #333;
}

.player-close:hover i {
  color: #fd0094 !important;
}

/* === Progress Bar === */

.player-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #eee;
  cursor: pointer;
}

.player-progress-fill {
  height: 100%;
  background-color: #fd0094;
  width: 0%;
  position: relative;
  transition: width 0.2s ease;
}

.player-progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #999;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.player-progress-handle:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  background-color: #eee;
  transform: translate(-50%, -50%) scale(1.2);
}

/* === Queue Panel === */

.player-queue-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 280px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 0 10px 15px 10px;
  z-index: 950;
}

.queue-header {
  position: sticky;
  top: 0;
  background: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 0 10px;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.player-queue-panel h3 {
  margin-top: 0;
  font-size: 18px;
  color: #fd0094;
  text-align: center;
}

#queue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#queue-list li {
  scroll-margin-top: 65px;
  padding: 10px 10px !important;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

#queue-list li:hover {
  background: #f9f9f9;
}

#queue-list li.active {
  border: 1px solid #f90094 !important;
  background: #fff0f5 !important;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4rem;
}

.queue-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.queue-text {
  flex: 1;
  overflow: hidden;
}

.queue-title {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-artist {
  font-size: 12px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-artist .artist-link {
  cursor: pointer;
  color: #666;
  text-decoration: none;
}

.close-queue-panel {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s ease;
}

.close-queue-panel:hover {
  color: #fd0094;
}

/* === Settings Panel === */

.player-settings-panel {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: #111;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
  z-index: 1000;
  color: #fff;
  font-size: 14px;
  transform-origin: bottom;
}

.player-settings-panel label {
  display: block;
  margin-bottom: 5px;
}

.close-settings-panel {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s ease;
}

.close-settings-panel:hover {
  color: #fd0094;
}

#speed-slider,
#volume-slider {
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
}

#speed-display {
  float: right;
  font-weight: bold;
  color: #fd0094;
}

#speed-slider::-webkit-slider-thumb,
#volume-slider::-webkit-slider-thumb {
  background: #fd0094;
  border: none;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

#speed-slider::-webkit-slider-runnable-track,
#volume-slider::-webkit-slider-runnable-track {
  background: #ccc;
  height: 4px;
  border-radius: 2px;
}

.settings-button-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.settings-button-row button {
  flex: 1;
  margin-top: 8px;
  padding: 8px 0;
}

/* === Reset Button === */
.reset-settings-btn {
  background: none;
  border: 1px solid #888;
  color: #ccc;
  padding: 6px 8px !important;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.reset-settings-btn i {
  color: inherit;
  transition: color 0.2s ease;
}

.reset-settings-btn:hover {
  border-color: #fd0094;
  color: #fd0094;
}

.reset-settings-btn:hover i {
  color: #fd0094 !important;
}

/* === Repeat Button === */
.repeat-one-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: 1px solid #fd0094;
  color: #fd0094;
  padding: 6px 8px !important;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.repeat-one-btn i {
  color: #fd0094 !important;
}

.repeat-one-btn.active {
  background: #fd0094;
  color: #fff !important;
}

.repeat-one-btn.active i {
  color: #fff !important;
}

/* === Animations === */
@keyframes rollDown {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes rollUp {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.roll-down {
  animation: rollDown 0.4s ease forwards;
}

.roll-up {
  animation: rollUp 0.4s ease forwards;
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* === Responsive Layout === */
@media (max-width: 480px) {
  .player-prev,
  .player-next {
    visibility: hidden;
    position: absolute;
  }
	
	 .player-toggle {
    font-size: 17px !important;
    color: #bbb;
		 margin-top: -1px;
  }

  .player-duration {
    display: none;
  }
}

@media (min-width: 480px) {
  .player-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 780px) {
  .player-artist {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 50% !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* === Dark Mode === */
body.dark-mode .audio-player-ui,
body.dark-mode .player-queue-panel {
  background: #222;
}

body.dark-mode .player-progress-bar {
  background: #888;
}

body.dark-mode .player-artist,
body.dark-mode .player-toggle,
body.dark-mode .player-close i,
body.dark-mode .player-controls i,
body.dark-mode .player-duration,
body.dark-mode .player-artist .artist-link,
body.dark-mode .queue-artist .artist-link {
  color: #999;
}

body.dark-mode .queue-header {
  border-bottom: 1px solid #333;
}

body.dark-mode #queue-list li {
  border-bottom: 1px solid #333;
}

body.dark-mode #queue-list li:hover {
  background: rgba(0, 0, 0, 0.2);
}

body.dark-mode #queue-list li.active {
  background: #212 !important;
  border: 1px solid #f90094 !important;
}

body.dark-mode .queue-title {
  color: #fff;
}

body.dark-mode .player-settings {
  color: #eee;
}

body.dark-mode .player-settings:hover i {
  color: #fd0094 !important;
}

		
/* Body CSS Start */
.layout-container {
  min-height: 1px; /* triggers flex reflow */
}

/* Body Layout css */
body {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1440px;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  line-height: 1.4rem;
  color: #222;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

@media (max-width: 600px) {
  body {
    padding: 0;
  }
}
/* Body Layout css End */

/* Wrapper */
.page-wrapper {
  margin: 20px 5px 0 5px;
  padding: 20px 5px;
  background-color: inherit;
  box-sizing: border-box;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.04);
}

@media (min-width: 600px) and (max-width: 1024px) {
  .page-wrapper {
    padding: 20px 20px;
  }
}

/* Layout Container */
.layout-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 801px) {
  .layout-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-wrapper {
    flex: 1;
    min-width: 0;
    padding: 20px 25px;
    margin: 20px 0;
  }

  .sidebar {
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    align-self: flex-start;
    height: fit-content;
  }
}

/* Sidebar styling */
.sidebar {
  padding: 10px 0;
  margin: 20px 0;
  border-radius: 8px;
  box-sizing: border-box;
}

@media (max-width: 801px) {
  .sidebar {
    margin: 20px 10px;
  }
}
/* Body Layout css End */

/* Extra Body css*/
body.dark-mode {
  background-color: #1a1a1a;
  color: #eee;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  font-weight: 800;
	 color: #000!important;
}

body.dark-mode h1,
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4 {
   color: #fff!important;
}

a:hover {
  color: #fd0094!important;
	text-decoration: none!important;
}

/* Base overlay style */
#ajax-loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.95); /* Light mode default */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease;
}

/* Dark mode override */
body.dark-mode #ajax-loading-overlay {
  background-color: rgba(26, 26, 26, 0.95); /* Matches body.dark-mode */
}

/* Spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #ff0077;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Dark mode spinner contrast */
body.dark-mode .loading-spinner {
  border: 4px solid #444;
  border-top-color: #ff0077;
}

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Base overlay style End */

/* Optional: Inputs and Forms */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background-color: #222;
  color: #eee;
  border: 1px solid #fd0094;
}
/* Optional: Inputs and Forms End */
/* Extra Body css End */


/* Homepage CSS */
.homepage-wrapper {
  max-width: 700px;
  margin: 20px 5px 0 5px;
  padding: 20px 5px;
  border-radius: 8px;
  background-color: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.04);
}

/* Tablet layout */
@media (min-width: 600px) and (max-width: 1024px) {
  .homepage-wrapper {
    padding: 20px 20px;
  }
}

/* Desktop layout with sidebar */
@media (min-width: 801px) {
  .homepage-wrapper {
    flex: 1;
    padding: 20px 25px;
    margin: 20px 0;
  }
}

/* Dark Mode */
body.dark-mode .homepage-wrapper {
  background-color: #222;
}

.homepage-hero {
  text-align: center;
  padding: 40px 20px 30px;
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-search-input {
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 240px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.hero-search-input:focus {
  border-color: #fd0094;
}

.hero-search-button {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #fd0094, #ff66c4);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-search-button:hover {
  background: linear-gradient(90deg, #e60084, #ff4db8);
}

/* Dark Mode */
body.dark-mode .homepage-hero {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.04);
}

body.dark-mode .hero-title {
  color: #f0f0f0;
}

body.dark-mode .hero-subtitle {
  color: #aaa;
}

body.dark-mode .hero-search-input {
  background-color: #2c2c2c;
  color: #eee;
  border-color: #444;
}

body.dark-mode .hero-search-input:focus {
  border-color: #ff66c4;
}

/* Homepage CSS End */

/* Sidebar Top Songs Start */
/* Sidebar Heading */
.sidebar-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  text-align: left;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 5px;
	margin: -10px 0 0 10px;
}
/* Sidebar Heading End */
 
    .sidebar-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-track-item {
  display: flex;
	align-items: center;
  justify-content: space-between;
  padding: 12px 4px 8px 10px;
  transition: background 0.4s ease;
  line-height: 1.4rem;
}

/* Thumbnail container */
.sidebar-track-thumbnail {
  position: relative;
  width: 55px;
  height: 55px;
}

.sidebar-track-item:hover .sidebar-track-thumbnail img {
  opacity: 0.7;
}

/* Image and fallback thumbnail */
.sidebar-track-thumbnail img,
.sidebar-no-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.sidebar-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Number badge inside thumbnail */
.sidebar-track-number {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 6px;
  border-radius: 4px;
  z-index: 3;
}

/* Info block */
.sidebar-track-info {
  flex: 1;
  margin-left: 12px;
}

.sidebar-track-title a {
  font-weight: 600;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}

.sidebar-track-artist,
.sidebar-track-artist a {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-decoration: none;
}

body.dark-mode .sidebar-track-artist a {
  color: #999;
}
/* Sidebar Top Songs End */

/* Related scroll css */
.related-artists-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.8rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;

  /* Hide scrollbar for WebKit (Chrome, Safari) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.related-artists-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.related-artists-card {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  scroll-snap-align: start;
}

.related-artists-image img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
  transition: transform 0.4s ease;
	 box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.related-artists-image img:hover {
  transform: scale(0.9);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.related-artists-name {
  margin-top: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
}

.related-artists-name a {
  text-decoration: none;
  color: #333;
}

body.dark-mode .related-artists-name a {
  color: #eee;
}
  /* Related scroll css */

/* Help Page Title */
.help-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

/* Intro Paragraph */
.help-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
}

/* Section Headings */
.help-heading {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #fd0094;
  border-left: 4px solid #fd0094;
  padding-left: 0.6rem;
}

/* Help Lists */
.help-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.help-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #444;
}

/* Help Text */
.help-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Links */
.help-section a {
  color: #fd0094;
  text-decoration: underline;
}

.help-section a:hover {
  text-decoration: none;
}

/* Icons */
.help-section i {
  margin-right: 0.3rem;
  color: #fd0094;
}

/* Footer Note */
.help-footer-note {
  margin-top: 3rem;
  padding: 1rem;
  background-color: #f1f1f1;
  border-left: 4px solid #fd0094;
  font-size: 1rem;
  color: #333;
  border-radius: 6px;
}

/* Dark Mode */
body.dark-mode .help-wrapper {
  background-color: #222;
  color: #eee;
}

body.dark-mode .help-title,
body.dark-mode .help-heading,
body.dark-mode .help-section a,
body.dark-mode .help-section i {
  color: #ff5e5e;
}

body.dark-mode .help-text,
body.dark-mode .help-list li {
  color: #ccc;
}

body.dark-mode .help-footer-note {
  background-color: #333;
  border-left-color: #ff5e5e;
  color: #eee;
}


/* Sticky on scroll Mobile Nav */
@media (max-width: 768px) {
  .mobile-nav-wrapper {
    /* mobile behavior */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fefefe;
    transform: translateY(-100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
  }

  .mobile-nav-wrapper.show {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

.mobile-nav-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px;
    margin: 0;
    list-style: none;

    /* Hide scrollbars */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }

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

  .mobile-nav-menu li {
    display: inline-block;
    margin-right: 20px;
  }

  .mobile-nav-menu li a {
    color: inherit;
		font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 4px;
    position: relative;
    transition: color 0.3s ease;
  }

  /* Underline animation */
  .mobile-nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #fd0094;
    transition: width 0.3s ease;
  }

  .mobile-nav-menu li a:hover {
    color: #fd0094;
				font-weight: 600;
  }

  .mobile-nav-menu li a:hover::after {
    width: 100%;
  }

  /* Active page underline */
  .mobile-nav-menu li.current-menu-item a {
    color: #fd0094;
  }

  .mobile-nav-menu li.current-menu-item a::after {
    width: 100%;
  }

  /* Dark mode support */
	
	body.dark-mode .mobile-nav-wrapper {
		    background-color: #222;
	}
	
  body.dark-mode .mobile-nav-menu li a {
    color: white;
  }

  body.dark-mode .mobile-nav-menu li a:hover {
    color: #fd0094;
  }

  body.dark-mode .mobile-nav-menu li.current-menu-item a {
    color: #fd0094;
  }
}

/* DESKTOP: HIDE MOBILE MENU */
@media (min-width: 769px) {
  .mobile-nav-wrapper {
    display: none !important;
  }
}
/* Sticky on scroll Mobile Nav */

/* Site Footer Start */
.site-footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 10px;
  background-color: #f0f0f0;
  padding: 40px 0 60px 0;
  font-size: 14px;
  color: #ccc;
  text-align: center;
  overflow: hidden;
	border-top: 1px solid #d5d5d5;
}

body.dark-mode .site-footer {
	  background-color: #222;
	 border-top: 1px solid #2e2e2e; 
}

.footer-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Reset WP menu styles */
.footer-menu,
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #888;
		border: 1px solid #888;
	border-radius: 5px;
    padding: 6px 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}

body.dark-mode 
.footer-menu a:hover,
.footer-menu a:hover{
  color: #fd0094;
	border: 1px solid #fd0094;
}

.footer-copy {
	border: none;
  margin: 20px 20px 10px 20px;
  font-size: 13px;
  color: #888;
}

body.dark-mode .footer-menu a {
	 color: #aaa;
		border: 1px solid #888;
}

/* Site Footer End */


/* body layout end*/

/* Scroll to Top CSS Start */
.scroll-to-top {
  position: fixed;
  bottom: 75px;
  right: 30px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Show button when scrolling */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Morphing background using ::before */
.scroll-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  border-radius: 50%;
  z-index: 0;
  animation: morphBackground 6s ease-in-out infinite;
}

/* Static icon stays above */
.scroll-to-top i {
  position: relative;
  z-index: 1;
  font-size: 18px;
  pointer-events: none;
}

/* Morphing animation */
@keyframes morphBackground {
  0%   { border-radius: 50%; }
  20%  { border-radius: 60% 40% 55% 45%; }
  40%  { border-radius: 45% 55% 60% 40%; }
  60%  { border-radius: 50% 60% 40% 50%; }
  80%  { border-radius: 40% 50% 60% 50%; }
  100% { border-radius: 50%; }
}

/* 🌙 Dark mode styles */
body.dark-mode .scroll-to-top::before {
  background-color: #eee; /* lighter background for contrast */
}

body.dark-mode .scroll-to-top {
  color: #111; /* dark icon for light background */
}

body.dark-mode .scroll-to-top:hover {
  background-color: #ccc;
}

.scroll-to-top {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.dark-mode .scroll-to-top {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

body.dark-mode .scroll-to-top:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
/* Scroll to Top CSS End */

/* Artist archives */
/* Artist archives-heading */
.artist-archive-heading,
.az-artist-archive-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.3rem, 1vw, 2rem);
  font-weight: 800;
  text-align: left;
  margin: 20px 0 -4px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 0;
}

.az-artist-archive-heading {
  margin: 15px 0 15px 10px;
}

.artists-archive  {
padding: 10px;
}
 
.alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.alphabet-nav a {
  display: flex; /* Changed from inline-block to flex */
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  margin: 5px;
  border-radius: 50%;
  background: #eee;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  width: 45px;
  height: 45px;
  transition: background 0.3s;
}


.alphabet-nav a:hover {
  background: #fd0094;
  color: #fff!important;
}

.letter-heading {
  margin-top: 3rem;
  font-size: 1.5rem;
  color: #fd0094;
  border-bottom: 5px solid #ddd;
	border-radius: 5px;
  padding-bottom: 0.5rem;
}

.artist-archive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0;
  list-style: none;
  margin-top: 10px;
	white-space: nowrap;
		margin-bottom: -15px;
}

@media (min-width: 400px) {
  .artist-archive-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.artist-archive-item {
  padding: 5px 10px 0 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

body.dark-mode .artist-archive-thumbnail img{
  background-color: inherit;
}

.artist-archive-thumbnail {
  position: relative;
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #eee;
}

body.dark-mode .artist-archive-thumbnail {
  background-color: #2c2c2c;
}



.artist-archive-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  background-color: inherit; /* Keeps the thumbnail bg */
}

.artist-archive-item:hover .artist-archive-thumbnail img {
  opacity: 0.7;
}

.artist-archive-info {
  padding: 10px 0;
}

.artist-archive-title {
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-weight: bold;
  margin: 0 0 5px 0;
	  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

.artist-archive-title a {
  text-decoration: none;
  color: inherit;
}

.artist-archive-artist {
  font-size: 0.875rem;
  margin-top: 0;
}

.artist-archive-artist a {
  font-size: 0.875rem;
  text-decoration: none;
  color: #333333;
  font-weight: 400;
}

body.dark-mode .artist-archive-artist a {
  color: #f0f0f0;
}

.artist-archive-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

/* function display country */
.top-artists-archive-country,
.artist-archive-country {
  font-size: 0.65rem;
	font-weight: 500;
  color: #666;
	margin-top: -5px;
}

.artist-archive-country a {
  color: #333;
  text-decoration: none;
}

body.dark-mode .artist-archive-country a {
  color: #999;
}

/* function display country */ 

/* function display genre */ 
.artist-archive-genre {
  font-size: 0.65rem;
  color: #666;
  margin: 0;
}

.artist-archive-genre a {
  color: #777;
	font-weight: 600;
  text-decoration: none;
  margin-right: 0px;
}

body.dark-mode .artist-archive-genre a {
  color: #999;
}

.artist-archive-genre a:hover {
  text-decoration: underline;
}
/* function display genre end */ 


.artist-archive-list-pagination-wrapper{
	margin-top: -15px;
}
/* All Artists Archive grid layout End */


/* Top Artists Archive grid layout start */
/* Top 10 artist archives-heading */
.top-artists-archive-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-weight: 800;
  text-align: left;
  margin: 0 0 0 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 7px;
	font-size: 17px;
}

/* Top 10 artist archives-heading End */


/* Top Artists Archive grid layout start */
.top-artists-archive-wrapper {
  min-width: 0;
  width: 100%;
}

.top-artists-archive-list {
  display: flex;
  width: 100%;
  overflow-x: auto;
  gap: 10px;
  padding: 20px 0;
  list-style: none;
  margin: 0;
  scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
  white-space: nowrap;
  scrollbar-width: none;
   min-width: 0;
  flex-shrink: 1;
}


.top-artists-archive-list::-webkit-scrollbar {
  display: none;
}

.top-artists-archive-item {
  flex: 0 0 100px;
  scroll-snap-align: start;
  padding-left: 10px;
  overflow: hidden;
  position: relative;  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
	  white-space: nowrap;
}

.top-artists-archive-thumbnail {
  position: relative;
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #eee; /* Your intended thumbnail background */
}

body.dark-mode .top-artists-archive-thumbnail {
  background-color: #2c2c2c; /* Your intended thumbnail background */
}

body.dark-mode .top-artists-archive-thumbnail img{
  background-color: inherit;
}

.top-artists-archive-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  background-color: inherit; /* Keeps the thumbnail bg */
}

.top-artists-archive-item:hover .top-artists-archive-thumbnail img {
  opacity: 0.7;
}

.top-artists-archive-info {
  padding: 10px 0;
}



.top-artists-archive-title {
  font-size: 0.75rem;
  line-height: 1.1rem;
  font-weight: bold;
  margin: 0;
	  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

.top-artists-archive-title a {
  text-decoration: none;
  color: inherit;
}

.top-artists-archive-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 100%;
}

.top-artists-archive-country a {
  color: #777;
	font-weight: 600;
  text-decoration: none;
  margin-right: 0px;
}

body.dark-mode .top-artists-archive-country a {
  color: #999;
}

.top-artists-archive-country a:hover {
  text-decoration: underline;
}

.top-artist-verified-badge-wrapper, .search-result-album-icon-badge-wrapper {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  width: 16px;
  height: 16px;
  background-color: none;
  border-radius: 50%;
  padding: 2px;
}

.top-artist-verified-badge, .search-result-album-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (min-width: 481px) {
  .top-artists-archive-wrapper {
    position: relative;
  }

  .top-artists-archive-wrapper .scroll-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 15px;
    height: 50px;
    background-color: #ddd;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .top-artists-archive-wrapper .scroll-arrow {
    background-color: #fff;
    filter: brightness(0.8);
  }

  .top-artists-archive-wrapper .scroll-arrow.left {
    left: -10px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-left.png');
  }

  .top-artists-archive-wrapper .scroll-arrow.right {
    right: -20px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-right.png');
  }

  .top-artists-archive-wrapper:hover .scroll-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .scroll-arrow:hover {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .top-artists-archive-wrapper .scroll-arrow {
    display: none !important;
  }
}

/* Top Artists Archive grid layout End */

/* Custom Pagination start */
    .custom-pagination {
    text-align: center;
    margin: 15px 0 0 0;
}

.custom-pagination ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.custom-pagination li a,
.custom-pagination li span {
    display: inline-block;
    padding: 2px 10px;
    color: #fd0094;
    border: 2px solid #fd0094;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
	  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

body.dark-mode .custom-pagination li a {
	    color: #fff;
}

.custom-pagination li span.current {
    background: #fd0094;
    color: #fff;
}

.custom-pagination li a:hover {
    background: #fd0094;
    color: #fff;
}

.custom-pagination li a[href*="paged=1"]::before {
  content: "\1F3E0"; /* Unicode for house icon */
  margin-right: 5px;
}

.custom-pagination .page-badge {
  display: inline-block;
  padding: 2px 10px;
  background-color: #fff0f5;
  color: #333;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
}

body.dark-mode .custom-pagination .page-badge {
  background-color: #2c2c2c;
	color: #fff;
}


/* Custom Pagination start */

/* === Ccomment Section === */
.yemyht-comment-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 5px;
  box-sizing: border-box;
  text-align: left;
  clear: both;
  border-radius: 10px;
}

.yemyht-comment-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.yemyht-logged-in {
  font-size: 0.9em;
  margin-bottom: 0;
}
.yemyht-logged-in a {
  color: #fd0094;
  text-decoration: none;
}

/* === Form Inputs === */
.yemyht-input,
.yemyht-textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 25px;
  border: 1px solid #fd0094;
  background-color: #fff;
  font-size: 1em;
  margin-bottom: 5px;
  box-sizing: border-box;
}
.yemyht-textarea {
	margin-top: 15px;
	height: 100px;
  background: #ffe6f1;
  resize: vertical;
}

@media (max-width: 600px) {
  .yemyht-textarea {
    resize: none;
  }
}

.yemyht-reply-box textarea {
  height: 50px;
  resize: none;
  padding: 10px 15px;
  line-height: 1.4;
}

/* === Buttons === */
.yemyht-submit-btn,
.yemyht-reply-submit {
	display: block;
  background-color: #fd0094;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.yemyht-submit-btn:hover,
.yemyht-reply-submit:hover {
  background-color: #e00085;
}

.yemyht-reply-submit {
  background-color: #fd0094;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.yemyht-reply-submit:hover {
  background-color: #e00085;
}

/* Comment section dark mode */
body.dark-mode .yemyht-main-comment,
body.dark-mode .yemyht-input,
body.dark-mode .yemyht-textarea,
body.dark-mode .yemyht-reply-comment {
  background-color: #222;
  color: #eee;
}

body.dark-mode .yemyht-text {
  color: #eee;
}

body.dark-mode .yemyht-date {
  color: #aaa;
}

body.dark-mode .yemyht-like-count {
  color: #ccc;
}

body.dark-mode .yemyht-notice {
  background-color: #334d3d;
  color: #cce7cc;
  border-color: #446b55;
}

body.dark-mode .yemyht-notice.error {
  background-color: #5a2c2f;
  color: #f2bcbc;
  border-color: #7a4a4d;
}

body.dark-mode .yemyht-reply-toggle:hover {
  background-color: #442c3b;
}

body.dark-mode .yemyht-textarea {
  background-color: #2a2a2a;
}

body.dark-mode .yemyht-reply-submit,
body.dark-mode .yemyht-submit-btn {
  background-color: #fd0094;
  color: white;
}

body.dark-mode .yemyht-reply-submit:hover,
body.dark-mode .yemyht-submit-btn:hover {
  background-color: #e00085;
}

body.dark-mode .yemyht-actions button,
body.dark-mode .yemyht-actions a {
  color: #fd0094;
}

body.dark-mode .yemyht-avatar img {
  border-color: #fd0094;
}
/* comment dark mode setting end */

/* Load More Ajax Animate */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-list li.animate-in,
.archive-album-list li.animate-in,
.search-track-list li.animate-in,

.artist-archive-list li.animate-in,
.top-songs-archive-list li.animate-in {
  animation: fadeSlideUp 0.4s ease-out forwards;
}
/* Load More Ajax Animate End */

.load-more-spinner, .comment-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid #fd0094;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body.dark-mode .spinner {
  border: 2px solid #444;
  border-top: 2px solid #fd0094;
}


.yemyht-author-badge-wrapper {
  position: relative;
  display: inline-block;
}

.yemyht-admin-badge {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
}

.yemyht-admin-comment {
  background: #fff0f5!important;
  border-radius: 8px;
}

body.dark-mode .yemyht-admin-comment {
  background-color: #2a1f2a!important;
  border-left-color: #fd0094;
}

body.dark-mode .yemyht-admin-badge {
  filter: brightness(1.2);
}


/* === Notices === */
.yemyht-notice {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #d4edda;
  color: #155724;
  font-size: 0.95em;
  border: 1px solid #c3e6cb;
  display: none;
}
.yemyht-notice.error {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* === Comment List === */
.yemyht-main-comment {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px 10px;
  margin-bottom: 20px;
	  border-left: 2px solid #fd0094;
}


.yemyht-comment-list {
  margin-top: 30px;
  width: 100%;
  clear: both;
}
.yemyht-comment-list::after {
  content: "";
  display: table;
  clear: both;
}

/* === Individual Comment === */
.yemyht-comment-item-wrapper {
  width: 100%;
  display: block;
  clear: both;
  box-sizing: border-box;
}

.yemyht-comment-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-sizing: border-box;
  flex-wrap: wrap;
}


/* === Avatar === */
.yemyht-avatar img {
  border-radius: 50%;
  border: 2px solid #fd0094;
  width: 45px;
  height: 45px;
  object-fit: cover;
}

/* === Comment Body === */
.yemyht-body {
  width: 100%;
  box-sizing: border-box;
}
.yemyht-text {
  margin: 5px 0 5px 5px;
  line-height: 1.5;
  font-size: 1em;
}

/* === Author & Date === */

.yemyht-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.yemyht-author-date {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align to top */
}
.yemyht-author {
  font-weight: bold;
  color: #fd0094;
}
.yemyht-date {
  font-size: 0.85em;
  color: #888;
}

/* === Actions === */
.yemyht-actions {
  margin-top: 5px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.yemyht-actions button,
.yemyht-actions a {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  color: #fd0094;
  text-decoration: none;
}
.yemyht-like-count {
  margin-left: 5px;
  font-size: 0.9em;
  color: #333;
}


/* Style the “Reply” link (toggle button)*/
.yemyht-reply-toggle {
  font-size: 0.95em;
  color: #fd0094;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
		margin-top: -4px;
}

.yemyht-reply-toggle:hover {
  background-color: #ffe6f1;
}

/* === Reply Box === */
.yemyht-reply-box {
  margin-top: 5px;
  width: 100%;
}
.yemyht-reply-box textarea,
.yemyht-reply-box input {
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* === Replies Container === */
.yemyht-replies {
  margin-top: 10px;
  margin-left: 0;
  padding-left: 0;
}

/* === Nested Replies === */
.yemyht-reply-comment {
	margin-top: 20px;
  margin-left: 40px;
	padding-top: 20px;
  padding-left: 15px;
	border-radius: 8px;
  border-left: 2px solid #fd0094;
  background-color: #fff8fc;
  box-sizing: border-box;
  max-width: calc(100% - 40px);
}

/* === Responsive === */
@media (max-width: 600px) {
  .yemyht-comment-item {
    display: block;
  }

  .yemyht-avatar img {
    margin-bottom: 10px;
  }

  .yemyht-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .yemyht-reply-comment {
    margin-left: 20px;
    padding-left: 10px;
		  max-width: calc(100% - 20px);
  }
}

/* Media Results Toggle CSS */
.media-toggle {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  gap: 10px;
  margin-left: 1px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

@media (max-width: 480px) {
  .media-toggle {
    margin: 0 0 0 11px;
  }
}


.media-toggle::-webkit-scrollbar {
  display: none;
}

.media-toggle-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #f0f0f0, #e6e6e6);
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.media-toggle-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #e6e6e6, #f0f0f0);
  border-color: #ccc;
}

.media-toggle-button.active[data-filter="all"] {
  background: linear-gradient(135deg, #fd0094, #ff66c4);
  color: #fff;
  border-color: #fd0094;
}

.media-toggle-button.active[data-filter="artist"] {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  border-color: #007bff;
}

.media-toggle-button.active[data-filter="album"] {
  background: linear-gradient(135deg, #28a745, #a8e063);
  color: #fff;
  border-color: #28a745;
}

.media-toggle-button.active[data-filter="song"] {
  background: linear-gradient(135deg, #DC143C, #ff6f61);
  color: #fff;
  border-color: #DC143C;
}

.media-toggle-button.active[data-filter="mixtape"] {
  background: linear-gradient(135deg, #6f42c1, #b28dff);
  color: #fff;
  border-color: #6f42c1;
}

.media-toggle-button i {
  font-size: 0.775rem;
  flex-shrink: 0;
}

/* Dark Mode Support */
body.dark-mode .media-toggle-button {
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  color: #ccc;
  border-color: #444;
}

body.dark-mode .media-toggle-button:hover {
  background: linear-gradient(135deg, #3a3a3a, #2c2c2c);
  border-color: #666;
}

body.dark-mode .media-toggle-button.active[data-filter="all"] {
  background: linear-gradient(135deg, #fd0094, #ff66c4);
  color: #fff;
  border-color: #fd0094;
}

body.dark-mode .media-toggle-button.active[data-filter="artist"] {
  background: linear-gradient(135deg, #3399ff, #66ccff);
  color: #fff;
  border-color: #3399ff;
}

body.dark-mode .media-toggle-button.active[data-filter="album"] {
  background: linear-gradient(135deg, #33cc66, #99ff99);
  color: #fff;
  border-color: #33cc66;
}

body.dark-mode .media-toggle-button.active[data-filter="song"] {
  background: linear-gradient(135deg, #DC143C, #ff6f61);
  color: #fff;
  border-color: #DC143C;
}

body.dark-mode .media-toggle-button.active[data-filter="mixtape"] {
  background: linear-gradient(135deg, #6f42c1, #b28dff);
  color: #fff;
  border-color: #6f42c1;
}

/* Entry Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-toggle-button {
  animation: fadeSlideIn 0.4s ease forwards;
}

.media-toggle-button:nth-child(1) { animation-delay: 0.05s; }
.media-toggle-button:nth-child(2) { animation-delay: 0.1s; }
.media-toggle-button:nth-child(3) { animation-delay: 0.15s; }
.media-toggle-button:nth-child(4) { animation-delay: 0.2s; }
.media-toggle-button:nth-child(5) { animation-delay: 0.25s; }
/* Media Results Toggle End */



/* Songs Results Heading */
.songs-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  margin: 0 0 5px 10px;
  letter-spacing: 0.01em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 3px;
}

.songs-result-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: #fd0094;
  border-radius: 2px;
}  
    .search-heading {
  margin: 10px;
}
/* Songs Results Heading End */

/* Search Results CSS */
.search-track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.space-div {
	  margin-top: 10px;
}

.search-track-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 4px 8px 10px;
  transition: background 0.4s ease;
  line-height: 1.5rem;
}

/* Thumbnail container */
.search-track-thumbnail {
  position: relative;
  width: 55px;
  height: 55px;
		border-radius: 6px;
	background-color: #eee; /* Keeps the thumbnail bg */
}

body.dark-mode .search-track-thumbnail {
  background-color: #777;
}

.search-track-item:hover .search-track-thumbnail img {
  opacity: 0.7;
}

/* Image and fallback thumbnail */
.search-track-thumbnail img,
.search-no-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}

.search-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Info block */
.search-track-info {
  flex: 1;
  margin-left: 12px;
		min-width: 0;
}

.search-track-title a {
  font-weight: 600;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}

.search-track-title a:hover {
  text-decoration: underline;
}

.search-track-artist,
.search-track-artist a {
  font-size: 12px;
  color: #777;
  font-weight: 500;
  text-decoration: none;
}

.search-track-artist {
 	color: #999;
	 text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
}

.search-track-artist a:hover {
  text-decoration: underline;
}

body.dark-mode .search-track-artist a {
  color: #999;
}

.no-result-found,
.no-content-found {
	display: inline-block;
  background-color: #fff0f5;
  border-left: 4px solid #ff69b4;
  padding: 5px 12px;
  margin: 10px 10px;
	line-height: 20px;
	font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

body.dark-mode .no-content-found,
body.dark-mode .no-result-found {
	background-color: #2c2c2c;
	  color: #eee;
}

/* mention-verified-artist */
.search-mention-verified-artist {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.search-verified-badge {
  position: absolute;
  top: 3.5px;
  right: 4px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: auto;
}
/* mention-verified-artist end*/


/* Media search result */
/* Else search result */
.else-search-result-hero {
  text-align: center;
  padding: 15px 20px 30px;
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
  .else-search-result-hero {
    margin: 30px 5px;
  }
}

.else-search-result-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.else-search-result-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.else-search-result-input {
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 240px;
  max-width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.else-search-result-input:focus {
  border-color: #fd0094;
}

.else-search-result-button {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #fd0094, #ff66c4);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.else-search-result-button:hover {
  background: linear-gradient(90deg, #e60084, #ff4db8);
}

/* Dark Mode */
body.dark-mode .else-search-result-hero {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.04);
}

body.dark-mode .else-search-result-subtitle {
  color: #aaa;
}

body.dark-mode .else-search-result-input {
  background-color: #2c2c2c;
  color: #eee;
  border-color: #444;
}

body.dark-mode .else-search-result-input:focus {
  border-color: #ff66c4;
}
/* Else search result End */

/* Media search heading */
.media-result-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 5px;
  padding: 12px 0 12px 15px;
  border-radius: 25px;
  letter-spacing: 0.01em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #111;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02), 0 1px 4px rgba(0, 0, 0, 0.04);
  animation: fadeSlideIn 0.4s ease forwards;
}

@media (max-width: 480px) {
  .media-result-heading {
  margin: 0 5px 15px 5px;
  }
}

.search-term {
  font-size: 18px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fd0094, #ff66c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 4px rgba(253, 0, 148, 0.2);
}

.search-term::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #fd0094, #ff66c4);
  border-radius: 2px;
}

body.dark-mode .media-result-heading {
  color: #f0f0f0;
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 1px 4px rgba(255, 255, 255, 0.04);
}

body.dark-mode .search-term {
  text-shadow: 0 0 6px rgba(255, 102, 196, 0.3);
}

body.dark-mode .search-term::after {
  background: linear-gradient(90deg, #fd0094, #ff66c4);
}

.result-count {
  font-weight: 700;
  color: #000;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  animation: countFadeIn 0.5s ease-out forwards;
}

body.dark-mode .result-count {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

@keyframes countFadeIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* All Play Button CSS(s) */
/* Albums Play Button CSS(s) */
.main-archive-album-play-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.main-archive-album-play-button:hover {
  background-color: #e00084;
}

.top-artist-archive-play-button {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center!important;
  justify-content: center!important;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.artist-archive-play-button {
 position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}


.top-artist-archive-play-button:hover,
.artist-archive-play-button:hover{
  background-color: #e00084;
}
/* Albums Play Button End */

/* Tracks Play Button CSS(s) */
.archive-song-play-button,
.sidebar-track-play-button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

.search-track-play-button {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: #333;
}

body.dark-mode .category-play-button,
body.dark-mode .sidebar-track-play-button,
body.dark-mode .search-track-play-button,
body.dark-mode .archive-song-play-button
{color: #fff;}
/* Tracks Play Button End */

/* Hidding Play Button CSS */
.hide-play-button {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.homepage-album:hover .hide-play-button,
.category-track-item:hover .hide-play-button,
.category-album:hover .hide-play-button,
.track-item:hover .hide-play-button,
.archive-album:hover .hide-play-button,
.sidebar-track-item:hover .hide-play-button,
.search-track-item:hover .hide-play-button,
.media-result:hover .hide-play-button,
.album-result:hover .hide-play-button,
.artist-archive-item:hover .hide-play-button,
.top-artists-archive-item:hover .hide-play-button,
.top-songs-archive-item:hover .hide-play-button
{
  opacity: 1;
  pointer-events: auto;
}
/* Hidding Play Button CSS End */
/* All Play Button CSS(s) End */

/* Album Category grid layout start */
.category-album-list {
  display: flex;
  overflow-x: auto;
  gap: 5px;
  padding: 20px 0 0;
  list-style: none;
  margin-top: -2px;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
-webkit-overflow-scrolling: touch;
  min-width: 0;
}

.category-album-list {
  scrollbar-width: none; /* Firefox */
}

.category-album-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.category-album {
  flex: 0 0 160px;
  scroll-snap-align: start;
	padding-left: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

.category-album-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.category-album-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.category-album:hover .category-album-thumbnail img {
  opacity: 0.7;
}


.category-album-info {
  padding: 10px 0;
}

.category-album-title {
  font-size: 0.95rem;
   line-height: 1.5rem;
  font-weight: bold;
  margin: 0;
	text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

.category-album-title a {
  text-decoration: none;
  color: inherit;
}

.category-album-artist {
  font-size: 0.8rem;
  margin-top: 0;
}

.category-album-artist,
.category-album-artist a {
  font-size: 0.85rem;
  text-decoration: none;
  color: #777;
  font-weight: 500;
}

body.dark-mode .category-album-artist a {
  color: #999;
}

.category-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 100%;
}

@media (min-width: 481px) {
  .category-album-wrapper {
    position: relative;
  }

  .category-album-wrapper .scroll-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 15px;
    height: 50px;
    background-color: #ddd;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .category-album-wrapper .scroll-arrow {
    background-color: #fff;
    filter: brightness(0.8);
  }

  .category-album-wrapper .scroll-arrow.left {
    left: -10px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-left.png');
  }

  .category-album-wrapper .scroll-arrow.right {
    right: -20px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-right.png');
  }

  .category-album-wrapper:hover .scroll-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .scroll-arrow:hover {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .category-album-wrapper .scroll-arrow {
    display: none !important;
  }
}

/* Album Category grid layout End */

/* Song Category grid layout start */
.category-track-list {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
  padding: 0 0 20px;
	margin-top: 5px;
  list-style: none;
	width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
}

.category-track-list::-webkit-scrollbar {
  display: none;
}


.category-track-block {
	min-width: 0;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-snap-align: start;
}

.category-track-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px 10px;
	background: none;
  transition: background 0.4s ease;
		white-space: nowrap;
}

.category-track-info {
	line-height: 1.3rem;
  flex: 1;
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	min-width: 0;
}

.category-track-artist a {
  font-size: 12px;
  color: #777;
  font-weight: 500;
  text-decoration: none;
	margin-bottom: 10px;
	line-height: 1rem;
}

.category-track-title {
	 text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
	width: 100%;
}
.category-track-artist{
	color: #999;
	 text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
}

.category-track-title a {
  font-weight: 700;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}

.category-track-list {
  scrollbar-width: none; /* Firefox */
}

.category-track-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body.dark-mode .category-track-item {
  border-color: #333;
  background: none;
}

.category-track-thumbnail { 
	position: relative;
  width: 50px;
  height: 50px;
}

.category-track-item:hover .category-track-thumbnail img {
  opacity: 0.7;
}

.category-track-thumbnail img {
   width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.category-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.category-track-title a:hover {
  text-decoration: underline;
}

body.dark-mode .category-track-artist a {
  color: #999;
}

.category-track-artist a:hover {
  text-decoration: underline;
}

/* Add left and right arrows */
/* Show arrows only on screens wider than 480px */
@media (min-width: 481px) {
  .category-track-list-wrapper {
    position: relative;
  }

  .scroll-arrow {
    position: absolute;
    top: 54.5%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 15px;
    height: 50px;
    background-color: #ddd;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
		border-radius: 4px;
    border: none;
    cursor: pointer;
    z-index: 10;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  body.dark-mode .scroll-arrow {
    background-color: #fff;
  }

  .scroll-arrow.left {
    left: -20px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-left.png');
  }

  .scroll-arrow.right {
    right: -20px;
    background-image: url('https://sureloaded.com/wp-content/themes/sureloadedmusic/assets/images/arrow-right.png');
  }

  .category-track-list-wrapper:hover .scroll-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .scroll-arrow:hover {
    opacity: 1;
  }

  body.dark-mode .scroll-arrow {
    filter: brightness(0.8);
  }
}

/* Hide arrows on screens 480px and below */
@media (max-width: 480px) {
  .scroll-arrow {
    display: none !important;
  }
}

/* Add left & right arrows end */
/* Song Category grid layout end */

.load-more-top-song-button-container {
  display: flex;
  justify-content: center;
  padding: 0 10px;
	margin-top: -20px;
}

.load-more-button-container {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.view-all-button-container  {
  display: flex;
  justify-content: center;
	margin-top: -15px;
  padding: 0 10px;
}

.load-more-button {
  width: 100%;
  max-width: 600px;
  margin: 30px 0 10px;
  padding: 12px 0;
  background-color: #fff;
  color: #fd0094;
  border: 2px solid #fd0094;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

a.load-more-button {
text-decoration: none;
}

.load-more-button:hover {
  background-color: #f5f5f5;
  border-color: #ff33a6;
}

.load-more-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.dark-mode .load-more-button {
  background-color: #1f1f1f;
  color: #fff;
  border: 2px solid #fd0094;
}
body.dark-mode .load-more-button:hover {
  background-color: #2a2a2a;
  border-color: #ff33a6;
}

.load-more-button.animate-in {
  animation: fadeSlideIn 0.4s ease forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* genre-filter-form css start */
.genre-list-wrapper {
  padding: 0 0 5px 0;
}

.genre-list-horizontal {
  margin: 15px 10px 0 10px;
}

.genre-tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 20px;
  padding: 0 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.genre-tabs::-webkit-scrollbar {
  display: none;
}

.genre-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 6px 12px;
  background-color: #fff;
  border: 2px solid #fd0094;
  color: #fd0094;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.genre-tab-content {
  display: none;
}

.genre-tab-content.active {
  display: flex;
}

.genre-links {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.genre-links::-webkit-scrollbar {
  display: none;
}

.genre-tab-content {
  display: none;
  flex-wrap: nowrap;
}

.genre-tab-content.active {
  display: flex;
  gap: 12px;
}

.genre-links a {
  scroll-snap-align: start;
  padding: 2px 10px;
  background-color: #fff;
  border: 2px solid #fd0094;
  color: #fd0094;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.genre-links a:hover {
  background-color: #f5f5f5;
  border-color: #c8007a;
}

body.dark-mode .genre-links a {
  background-color: #2c2c2c;
}

body.dark-mode .genre-links a:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: #c8007a;
}

/* Tab header color overrides */
.genre-tab.all-tab.active {
  background-color: #fd0094;
  color: #fff;
  border-color: #fd0094;
}

.genre-tab.genres-tab.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.genre-tab.playlists-tab.active {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

.genre-tab.countries-tab.active {
  background-color: #DC143C;
  color: #fff;
  border-color: #DC143C;
}

/* Tab content color overrides */
.genre-links.genres-active > .genre-tab-content.active > a {
  border-color: #007bff !important;
  color: #007bff !important;
}
.genre-links.genres-active > .genre-tab-content.active > a:hover {
  background-color: #e6f0ff !important;
  border-color: #0056b3 !important;
}

.genre-links.playlists-active > .genre-tab-content.active > a {
  border-color: #28a745 !important;
  color: #28a745 !important;
}
.genre-links.playlists-active > .genre-tab-content.active > a:hover {
  background-color: #e6ffe6 !important;
  border-color: #1e7e34 !important;
}

.genre-links.countries-active > .genre-tab-content.active > a {
  border-color: #DC143C !important;
  color: #DC143C !important;
}
.genre-links.countries-active > .genre-tab-content.active > a:hover {
  background-color: #ffe6e6 !important;
  border-color: #5a0000 !important;
}

.genre-links.all-active > .genre-tab-content.active > a {
  border-color: #fd0094 !important;
  color: #fd0094 !important;
}
.genre-links.all-active > .genre-tab-content.active > a:hover {
  background-color: #f5f5f5 !important;
  border-color: #c8007a !important;
}

/* === GRADIENT TAB HEADERS === */
.genre-tab.all-tab.active {
  background: linear-gradient(135deg, #fd0094, #ff66c4);
  color: #fff;
  border-color: #fd0094;
}

.genre-tab.genres-tab.active {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  border-color: #007bff;
}

.genre-tab.playlists-tab.active {
  background: linear-gradient(135deg, #28a745, #a8e063);
  color: #fff;
  border-color: #28a745;
}

.genre-tab.countries-tab.active {
  background: linear-gradient(135deg, #DC143C, #ff6f61);
  color: #fff;
  border-color: #DC143C;
}

/* === GRADIENT LINK BUTTONS === */
.genre-links.all-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #fff, #ffe6f0);
  border-color: #fd0094 !important;
  color: #fd0094 !important;
}

.genre-links.genres-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  border-color: #007bff !important;
  color: #007bff !important;
}

.genre-links.playlists-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #f0fff0, #e6ffe6);
  border-color: #28a745 !important;
  color: #28a745 !important;
}

.genre-links.countries-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #fff0f0, #ffe6ec);
  border-color: #DC143C !important;
  color: #DC143C !important;
}

/* === Hover Effects === */
.genre-links.all-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #ffe6f0, #fff);
  border-color: #c8007a !important;
}

.genre-links.genres-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #e6f0ff, #f0f8ff);
  border-color: #0056b3 !important;
}

.genre-links.playlists-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #e6ffe6, #f0fff0);
  border-color: #1e7e34 !important;
}

.genre-links.countries-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #ffe6ec, #fff0f0);
  border-color: #a00c2c !important;
}

/* === DARK MODE TAB HEADERS === */
body.dark-mode .genre-tab.all-tab.active {
  background: linear-gradient(135deg, #fd0094, #ff66c4);
  color: #fff;
  border-color: #fd0094;
}

body.dark-mode .genre-tab.genres-tab.active {
  background: linear-gradient(135deg, #3399ff, #66ccff);
  color: #fff;
  border-color: #3399ff;
}

body.dark-mode .genre-tab.playlists-tab.active {
  background: linear-gradient(135deg, #33cc66, #99ff99);
  color: #fff;
  border-color: #33cc66;
}

body.dark-mode .genre-tab.countries-tab.active {
  background: linear-gradient(135deg, #DC143C, #ff6f61);
  color: #fff;
  border-color: #DC143C;
}

/* === DARK MODE LINK BUTTONS === */
body.dark-mode .genre-links.all-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  border-color: #fd0094 !important;
  color: #ff66c4 !important;
}

body.dark-mode .genre-links.genres-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #1c1c2c, #2a2a3a);
  border-color: #3399ff !important;
  color: #66ccff !important;
}

body.dark-mode .genre-links.playlists-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #1c2c1c, #2a3a2a);
  border-color: #33cc66 !important;
  color: #99ff99 !important;
}

body.dark-mode .genre-links.countries-active > .genre-tab-content.active > a {
  background: linear-gradient(135deg, #2c1c1c, #3a2a2a);
  border-color: #DC143C !important;
  color: #ff6f61 !important;
}

/* === DARK MODE HOVER EFFECTS === */
body.dark-mode .genre-links.all-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #3a3a3a, #2c2c2c);
  border-color: #c8007a !important;
}

body.dark-mode .genre-links.genres-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #2a2a3a, #1c1c2c);
  border-color: #0056b3 !important;
}

body.dark-mode .genre-links.playlists-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #2a3a2a, #1c2c1c);
  border-color: #1e7e34 !important;
}

body.dark-mode .genre-links.countries-active > .genre-tab-content.active > a:hover {
  background: linear-gradient(135deg, #3a2a2a, #2c1c1c);
  border-color: #a00c2c !important;
}

.genre-links {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 48px; /* Ensures space for links even when switching tabs */
  padding-bottom: 0;
}

.genre-tab-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 10px;
}

.genre-tab-content.active {
  display: flex;
  gap: 12px;
}

.genre-tab-content::-webkit-scrollbar {
  display: none;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.genre-tab-content.active > a {
  animation: fadeSlideIn 0.4s ease forwards;
}

.genre-tab-content.active > a {
  animation: fadeSlideIn 0.4s ease forwards;
}

.genre-tab-content.active > a:nth-child(1) { animation-delay: 0.05s; }
.genre-tab-content.active > a:nth-child(2) { animation-delay: 0.1s; }
.genre-tab-content.active > a:nth-child(3) { animation-delay: 0.15s; }
.genre-tab-content.active > a:nth-child(4) { animation-delay: 0.2s; }
/* Add more if needed */

body.dark-mode .genre-tab {
  background-color: #2a2a2a;
  color: #f0f0f0;
  border-color: #555;
}

body.dark-mode .genre-tab:hover {
  background-color: #333;
  color: #fff;
  border-color: #777;
}

body.dark-mode .genre-tab.active {
  background: linear-gradient(135deg, #444, #666);
  color: #fff;
  border-color: #888;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2); /* ✅ Text glow added */
}


/* genre-filter-form css end */

/* homepage-album-list layout */
.homepage-album-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: minmax(180px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  list-style: none;
padding: 0 10px;
margin: 0;
}

.homepage-album {
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

.homepage-album-list-container
 {
  padding: 15px 0;
  margin: 0 5px 0 10px;
}

.homepage-album:hover img {
  filter: brightness(70%);
}

body.dark-mode .homepage-album:hover img {
  filter: darkness(70%);
}

.homepage-album-country a {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #f0f0f0;
  padding: 0 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 2;
  text-decoration: none;
}

.homepage-album-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.homepage-album-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.homepage-album-info {
  padding: 10px 0 0 0;
}

.homepage-album-title {
  font-size: 0.95rem;
   line-height: 1.5rem;
  font-weight: bold;
  margin: 0;
	text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

.homepage-album-title a {
  text-decoration: none;
  color: inherit;
}

.homepage-album-artist {
  font-size: 0.875rem;
  margin-top: 0;
}

.homepage-album-artist a {
  font-size: 0.875rem;
  text-decoration: none;
  color: #777;
  font-weight: 400;
}

body.dark-mode .homepage-album-artist a {
  color: #999;
}

.homepage-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 100%;
}

.homepage-album-list {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.homepage-album-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


/* archive-album-list layout*/
.archive-album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 2px 1px;
  list-style: none;
  margin-top: 10px;
}

@media (min-width: 400px) {
  .archive-album-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.archive-album {
	  padding: 5px 10px 0 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent; /* default background */
}
/* Default state */
.archive-album img {
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Hover state: dim the image */
.archive-album:hover img {
  opacity: 0.8; /* slightly transparent */
  filter: brightness(80%); /* darker look */
}

/* Dark mode hover: dim differently */
body.dark-mode .archive-album:hover img {
  opacity: 0.7;
  filter: brightness(70%);
}


.archive-album-country a {
  position: absolute;
  top: 12px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #f0f0f0;
  padding: 0 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 2;
	text-decoration: none;
}
.archive-album-thumbnail {
  position: relative;
}


.archive-album-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.archive-album-thumbnail img {
  width: 100%;
  height: 100%;
	border-radius: 4px;
  object-fit: cover;
  display: block;
}

.archive-album-info {
  padding: 10px 0;
}

.archive-album-title {
   font-size: 0.95rem;
   line-height: 1.5rem;
  font-weight: bold;
  margin: 0;
	text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

.archive-album-title a {
  text-decoration: none;
  color: inherit;
}

.archive-album-artist {
  font-size: 0.875rem;
	margin-top: 0;
}

.archive-album-artist a {
  font-size: 0.875rem;
	text-decoration: none;
  color: #777;
	 font-weight: 400;
}

body.dark-mode .archive-album-artist a {
  color: #999;
}

.archive-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 100%;
}

/* 📐 Layout */
.album-flex {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
	margin-bottom: 20px;
	padding: 5px;
}

/* 🖼️ Album Cover */
.album-cover {
  flex: 1 1 auto;
  max-width: 250px
}

.album-cover img {
	width: 250px;
	max-width: 100%;
	margin: 0 auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 📄 Album Info */
.album-info {
	  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.album-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  margin-bottom: 0;
  margin-top: 0;
}

.album-artist {
	margin-bottom: 10px;
}

.album-artist a {
  font-weight: 700;
  font-size: 15px;
  color: #444;
	text-decoration: none;
}

.album-artist a:hover {
text-decoration: underline;}

body.dark-mode .album-artist a { 
	color: #ddd;
}

.album-meta {
  margin-bottom: 10px;
}

.album-meta-item {
  display: block;
  font-size: 0.845em;
  color: #555;
}

.album-meta-item a {
  color: #fd0094;
  text-decoration: none;
}

.album-meta-item a:hover {
  text-decoration: underline;
}

body.dark-mode .album-meta-item  {
  color: #ddd;
}

/* 🎮 Action Buttons */
.album-action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.album-play-button,
.album-share-button,
.album-download-button {
  background-color: #fd0094;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.album-share-button {
  background-color: #333;
}

/* mention-verified-artist */
.mention-verified-artist {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.verified-badge {
  position: absolute;
  top: 5px;
  right: 4px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: auto;
}
/* mention-verified-artist end*/

.album-overview-heading {
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-top: 0;
	padding-bottom: 5px;
	border-bottom: 2px solid #fd0094;
}

.album-overview-text {
		padding: 5px;
  margin-bottom: 2rem;
   font-family: 'Lora', serif;
  font-size: 16px!important;
  line-height: 1.6;
}

.album-post-title {
	color: #0000008f;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
	font-family: 'Inter', sans-serif;
}

body.dark-mode .album-post-title {
	color: #fff;
}

/* 🎵 Tracklist */
.album-tracklist {
	padding: 10px;
}

.album-tracklist-heading {
  font-size: 1.4em;
  margin-bottom: 15px;
  margin-top: -30px;
}

.album-overview-text {
  font-size: 1em;
  line-height: 1.6;
}

.album-tracklist-ul {
  list-style: none;
  padding: 0;
  margin: 0;
	transition: background-color 0.9s ease, color 0.3s ease;
}

.album-tracklist-ul li {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.album-tracklist-ul li:hover {
  background-color: #f5f5f5;
}

body.dark-mode .album-tracklist-ul li:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.album-tracklist-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 15px 15px 15px 0;
  border-bottom: 1px solid #eee;
		color: #666;
}

body.dark-mode .album-tracklist-item {
  border-bottom: 1px solid #222;
		color: #999;
}

.album-tracklist-item.active {
	  background: #fff0f5;
}

body.dark-mode .album-tracklist-item.active {
	background: #212!important;
}

.album-track-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.album-track-left {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
	margin-left: 5px;
	margin-right: 20px;
}

.album-track-number {
	 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: inherit;
  font-size: 1em;
  text-align: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}


.album-track-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .album-track-play:hover ,
.album-track-play:hover {
  background-color: #e00080;
  box-shadow: 0 0 6px rgba(198, 0, 116, 0.4);
}


.album-tracklist-item:hover .album-track-play {
  opacity: 1;
  pointer-events: auto;
}

.album-tracklist-item:hover .album-track-number {
  opacity: 0;
}

.album-track-play i {
  pointer-events: none;
}

.album-track-title {
  font-weight: bold;
  color: #333;
  text-decoration: none;
  font-size: 1em;
	
}

body.dark-mode .album-track-title {
  color: #ddd;
}

.album-track-artist {
  font-size: 0.95em;
  text-decoration: none;
	  color: #666;
}

.album-track-artist a {
  color: #666;
}

@media screen and (min-width: 400px) {
.album-track-artist {
	margin-top: 2px;
}
}

body.dark-mode .album-track-artist {
  color: #999;
}

.album-track-featuring a {
  font-style: italic;
  color: #666;
	font-size: 13px;
	text-decoration: none;
}

.album-track-featuring {
  font-style: italic;
	font-size: 13px;
}

body.dark-mode .album-track-featuring a {  
	color: #999;
}

@media screen and (max-width: 400px) {
.album-track-featuring  {
display: none;}
}

.album-track-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}


@media screen and (min-width: 400px) {
.album-track-meta  {
  gap: 20px;
}
}

.album-track-duration {
  font-size: 0.9em;
  color: #666;
}

body.dark-mode .album-track-duration  {
  font-size: 0.9em;
  color: #999;
}

/* 📥 ZIP Download at Bottom */
.album-download-bottom {
  margin-top: 40px;
  text-align: center;
}

.album-download-button {
  background-color: #fd0094;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* 📱 Mobile Layout: below 480px */
@media screen and (max-width: 400px) {
  .album-flex {
		display: flex;
    gap: 10px;
  }

  .album-cover {
	margin: 0 auto;
	text-align: center;
    max-width: 100%;
  }

  .album-info {
    width: 100%;
    text-align: center;
    padding: 0;
		margin-top: 0;
		margin-bottom: 5px;
  }

  .album-action-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
  }

  .album-tracklist-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .album-track-info {
    flex: 1 1 60%;
    margin-right: 10px;
    padding-left: 8px;
  }

  .album-track-meta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .album-tracklist-item {
    display: grid;
    grid-template-columns: 0 1fr auto;
    align-items: center;
    gap: 0;
  }

	.album-track-number {
	 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: inherit;
  font-size: 1em;
  text-align: center;
  transition: opacity 0.3s ease;
  z-index: 1;
}

  .album-track-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
align-items: flex-start;
		margin-left: 40px;
    gap: 0;
  }

  .album-track-title {
    font-size: 0.95em;
    font-weight: bold;
    color: #fd0094;
  }

  .album-track-artist {
    font-size: 0.85em;
    color: #666;
  }

  .album-track-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
  }

  .album-track-duration {
    font-size: 0.85em;
    color: #666;
  }

  .album-track-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

}

.album-track-playing-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fd0094;
  font-size: 1.2em;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.album-tracklist-item.playing .album-track-number {
  opacity: 0;
}

.album-tracklist-item.playing .album-track-playing-icon {
  opacity: 1;
}
@keyframes pulse {
  0%, 90% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.album-tracklist-item.playing .album-track-playing-icon i {
  animation: pulse 2s ease-in-out infinite;
}



.album-tracklist-item:hover .album-track-playing-icon {
  opacity: 0;
}


.album-tracklist-item.active .album-track-number,
.album-tracklist-item.active .album-track-title {
  color: #fd0094;
}

@media screen and (min-width: 480px) {
  .album-tracklist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid #eee;
  }

  .album-track-left {
    margin-right: 15px;
  }

  .album-track-info {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .album-track-title {
    flex: 1;
    font-size: 1em;
    font-weight: bold;
    color: #333;
    text-align: left; /* ✅ stays left-aligned */
  }

.album-track-info span[itemprop="byArtist"] {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* ✅ now aligns artist + featuring to the left */
  align-items: center;
  text-align: left;
  gap: 6px;
}


  .album-track-artist {
    font-size: 0.95em;
    color: #666;
  }

  .album-track-featuring {
    font-style: italic;
    font-size: 13px;
    color: #666;
  }

  .album-track-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 60px;
  }
	 .album-track-info {
    gap: 4px; 
  }
}

/* single album end */

/* Last Updated in Albums */
.taxonomy-page-meta {
  display: flex;
  justify-content: left;
  align-items: center;
}

.taxonomy-last-updated {
  display: inline-block;
  background-color: #fff0f5;
  border-left: 4px solid #ff69b4;
  padding: 0 8px;
  margin: 15px 0 0 10px;
  font-family: sans-serif;
	font-weight: 500;
  font-size: 12px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

body.dark-mode .taxonomy-last-updated {
  background-color: #2c2c2c;
  color: #eee;
}
/* Last Updated in Albums End */

    
.category-header {
  margin: 20px 10px 0;
}

.category-header-inner {
  display: flex;
  align-items: center;
  gap: 16px; /* Adjust spacing between text and play button */
  flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
}


.category-text {
  display: flex;
  flex-direction: column;
}

.category-text h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.category-text p {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
}

    
 .tag-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 5px 5px 10px;
}

@media (max-width: 480px) {
  .tag-header {
    display: block;
    text-align: center;
  }

  .tag-profile-image {
    margin: 0 auto 15px;
  }

  .tag-profile-info {
    text-align: center;
  }
}

.tag-profile-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
 box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.tag-date-info {
	display: inline-block;
  background-color: #fff0f5;
  border-left: 4px solid #ff69b4;
  padding: 0 8px;
  margin: 15px 0 5px 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

body.dark-mode .tag-date-info {
	background-color: #2c2c2c;
	  color: #eee;
	
}

.tag-profile-info h1 {
  margin: 0;
	color: #333;
  font-size: 1.8em;
}

.tag-profile-info {
  margin: 10px 0;
  font-size: 1em;
  color: #696969;
}

body.dark-mode .tag-profile-info,
body.dark-mode .tag-profile-info h1{
  color: #fff;
}

.tag-profile-info a:hover {
  text-decoration: underline;
}


.tag-actions {
  display: flex;
  align-items: center;
	margin: 10px 0;
  gap: 12px;
}

@media (max-width: 480px) {
  .tag-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* controls spacing between buttons */
    flex-wrap: wrap; /* allows wrapping if screen is too narrow */
    margin-top: 10px;
    text-align: center;
  }

  .tag-actions > * {
    flex: 0 0 auto;
  }
}


.main-tags-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tags-share-button {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background-color: #fd0094;
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tags-share-button i {
  margin-right: 6px;
  font-size: 16px;
}

/* Old Tag HEader */

/* 🌟 Container */
.artist-tag-hero-parent-container {
  padding: 0 10px;
}

.artist-tag-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
  border-radius: 2px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
	margin-bottom: 25px;
	margin-top: -10px;
}

/* 🖼 Background Image */
.artist-tag-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.artist-tag-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

/* ✨ Overlay */
.artist-tag-hero-overlay {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

/* 📄 Content */
.artist-tag-hero-content {
  max-width: 600px;
  width: 100%;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
}

.artist-tag-hero-content > * {
  margin-bottom: 10px;
}

/* 🎤 Artist Name */
.artist-tag-hero-name {
  font-size: 1.5em;
  margin: 0;
  color: #fff!important;
	 white-space: nowrap;        /* keep text on one line */
  overflow: hiden;           /* hide overflowed text */
  text-overflow: ellipsis; 
	width: 100%;
}

/* 📅 Info Blocks */
.artist-tag-hero-date,
.artist-tag-hero-country,
.artist-tag-hero-bio {
  font-size: 14px;
  color: #eee;
  line-height: 1.6;
}

.artist-tag-hero-country a {
  color: #ddd;
  text-decoration: none;
}

body.dark-mode .artist-tag-hero-country a {
  color: #ddd;
}

/* 📜 Bio */
.artist-tag-hero-bio {
  cursor: pointer;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
  color: #ccc;
}

/* 🎧 Action Buttons */
.artist-tag-hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.artist-tag-hero-play-button,
.artist-tag-hero-share-button {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  will-change: transform;
}

.artist-tag-hero-play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
	border: 2px solid #fff;
  align-items: center;
	color: #fff;
  justify-content: center;
}

.artist-tag-hero-share-button {
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
		color: #fff;
		border: 2px solid #fff;
}

.artist-tag-hero-share-button i {
  margin-right: 6px;
  font-size: 16px;
}

/* 🌙 Dark Mode */
body.dark-mode .artist-tag-hero-play-button,
body.dark-mode .artist-tag-hero-share-button {
  color: #fff;
  border: 2px solid #fff;
  text-shadow: none;
}

body.dark-mode .artist-tag-hero-date,
body.dark-mode .artist-tag-hero-country,
body.dark-mode .artist-tag-hero-bio {
  color: #eee;
}

/* 🖱 Hover Effects */
.artist-tag-hero-play-button:hover,
.artist-tag-hero-share-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}

body.dark-mode .artist-tag-hero-play-button:hover,
body.dark-mode .artist-tag-hero-share-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* 🪟 Modal Styles */
#bioModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  padding: 0;
  overflow: auto;
  animation: fadeIn 0.4s ease-in-out;
}

#bioModal .bio-modal-content {
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  max-width: 600px;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  backdrop-filter: blur(8px);
}

#bioModal .bio-modal-close {
  margin-top: 20px;
  background: #fd0094;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* 🎞 Modal Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* 🖥 Desktop Layout */
@media (min-width: 1024px) {
  .artist-tag-hero {
    flex-direction: row;
			margin-bottom: 0;
  }

  .artist-tag-hero-bg {
    flex: 0 0 220px;
    padding-left: 5px;
    padding-top: 8px;
    position: relative;
    z-index: 2;
  }

  .artist-tag-hero-bg img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
  }

  .artist-tag-hero-overlay {
    position: static;
    flex: 1;
    padding-top: 10px;
    background: none;
    justify-content: center;
  }
	
	.artist-tag-hero-name {
  font-size: 2.2em;
  margin: 0;
  color: #000!important;
}
	
	.artist-tag-hero-date,
.artist-tag-hero-country,
.artist-tag-hero-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
	.artist-tag-hero-bio {
  margin-top: -15px;
}

.artist-tag-hero-country a {
  color: #888;
  text-decoration: none;
}

		.artist-tag-hero-play-button, .artist-tag-hero-share-button {
			color: #000;
			border: 2px solid #333;
	}
	
	.artist-tag-hero-actions {
  margin-top: 20px;
}
	
}


/* Homepage Archives Heading */
.homepage-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
  margin-top: 0;
  margin-bottom: -10px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

.album-homepage-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
	 margin-top: 20px;
  margin-bottom: -10px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

.country-homepage-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
	margin-top: 25px;
  margin-bottom: -15px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

.genre-homepage-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
	  margin-top: 35px;
  margin-bottom: -15px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

.artist-homepage-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
	  margin-top: 35px;
  margin-bottom: -15px;
  margin-left: 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}


/* Homepage Archives Heading */

/* Archives Songs Heading */
.archives-song-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  margin: 10px 0 5px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
}


.view-all {
	margin-top: 0;
	margin-right: 5px;
}

.view-all a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-all a i {
  font-size: 0.85rem;
}

/* Archives Songs Heading Ends */

/* Archives Heading */
.gc-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
  margin: 25px 0 -8px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 0;
}

.archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  text-align: left;
  margin: 0 0 -12px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 0;
}
/* Archives Heading */

/* Taxnomy Archives Heading */
.taxonomy-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
  margin: -15px 0 0 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 8px;
}

/* Top Artists Archives Heading */

.top-archive-artists-heading {	  font-size: 22px!important;
margin: -10px 0 -13px 10px!important;
}

.top-archive-artists-heading,
.country-top-artists-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
	font-weight: 800;
  text-align: left;
  margin: -10px 0 -15px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 5px;
	  font-size: 19px;
}

.top-artists-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
	font-weight: 800;
  text-align: left;
  margin: 0 0 0 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  padding-bottom: 5px;
	  font-size: 17px;
}

/* Related-artists-archives-heading */ 
.related-artists-archives-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
	font-weight: 800;
  text-align: left;
  margin: 25px 0 -15px 10px;
  letter-spacing: 0.03em;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
   font-size: 17px;
 padding-bottom: 5px;
}

/* relatedposts-heading */
.relatedposts-heading {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  margin-bottom: -25px;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 12px;
}

/* featuring-relatedposts-heading */
.featuring-relatedposts-heading {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  margin-bottom: -25px;
  margin-top: -10px;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 12px;
}

/*  Albums relatedposts-heading */
.albums-relatedposts-heading {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  margin: -10px 0 -30px 0;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 12px;
}

/*  Related Artists-heading */
.related-artists-heading {
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 12px;
}

/* Accent bar on the left */
.related-artists-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background-color: #fd0094; /* Gold accent */
  border-radius: 2px;
}

/* Top Songs Archive CSS Start */
.top-songs-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .top-songs-archive-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .top-songs-archive-title a,
  .top-songs-archive-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-songs-archive-title a {
    display: inline-block;
    max-width: 100%;
    font-weight: bold;
  }

  .top-songs-archive-artist {
    justify-self: start;
    font-size: 12px;
    color: #777;
    font-weight: 500;
  }
}


.top-songs-archive-item {
  display: flex;
  align-items: center;
  padding: 12px 10px 8px 10px;
  transition: background 0.4s ease;
  line-height: 1.4rem;
}

.top-songs-archive-number {
  font-weight: bold;
  font-size: 16px;
  width: 30px;
  text-align: center;
  color: #555;
  flex-shrink: 0;
}


body.dark-mode .top-songs-archive-number {
  color: #aaa;
}

.top-songs-archive-thumbnail {
  position: relative;
  width: 55px;
  height: 55px;
  margin-left: 10px;
  flex-shrink: 0;
}

.top-songs-archive-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.top-songs-archive-item:hover .top-songs-archive-thumbnail img {
  opacity: 0.7;
}

.top-songs-archive-no-thumbnail {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.top-songs-archive-info {
  flex: 1;
  margin-left: 15px;
  min-width: 0;
}

.top-songs-archive-title a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}

.top-songs-archive-title {
 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-songs-archive-artist,
.top-songs-archive-artist a {
  font-size: 12px;
  line-height: 1.4rem;
  color: #777;
  font-weight: 500;
  text-decoration: none;

}

.top-songs-archive-artist {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
}

.top-songs-archive-artist a:hover {
  text-decoration: underline;
}

body.dark-mode .top-songs-archive-artist a {
  color: #999;
}

.top-songs-archive-trend {
  width: 20px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}

.top-songs-archive-trend.up i {
  color: #28a745;
}

.top-songs-archive-trend.down i {
  color: #dc3545;
}

.top-songs-archive-trend.stable i {
  color: #999;
}


.end-list-message {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #fd0094, #ff6ec4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.dark-mode .end-list-message {
  background: none;
  -webkit-text-fill-color: #999;
  color: #999;
}

.end-list-message.fade-in {
  opacity: 1;
}

.message-box {
  font-weight: 600;
  font-size: 16px;
  color: #fd0094;
  text-align: center;
  margin: 20px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.message-box.fade-in {
  opacity: 1;
}

/* Top Songs Archive CSS End */

/* category.php css */   
    .track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-item {
   display: flex;
	align-items: center;
  justify-content: space-between;
  padding: 12px 4px 8px 10px;
  transition: background 0.4s ease;
  line-height: 1.4rem;
}

.track-info {
  flex: 1;
  margin-left: 15px;
  min-width: 0;
}

.track-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

.track-title a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}

.track-title a:hover {
  text-decoration: underline;
}

.track-artist, .track-artist a {
  font-size: 12px;
	line-height: 1.4rem;
  color: #777;
	font-weight: 500;
  text-decoration: none;
}

.track-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 80px; /* prevents layout shift */
}

.track-duration {
  font-size: 0.85rem;
  color: #888;
  min-width: 40px;
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  transition: none;
}

.category-play-button {
  width: 32px;
  height: 32px;
  font-size: 14px;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  will-change: transform;
}

.play-button:hover {
  transform: scale(1.05);
}


@media (min-width: 768px) {
  .track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .track-thumbnail {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
  }

  .track-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 0;
		margin-bottom: -5px;
  }

  .track-title a {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .track-artist {
    justify-self: start; /* ✅ aligns artist to left within its column */
    white-space: nowrap;
    font-size: 12px;
    color: #777;
    font-weight: 500;
  }

  .hide-play-button {
    flex-shrink: 0;
    margin-left: 10px;
  }
}


.track-artist {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
}

.track-artist a:hover {
  text-decoration: underline;
}

body.dark-mode .track-artist a{
	  color: #999;
}

.track-thumbnail {
  position: relative;
  width: 55px;
  height: 55px;
}

.track-item:hover .track-thumbnail img {
  opacity: 0.7;
}

/* Dark mode background */
.track-thumbnail img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.no-thumbnail {
   background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
/* category.php css End*/ 


/* single-song.php css */ 
.single-song-wrapper {
	padding: 0 5px;
}

.single-song-content-wrapper {
		margin: 0 0 40px 0;
}

.single-song-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
	margin-bottom: 20px;
}

.single-song-thumbnail {
 flex: 1 1 auto;
  max-width: 250px
}

.single-song-thumbnail img {
  width: 250px;
	max-width: 100%;
	margin-bottom: -15px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.single-song-meta {
  flex: 1 1 300px;
  display: flex-start;
  flex-direction: column;
	 color: #777;
}

.single-song-meta p {
  margin: 0.2rem 0;
  font-size: 0.845rem;
}

.single-song-meta a {
  color: #777;
  text-decoration: none;
  font-weight: 600;
}

body.dark-mode .single-song-meta {
	color: #ddd;
}

body.dark-mode .single-song-meta a {
	color: #ddd!important;
}

/* Mobile-only: center the image */
@media (max-width: 400px) {
  .single-song-thumbnail, .single-song-meta {
    text-align: center;
			margin: 0 auto;
		    max-width: 100%;
  }

}

.song-title-display {
 font-size: 1.5rem;
  line-height: 2rem;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 0;
}

.song-artist-display {
	margin-top: 0!important;
	margin-bottom: 10px!important;
}

.song-artist-display a {
  text-decoration: none;
	font-size: 14px;
}

body.dark-mode .song-artist-display a:hover {
 color: #fd0094!important;
}

.single-song-country-post-type{
	padding: 0;
}

.single-song-post-type{
	margin-right: 3px!important;
}

.single-song-country,
.single-song-post-type {
	padding: 1px 12px 2px 12px;
	background: #eee;
	border-radius: 20px;
	margin-right: 5px;
	 font-weight: 500!important;
	display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

body.dark-mode .single-song-country,
body.dark-mode .single-song-post-type {
	background: #333;
}

.single-song-country:hover,
.single-song-post-type:hover {
text-decoration: none!important;
		background: #ffe6f1;
	color: #fd0094;
}

body.dark-mode .single-song-country:hover,
body.dark-mode .single-song-post-type:hover {
text-decoration: none!important;
		background: #ffe6f1;
	color: #fd0094!important;
}

.country-year-duration-display {
	padding-top: 5px;
	padding-bottom: 10px;
		font-size: 13px!important;
}
.single-song-assign-album-display a,
.country-year-duration-display a {
  text-decoration: none;
	font-size: 13px;
  font-weight: 400;
}

.single-song-assign-album-display {
	margin: 5px 0!important;
		font-size: 13px!important;
}

.assign-album-display a{
	  font-weight: 400;
	text-decoration: underline!important;
}

body.dark-mode .assign-album-display a:hover, 
.assign-album-display a:hover {
  text-decoration: none!important;
	color: #fd0094!important;
}

.single-song-meta a:hover {
  text-decoration: underline;
}

/* Audio Player & Share Button */
.single-song-audio-share {
	margin-top: 15px;
  display: flex;
  justify-content: flex-start;
}

/* Center only on screens 400px wide or less */
@media (max-width: 400px) {
  .single-song-audio-share {
    justify-content: center;
  }
}

.single-song-audio {
  display: flex;
  align-items: center;
}

.single-song-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-tags-play-button:hover, .single-song-play-button:hover {
  background-color: #e00085;
  transform: scale(1.05);
	 box-shadow: 0 0 8px rgba(0, 0, 0, 1);
	opacity: 0.8;
}

.single-song-play-button i {
  pointer-events: none;
}

.single-song-sharepost {
  display: inline-block;
  margin-left: 15px;
  padding: 8px 15px;
  background: #fd0094;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tags-share-button:hover, .single-song-sharepost:hover {
  background-color: #e00085;
  transform: scale(1.05);
	 box-shadow: 0 0 8px rgba(0, 0, 0, 1);
	opacity: 0.8;
}

.single-song-sharepost i {
  margin-right: 3px;
}

/* Title */
.single-song-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;

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

/* On hover, show full text */
.single-song-title:hover {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

/* Tabs Container */
.single-song-tabs {
  position: relative;
  display: flex;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

body.dark-mode .single-song-tabs {
  border-bottom: 1px solid #333;
}

/* Tab Buttons */
.tab-button {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0;
  background: none;
  border: none;
  font-weight: 900;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

body.dark-mode .tab-button {
  color: #eee;
}

/* Active Tab */
.tab-button.active {
  color: #fd0094;
}

/* Hover Effect */
.tab-button:hover {
  color: #fd0094!important;
}

/* Sliding Underline */
.single-song-tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 50%; /* Half width for two tabs */
  background-color: #fd0094;
  left: 0;
  transition: left 0.3s ease;
}

/* Move underline to second tab when Lyrics is active */
.single-song-tabs[data-active="lyrics"]::after {
  left: 50%;
}

/* Content Sections */
.single-song-content {
  margin-bottom: 2rem;
	padding: 5px;
  font-family: 'Lora', serif;
	font-size: 15px !important;
  line-height: 1.6;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Download Section */
.single-song-download {
  text-align: center;
  margin-top: 0.5rem;
}

.single-song-download-link {
  display: block;
  padding: 0.75rem 1.5rem;
  background: #fd0094;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 1rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.single-song-download-link i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  vertical-align: middle;
}

.single-song-download-link:hover {
  background: #e00085;
}

.song-file-size {
	font-size: 12px;
	font-style: italic;
}

/* single-mixtape.php css */
.single-mixtape-wrapper {
  padding: 0 5px;
}

.single-mixtape-content-wrapper {
  margin: 0 0 40px 0;
}

.single-mixtape-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-mixtape-thumbnail {
  flex: 1 1 100px;
  max-width: 300%;
}

.single-mixtape-thumbnail img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.single-mixtape-thumbnail img {
  width: 280px;
  max-width: 100%;
}

/* Mobile-only: center the image */
@media (max-width: 400px) {
  .single-mixtape-thumbnail, .single-mixtape-meta {
    text-align: center;
  }

  .single-mixtape-thumbnail img {
    display: inline-block;
  }
}

.mixtape-title-display {
  font-size: 30px!important;
  font-weight: 800;
}

.mixtape-artist-display {
  padding-top: 5px;
  padding-bottom: 10px;
}

.mixtape-artist-display a {
  color: #fd0094!important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

body.dark-mode .genre-year-duration-display {
  color: #ddd;
}

.genre-year-duration-display {
  color: #555;
  text-decoration: none;
  font-size: 14px!important;
  font-weight: 400;
}

.single-mixtape-meta {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.single-mixtape-meta p {
  margin: 0.2rem 0;
  font-size: 1rem;
}

body.dark-mode .single-mixtape-meta a {
  color: #ddd;
}

.single-mixtape-meta a {
  color: #666;
  text-decoration: none;
  font-weight: 600;
}

.single-mixtape-meta a:hover {
  text-decoration: underline;
}

/* Audio Player & Share Button */
.single-mixtape-audio-share {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 400px) {
  .single-mixtape-audio-share {
    justify-content: center;
  }
}

.single-mixtape-audio {
  display: flex;
  align-items: center;
}

.single-mixtape-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #fd0094;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-tags-play-button:hover, .single-mixtape-play-button:hover {
  background-color: #e00085;
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 1);
  opacity: 0.8;
}

.single-mixtape-play-button i {
  pointer-events: none;
}

.single-mixtape-sharepost {
  display: inline-block;
  margin-left: 20px;
  padding: 8px 15px;
  background: #fd0094;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tags-share-button:hover, .single-mixtape-sharepost:hover {
  background-color: #e00085;
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 1);
  opacity: 0.8;
}

.single-mixtape-sharepost i {
  margin-right: 3px;
}

/* Title */
.single-mixtape-title {
  color: #0000008f;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

body.dark-mode .single-mixtape-title {
  color: #fff;
}

/* Tabs Container */
.single-mixtape-tabs {
  position: relative;
  display: flex;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

body.dark-mode .single-mixtape-tabs {
  border-bottom: 1px solid #444;
}

/* Tab Buttons */
.tab-button {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0;
  background: none;
  border: none;
  font-weight: 900;
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

body.dark-mode .tab-button {
  color: #eee;
}

.tab-button.active {
  color: #fd0094;
}

.tab-button:hover {
  color: #fd0094!important;
}

.single-mixtape-tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 50%;
  background-color: #fd0094;
  left: 0;
  transition: left 0.3s ease;
}

.single-mixtape-tabs[data-active="lyrics"]::after {
  left: 50%;
}

/* Content Sections */
.single-mixtape-content {
  margin-bottom: 2rem;
  padding: 5px;
  font-family: 'Lora', serif;
  font-size: 15px !important;
  line-height: 1.6;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Download Section */
.single-mixtape-download {
  text-align: center;
  margin-top: -1.5rem;
}

.single-mixtape-download-link {
  display: block;
  padding: 0.75rem 1.5rem;
  background: #fd0094;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.single-mixtape-download-link i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  vertical-align: middle;
}

.single-mixtape-download-link:hover {
	color: #fff!important;
  background: #e00085;
}

/* Responsive */
@media (max-width: 300px) {
  .single-mixtape-grid {
    flex-direction: column;
  }

  .single-mixtape-thumbnail,
  .single-mixtape-meta {
    max-width: 400px;
  }

  .single-mixtape-title {
    font-size: 2rem;
    text-align: center;
  }

  .single-mixtape-download-link {
    width: 100%;
    text-align: center;
  }
}


/* Header Layout */
.site-header {
  position: relative;
  width: 100vw;
  left: 0;
  right: 0;
  margin-left: calc(-50vw + 50%);
  border-radius: 0 0 8px 8px;
  background-color: #fefefe	; /* soft white */
  color: #222; /* dark text for contrast */
  padding: 1rem 0;
  border-bottom: 1px solid #ddd; /* subtle divider */
}


body.dark-mode .site-header {
  background-color: #222;
  border-bottom: 1px solid #2e2e2e;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

@media (min-width: 481px) {
  .header-container {
    padding: 0 60px;
  }
}

/* Logo + Menu */
.logo-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  padding: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.site-logo:hover {
  box-shadow: 0 0 10px #fd0094; 
}

.site-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}


.menu-toggle {
  background-color: #fd0094;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: inherit;
	font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 5px 5px;
  border-radius: 4px;
  position: relative;
  transition: color 0.3s ease;
}


body.dark-mode .nav-menu li a {
  color: #eee;
}

/* Underline effect using ::after */
.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #fd0094;
  transition: width 0.3s ease;
}

/* Hover effect */
.nav-menu li a:hover {
  color: #fd0094;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Header Tools */
.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Large Screen Search Box*/
.header-search {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #b0b0b0;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-search:has(input:focus), 
body.dark-mode .header-search:has(input:focus) {
  border-color: #fd0094;
  box-shadow: 0 0 0 2px #fd0094;
}

.header-search input[type="search"] {
  border: none;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: inherit;
  background: transparent;
  width: 200px;
  outline: none;
}

.header-search input::placeholder {
  color: #b0b0b0;
	font-size: 12px;
}

.header-search button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #b0b0b0;
  font-size: 1rem;
}

body.dark-mode .header-search ,
body.dark-mode .mobile-search {
  background: #2c2c2c;
  box-shadow: 0 2px 6px rgba(200, 200, 200, 0.2); /* soft grey shadow */
}


body.dark-mode .header-search input[type="search"] {
  color: #f8f8f8;
}

body.dark-mode .header-search input::placeholder {
  color: #ccc;
}

body.dark-mode .mobile-search button, body.dark-mode .header-search button {
  color: #f8f8f8;
}

/* Large Screen Search Box End */

/* Mobile Screen Search Box */
.mobile-search {
  display: flex;
  align-items: center;
  background-color: #fd0094;
  overflow: hidden;
  padding: 0.25rem 0.5rem;
}

.mobile-search input[type="search"] {
  border: none;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  width: 2;
  outline: none;
}

.mobile-search input::placeholder {
  color: #f0f0f0;
}

.mobile-search button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}
/* Mobile Screen Search Box End */

.dashicons-search {
  font-size: 1.2rem;
}

.search-toggle {
  display: none;
  background-color: #fd0094;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(253, 0, 148, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.search-toggle:hover {
  background-color: #ff33aa;
  box-shadow: 0 0 10px rgba(253, 0, 148, 0.6);
}

/* Mobile Slide-Out Search */

.mobile-search {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}

.mobile-search.open {
  max-height: 20px; /* Adjust based on content height */
  opacity: 1;
  padding: 1rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Mode Toggle */
.dark-toggle {
  padding: 10px;
  background-color: inherit;
  display: flex;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
}

.dark-toggle:hover {
  background-color: #f3f3f3;
}

body.dark-mode .dark-toggle:hover {
  background-color: #2a2a2a;
}

.mobile-dark-toggle:hover {
  background-color: #fd0094;
}

/* Switch Container */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
  line-height: 1.3rem;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider Track */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid grey;
  border-radius: 50px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

@media (max-width: 801px) {
  .slider {
    border: 2px solid #fff;
  }

  body.dark-mode .slider::before {
    color: #fd0094 !important;
  }

  .slider::before {
    color: #fff !important;
  }
}

/* Slider Knob ("O") */
.slider::before {
  content: "O";
  position: absolute;
  width: 0;
  left: 3px;
  top: -3px;
  color: grey;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

/* Checked State */
input:checked + .slider {
  background-color: #333;
  border-color: #fd0094;
	  font-weight: bold;
	  left: 2px;
}

input:checked + .slider::before {
  transform: translateX(9px);
  color: #fd0094;
}


/* Mobile Navigation Container */
.mobile-nav-inner {
  height: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #fd0094, #ff66c4);
  color: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  padding: 0;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* When Open */
.mobile-nav.open {
  right: 0;
}

/* Close Button */
.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}

/* Mobile Menu Items */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 2px 5px;
  border-radius: 6px;
  background-color: transparent;
  transition: background 0.3s ease;
}

.mobile-menu li a:hover {
  background-color: #fd0094;
}

/* Mobile Dark Mode Toggle */
.mobile-dark-toggle {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
	color: #fff;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 1000;
}

.mode-label {
  margin-left: 0.75rem;
  font-size: 0.9rem;
  color: #fff;
  vertical-align: middle;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .dark-toggle:not(.mobile-dark-toggle) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .search-toggle {
    display: block;
  }

  .desktop-search {
    display: none;
  }

  .logo-nav {
    gap: 0.5rem;
  }
}