body {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
   margin: 0;
   padding: 0;
   padding-top: 120px;
   box-sizing: border-box;
   font-family: "Roboto", Arial, sans-serif;
   font-size: 16px;
   line-height: 1.6;
   color: #000000;
}

html {
  scroll-behavior: smooth;
}

body * {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* Global header font consistency */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
}

p {
  font-family: inherit;
  font-size: 1rem;
  color: #000000;
}

html {
  height: 100%;
  margin: 0;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}

#primary {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.entry-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.entry-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.page-links {
  margin-top: 20px;
  font-size: 1rem;
}

.page-links a {
  color: #0073aa;
  text-decoration: none;
}

.page-links a:hover {
  text-decoration: none;
}
a {
  text-decoration: none;
}

/* ============================
🎯 GENERAL HEADER LAYOUT
============================ */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  color: #000000;
  gap: 4rem;
  flex-wrap: nowrap;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100px;
}

/* ============================
🎯 LOGO
============================ */
header .logo {
  flex: 0 0 auto;
  min-width: 160px;
}

header .logo a,
header .logo span {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* ============================
🎯 NAVIGATION LINKS
============================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links ul {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  padding: 16px 24px;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #007BFF;
}

/* ============================
💻 DESKTOP SEARCH FORM
============================ */
.search-form.desktop-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f5f5f5;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  flex: 1 1 auto;
  max-width: 600px;
  min-width: 400px;
  height: 56px;
}

.search-form.desktop-search .search-field {
  border: none;
  outline: none;
  padding: 0;
  flex: 1;
  color: #000000;
  background: transparent;
  font-size: 1.1rem;
  height: 100%;
}

.search-form.desktop-search .search-field::placeholder {
  color: #999;
}

.search-form.desktop-search .search-submit {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.search-form.desktop-search .search-submit:hover {
  color: #504947;
}

/* ============================
📱 MOBILE + TABLET HEADER STYLES
============================ */
@media (max-width: 1023px) {
  header .header-container {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    max-width: none;
    margin: 0;
  }

  body {
    padding-top: 90px;
  }

  /* ✅ Show hamburger menu */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    font-size: 2rem;
    margin-left: 1rem;
    z-index: 100;
  }


  /* ✅ Mobile nav dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 1rem 1.25rem;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li a {
    padding: 0.5rem 0;
    width: 100%;
    color: #333;
    font-size: 1rem;
  }

  .nav-links li a:hover {
    color: #007BFF;
  }

  /* ✅ Hide desktop search on small screens */
  .search-form.desktop-search {
    display: none;
  }

  /* ✅ Mobile search bar */
  .search-form.mobile-search {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
  }

  .search-form.mobile-search .search-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    padding: 0.25rem;
  }

  .search-form.mobile-search .search-submit {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #555;
    cursor: pointer;
  }

  .search-form.mobile-search .search-submit:hover {
    color: #007BFF;
  }

}

/* ============================
📱 Fallback Mobile Styles (Very Small Screens)
============================ */
@media (max-width: 480px) {
  .nav-links {
    font-size: 0.95rem;
  }

  .menu-toggle {
    font-size: 1.75rem;
  }
}
.menu-toggle {
  display: none;
}

/* 🔒 Default hidden hamburger */
.menu-toggle {
  display: none;
}

@media (min-width: 1024px) {
  nav .search-form.mobile-search {
    display: none !important;
  }
}

/* ============================
📄 WordPress Page Template Styling
============================ */
#primary.content-area {
  max-width: 1200px;
  padding: 40px 20px;
  width: 100%;
}

#main.site-main {
  width: 100%;
}

article.post {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow, 0 4px 20px rgba(0, 0, 0, 0.06));
  transition: box-shadow 0.3s ease;
}

.entry-header {
  margin-bottom: 20px;
  text-align: center;
}

.entry-header .entry-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color, #0073e6);
  display: inline-block;
  padding-bottom: 5px;
  text-transform: capitalize;
}

.entry-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1.5em;
}

.page-links {
  margin-top: 20px;
  text-align: center;
}

.page-links a {
  background: transparent;
  color: var(--primary-color, #0073e6);
  padding: 6px 12px;
  border-radius: 5px;
  margin: 0 5px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.page-links a:hover {
  color: var(--hover-color, #005bb5);
  text-decoration: underline;
}

:root {
  --primary-color: #2b0082;
  --hover-color: #2196F3;
  --text-color: #000000;
  --bg-light: #f9f9f9; /* Light background color for sections */
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discover-section {
  position: relative;
  margin: 40px auto;
  padding: 0 24px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}


.section-header,
.top-artists-section h2 {
  font-family: "Roboto", Arial, sans-serif;
  text-align: left;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 600;
  text-decoration: none;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.genre-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, background-color 0.3s;
}

.genre-item:hover {
  background-color: rgba(240, 240, 240, 1.1);
}

.genre-item a {
  color: var(--text-color);
  text-decoration: none;
}

.genre-item i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(208, 202, 202, 0.2);
}

.genre-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .genre-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .genre-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
/* Trending Section*/
.trending-section{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}


/* Common header styles */
.trending-section h2 {
  font-size: 1.5rem;
  text-align: left;
}

.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: 260px; /* Set row height as needed */
  gap: 20px;
  width: 100%;
  padding: 15px;
  width: 100%;
  margin-top: 20px;
  max-height: calc((260px * 3) + 20px); /* (row-height * rows) + gap */
  overflow: hidden;
}

@media (max-width: 768px) {
  .lyrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .lyrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Common card styles */
.lyrics-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  border-radius: 8px;
  flex-direction: column;
  max-width: 150px;
}
@media (max-width: 768px) {
  .lyrics-card {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .lyrics-card {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
}
/* Adjust styles for lyrics image */
.lyrics-image {
  width: 80%;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}


/* Song title styling */
.song-name {
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 4px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; 
  padding: 0 4px;
}

/* Artist name styling */
.artist_name {
  font-size: 0.75rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 4px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 4px;
  
}


.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: flex;
  }
}

/*ARTIST TOP HOME*/
.top-artists-section {
  margin: 40px auto;
  padding: 0 24px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}


.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  text-align: center;
  padding: 25px 20px;
  cursor: pointer;
  position: relative;
}

.artist-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.artist-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 50%;
  transition: transform 0.4s ease, border-radius 0.4s ease;
}

.artist-card:hover .artist-image {
  transform: scale(1.1);
  border-radius: 16px;
}


.artist-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .artist-grid {
    gap: 20px;
    padding: 20px 10px;
  }

  .artist-image {
    width: 80px;
    height: 80px;
  }

  .artist-name {
    font-size: 1rem;
  }
}

/* ===============================
   Global Reset & Base Styles
   =============================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: sans-serif;
  background-color: #f9f9f9;
  color: #333;
}


/* ===============================
    Main Lyrics Layout
    =============================== */
.lyrics-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 20px 0 20px; /* Removed excessive top margin - body already has padding-top */
  padding: 20px;
  border-radius: 10px;
}

/* Main lyrics section spacing */
.main-lyrics-section {
  margin-top: 20px;
  padding-top: 20px;
}

/* Lyrics content wrapper with advertisement layout */
.lyrics-content-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lyrics-main-content {
  flex: 2;
  min-width: 0;
}

.lyrics-sidebar {
  flex: 1;
  max-width: 350px;
  min-width: 300px;
}

/* Advertisement section styles */
.advertisement-section {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ad-container {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ad-label {
  background: #6c757d;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.ad-content {
  padding: 0;
}

.ad-placeholder {
  width: 300px;
  height: 250px;
  background: linear-gradient(135deg, #f0f2f5 0%, #e4e7ea 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-weight: 500;
  border: 2px dashed #dee2e6;
}

.ad-placeholder p {
  margin: 5px 0;
}

/* Mobile advertisement styles */
@media (max-width: 768px) {
  .lyrics-content-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .lyrics-sidebar {
    order: -1;
    max-width: 100%;
    min-width: auto;
  }

  .advertisement-section {
    position: static;
    top: auto;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .ad-container {
    flex-shrink: 0;
  }

  .ad-placeholder {
    width: 320px;
    height: 100px;
  }

  .ad-placeholder p:first-child {
    font-size: 14px;
  }

  .ad-placeholder p:last-child {
    font-size: 12px;
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .lyrics-container {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1000px;
    margin: 160px auto 0 auto; /* 160px top margin for desktop as requested */
  }
}

.share-buttons,
.lyrics-credits {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}


/* ===============================
   Album Art
   =============================== */
.album-art img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  max-width: 300px;
  margin-right: 20px; /* Right margin added */
}


/* ===============================
    Responsive Adjustments
    =============================== */
@media (max-width: 767px) {
  .lyrics-container {
    padding: 5px;
    gap: 5px;
    margin: 80px 10px 0 10px; /* 80px top margin for tablet (half of desktop) */
  }

  .album-art img {
    height: 150px;
    width: auto;
    object-fit: contain;
  }

  .song-title {
    font-size: 18px;
  }

  .artist-name,
  .song-url {
    font-size: 16px;
  }

  .lyrics-details {
    text-align: center;
  }

  .share-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lyrics-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 60px 5px 0 5px; /* 60px top margin for mobile (proportionally adjusted) */
    padding: 10px;
  }

  .album-art {
    margin-bottom: 15px;
  }

  .album-art img {
    height: 120px;
    max-width: 120px;
  }

  .lyrics-details {
    width: 100%;
  }

  .song-title {
    font-size: 16px;
  }

  .artist-name,
  .album-name {
    font-size: 14px;
  }

  .status-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .status-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  .share-buttons {
    gap: 8px;
  }

  .share-buttons a {
    font-size: 18px;
  }
}


/* ===============================
    Lyrics Text
    =============================== */
.lyrics-text {
    margin-left: 30px;
    margin-right: 20px; /* Right margin added */
    font-size: 16px;
}




/* Responsive enhancements */
@media (max-width: 768px) {
    .lyrics-text {
        font-size: 16px;
        max-width: 100%;
    }

    .enhanced-lyrics {
        padding: 20px;
        font-size: 16px;
    }

    .lyrics-section {
        margin-bottom: 25px;
    }

    .section-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .section-content {
        font-size: 16px;
    }

    .section-content p {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .lyrics-container {
        padding: 15px;
        gap: 20px;
    }

    .lyrics-text {
        font-size: 16px;
    }

    .enhanced-lyrics {
        padding: 15px;
        font-size: 16px;
    }

    .lyrics-section {
        margin-bottom: 20px;
    }

    .section-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-content {
        font-size: 16px;
    }

    .section-content p {
        margin: 8px 0;
    }
}


/* ===============================
   Insight & QA Section
   =============================== */
.lyrics-insight-section,
.qa-section {
  padding: 25px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 20px;
}

.lyrics-insight-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #444;
}

.section-content .insight-item {
  margin-bottom: 20px;
}

.section-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #555;
}

.insight-first-paragraph,
.insight-more-content {
  color: #444;
  line-height: 1.7;
}


/* ===============================
   Read More Buttons
   =============================== */
.read-more-button,
.read-more-btn {
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0.3rem;
  font-size: 1rem;
  margin-top: 1rem;
  color: #0078d7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.read-more-button:hover,
.read-more-btn:hover {
  color: #0056b3;
}

.read-more-button i {
  font-size: 1.2rem;
}


/* ===============================
   Song Credits
   =============================== */
.song-credits-text {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0 20px;
}

.song-credits-text h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.song-credits-text p {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
}

.song-credits-text a {
  color: #0073e6;
  text-decoration: none;
}

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


/* ===============================
   Responsive Embed Container
   =============================== */
.embed-container {
  --embed-aspect-ratio: 16 / 9;
  --embed-max-width: 1000px;
  --embed-border-radius: 10px;
  --embed-margin-vertical: 1.5rem;
  --embed-margin-horizontal: auto;

  position: relative;
  display: block;
  width: 100%;
  max-width: var(--embed-max-width);
  margin: var(--embed-margin-vertical) var(--embed-margin-horizontal);
  border-radius: var(--embed-border-radius);
  overflow: hidden;
  aspect-ratio: var(--embed-aspect-ratio);
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===============================
   Embed Customizations
   =============================== */
.embed-container--4-3 {
  --embed-aspect-ratio: 4 / 3;
}

.embed-container--full-width {
  --embed-max-width: 100%;
  --embed-margin-horizontal: 0;
  --embed-border-radius: 0;
}

/* ===============================
   🎵 PAGE INTRO 🎵
   =============================== */
  .new-lyrics-intro, 
.popular-intro, 
.early-access-intro {
  color: #333; 
  text-align: center;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(224, 96, 226, 0.2), rgba(255, 255, 255, 0.9));
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.new-lyrics-intro::after, 
.popular-intro::after, 
.early-access-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* === Intro Section Content === */
.new-lyrics-intro-content, 
.popular-intro-content, 
.early-access-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.new-lyrics-title, 
.popular-title, 
.early-access-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.new-lyrics-description, 
.popular-description, 
.early-access-description {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.5;
}

   
   /* ==========================
 📱 Responsive Design
========================== */
@media (max-width: 768px) {
  .new-lyrics-title, .popular-title, .early-access-title {
    font-size: 26px;
  }

  .new-lyrics-description, .popular-description, .early-access-description {
    font-size: 16px;
  }

  .playlist-title, .discover-playlist-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .new-lyrics-intro, 
  .popular-intro, 
  .early-access-intro {
    padding: 30px 15px;
  }

  .new-lyrics-title, 
  .popular-title, 
  .early-access-title {
    font-size: 22px;
  }

  .new-lyrics-description, 
  .popular-description, 
  .early-access-description {
    font-size: 14px;
  }
}

   /* Pagination */
.pagination {
  margin-top: 2rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.pagination .page-numbers:hover {
  border-color:rgb(0, 140, 255);
}

.pagination .current {
  border-color: #2196F3;
  border: 1px solid #ddd;

}

/* ==========================
🦶 FOOTER (Full Width, Bottom)
========================== */

footer {
  flex-shrink: 0;
  width: 100%;
  background-color: #121212;
  padding: 50px 30px;
  font-size: 14px;
  color: #ccc;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1db954;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding: 20px 30px 0;
  margin-top: 30px;
  font-size: 12px;
  width: 100%;
  box-sizing: border-box;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  margin: 0;
}

.footer-bottom ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: #1db954;
}

/* ================================
📱 RESPONSIVE DESIGN
================================ */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .footer-column {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 0;
  }

  .footer-bottom ul {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Archive Header */
.archive-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.archive-header h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

/* Sort Buttons */
.sort-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.sort-buttons a {
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sort-buttons a:hover,
.sort-buttons a.active {
  background: #333;
  color: #fff;
  border-color: #333;
}
    /* Styles for the Release Date Badge */
    .release-date-badge {
        display: inline-flex;
        align-items: center;
        color:rgb(0, 0, 0);         
        border-radius: 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        margin-top: 1rem;
    }

    .release-date-badge .calendar-icon {
        width: 1.2em; /* Adjust size as needed */
        height: 1.2em;
        margin-right: 10px;
        fill:rgb(0, 0, 0); /* Color of the SVG icon */
    }

    .release-date-badge .release-text {
        font-size: 0.9rem;
        font-weight: 500;
    }
    a {
  color: #0000FF;
  font-weight: bold;
  text-decoration: none;
}

.view-details-toggle {
  color: inherit;
  font-weight: normal;
}

.share-buttons a {
  color: inherit;
  font-weight: normal;
}

.lyrics-url {
  color: inherit;
  font-weight: normal;
}

a:hover,
.view-details-toggle:hover {
  text-decoration: none;
}

.share-buttons a:hover,
.lyrics-url:hover {
  text-decoration: none;
}


/* -------------------------------------------------------------
   Layout: Album Highlight Card
------------------------------------------------------------- */
.album-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  color: #000;
  border-radius: 1rem;
}

/* Album Cover */
.album-cover img,
.placeholder-cover {
  width: 200px;
  height: 200px;
  border-radius: 1rem;
  object-fit: cover;
}

.placeholder-cover {
  background: #ddd;
}

/* -------------------------------------------------------------
   Album Info Section
------------------------------------------------------------- */
.album-info {
  flex: 0 1 auto;
  max-width: 600px;
  width: auto;
}

.album-info > *:first-child {
  margin-top: 0;
}

.album-tag {
  color: #0099ff;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.album-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.25rem 0;
}

.album-artist {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.album-meta {
  margin-bottom: 1rem;
}

.album-meta span {
  margin-right: 1rem;
  font-size: 0.9rem;
  color: #333;
}

.album-description a,
.full-album-description .description-content a {
  color: #0073e6;
  font-weight: bold;

}

.album-description a:hover,
.full-album-description .description-content a:hover {
  color: #005bb5;
  text-decoration: none;
}

.read-more-btn-inline {
  display: inline;
  margin-left: 0.3rem;
  font-weight: bold;
  color: #0073aa;
}

/* -------------------------------------------------------------
   Album Actions Section (Stream + Share)
------------------------------------------------------------- */
.album-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffbc04;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.stream-btn i {
  font-size: 0.8rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-icon {
  color: #333;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.share-icon:hover {
  color: #1db954;
}

/* -------------------------------------------------------------
   Album Lyrics Section
------------------------------------------------------------- */
.album-lyrics-section {
  padding: 2rem 1rem;
}

.album-lyrics-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: left;
}

.tracklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  padding: 0 1rem;
  margin-left: 0;
}

.track {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 14px 18px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  font-family: sans-serif;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.track:hover {
  background-color: #f9f9f9;
  cursor: pointer;
  border-color: var(--primary-color);
}

.track-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
}

.track-number {
  min-width: 30px;
  margin-right: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #999;
}

.track-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.song-title,
.artist-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-title {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

.artist-name {
  font-size: 0.9rem;
  color: #888;
}

/* -------------------------------------------------------------
   Other Albums Section
------------------------------------------------------------- */
.album-other-albums {
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.album-other-albums h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
  text-align: left;
}

.album-other-albums ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.album-other-albums li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.album-other-albums li:hover {
  background-color: #f9f9f9;
  border-color: var(--primary-color);
}

.album-number {
  font-weight: bold;
  color: #999;
  min-width: 28px;
  flex-shrink: 0;
}

.album-other-albums li a {
  flex-grow: 1;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

/* -------------------------------------------------------------
   Full Album Description Section
------------------------------------------------------------- */
.full-album-description {
  margin-top: 3rem;
  padding: 0 1rem;
  width: 100%;
}

.full-album-description h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

.description-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  word-wrap: break-word;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .album-highlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .album-cover img,
  .placeholder-cover {
    width: 180px;
    height: 180px;
  }

  .album-info {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    text-align: center;
  }

  .album-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .album-highlight-card {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .album-title {
    font-size: 1.5rem;
  }

  .album-artist {
    font-size: 1.1rem;
  }

  .stream-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .share-icon {
    font-size: 1.1rem;
  }

  .album-lyrics-section,
  .album-other-albums,
  .full-album-description {
    padding: 1.25rem 1rem;
  }

  .tracklist {
    padding: 0;
  }

  .track {
    padding: 12px 14px;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .album-cover img,
  .placeholder-cover {
    width: 150px;
    height: 150px;
  }

  .track-number {
    font-size: 0.9rem;
  }

  .song-title {
    font-size: 0.95rem;
  }

  .artist-name {
    font-size: 0.8rem;
  }

  .stream-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .share-icon {
    font-size: 1rem;
  }

  .album-other-albums li {
    padding: 10px 12px;
  }

  .description-content {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

/* Intro Section Styling */
.intro-section {
  text-align: center;
  color: #000; /* Text color remains black */
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(75, 0, 130, 0.2), rgba(255, 255, 255, 0.9)); /* Indigo Blue */
  padding: 80px 5% 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

/* Fading effect at the bottom */
.intro-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px; /* Bottom fade */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  z-index: 1;
  pointer-events: none;
}

/* Responsive spacing for intro section */
@media (max-width: 768px) {
  .intro-section {
    padding: 60px 5% 40px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 50px 5% 30px;
    margin-top: 15px;
  }
}

/* Main Heading */
.intro-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4B0082, #191414); /* Indigo to Dark */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s ease-in-out;
}

/* Description */
.intro-description {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #000; /* Text remains black */
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  animation: fadeIn 1s ease-in-out;
}

/* Simple Fade-in Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Trending Now Card */
.trending-now-card {
  display: flex;
  align-items: center;
  background: rgba(75, 0, 130, 0.9);
  border-radius: 20px;
  padding: 8px 16px;
  margin-top: 20px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  height: 36px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.trending-now-card:hover {
  transform: scale(1.05);
  background: rgba(75, 0, 130, 1);
}

.trending-icon {
  margin-right: 8px;
  flex-shrink: 0;
}

.trending-icon i {
  color: white;
  font-size: 14px;
}

.trending-info {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.trending-label {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.trending-song {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genre-header { text-align: center; padding: 40px 0 10px; }
.genre-header h1 { font-size: 36px; font-weight: 600; margin-bottom: 5px; }
.genre-header p { color: #555; font-size: 16px; }
.genre-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 30px 0 20px; font-weight: 500; }
.genre-tabs span { cursor: pointer; position: relative; padding-bottom: 5px; transition: all 0.3s ease; color: #333; }
.genre-tabs span.active::after { content: ''; height: 3px; width: 100%; background: #6a5efc; position: absolute; bottom: 0; left: 0; }
.song-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 20px; }
.song-card { width: 240px; border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); transition: transform 0.2s; }
.song-card:hover { transform: translateY(-4px); }
.song-art { height: 160px; display: flex; justify-content: center; align-items: center; color: white; font-size: 40px; background: linear-gradient(135deg, #00d2ff, #3a7bd5); background-size: cover; background-position: center; }
.song-info { padding: 15px; }
.song-info h4 { margin: 0 0 5px; font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-info p { margin: 0; font-size: 14px; color: #555; }
.song-info .meta { display: flex; justify-content: space-between; font-size: 14px; margin-top: 8px; }
.song-info .meta a { color: #6a5efc; text-decoration: none; }
/* --- Responsive Adjustments --- */

/* For screens smaller than 768px (common tablet breakpoint) */
@media (max-width: 768px) {
    .genre-header h1 {
        font-size: 30px;
    }
    .genre-tabs {
        gap: 15px; /* Reduce gap between tabs */
        margin: 20px 10px; /* Add some horizontal margin */
    }
    .song-grid {
        gap: 20px; /* Reduce gap between album cards */
        padding: 15px;
    }
    .song-card {
        width: 45%; /* Allow two cards per row (approx.) */
        max-width: 220px; /* Limit max size for two-column layout */
    }
}

/* For screens smaller than 480px (common phone breakpoint) */
@media (max-width: 480px) {
    .genre-header {
        padding: 20px 0 5px;
    }
    .genre-header h1 {
        font-size: 26px;
    }
    .genre-header p {
        font-size: 14px;
    }
    .genre-tabs {
        gap: 10px; /* Further reduce gap for smaller screens */
        margin: 15px 5px;
        font-size: 14px;
        justify-content: flex-start; /* Align tabs to the left if many */
        overflow-x: auto; /* Enable horizontal scrolling if tabs exceed screen width */
        white-space: nowrap; /* Prevent tabs from wrapping if overflow-x is used */
        padding-bottom: 8px; /* Give space for scrollbar on some OS */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    /* Hide scrollbar for genre tabs on some browsers */
    .genre-tabs::-webkit-scrollbar {
        display: none;
    }
    .genre-tabs {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .genre-tabs span {
        padding: 5px 10px; /* Add padding to make tabs more clickable */
        min-width: fit-content; /* Ensure tab content isn't compressed */
    }

    .song-grid {
        padding: 10px;
        gap: 15px; /* Further reduce gap */
    }
    .song-card {
        width: 100%; /* Make album cards full width for single column layout */
        max-width: 300px; /* Optional: cap max width for larger phones */
        margin: 0 auto; /* Center the card if less than 100% width */
    }
    .song-art {
        height: 140px; /* Slightly reduce album art height */
        font-size: 30px;
    }
    .song-info h4 {
        font-size: 16px;
    }
    .song-info p {
        font-size: 13px;
    }
}
.breadcrumb-separator {
    margin: 0 8px;
}

.article-image-no-bg {
    background: none;
    padding: 0;
}
.hidden-content {
    display: none;
}
.error-message {
    color: red;
}
.site-navigation-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

/* ===============================
   JavaScript Helper Classes
   =============================== */
.js-hidden { display: none !important; }
.js-visible { display: block !important; }
.js-expanded { display: block !important; }
.js-collapsed { display: none !important; }


/* ===============================
   Tag Archive Page Styling
   =============================== */
.tag-archive-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.tag-header {
    color: var(--text-primary, #333);
    padding: 6rem 2rem 4rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tag-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    z-index: 1;
}

.tag-hero {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tag-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tag-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tag-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.tag-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.post-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.tag-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 3rem;
}

.tag-filters {
    flex: 0 0 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.tag-filters h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.filter-btn:hover {
    background: #e9ecef;
    color: #333;
}

.filter-btn.active {
    background: var(--primary-color, #2b0082);
    color: white;
    border-color: var(--primary-color, #2b0082);
}

.filter-btn .count {
    font-size: 0.875rem;
    opacity: 0.8;
}

.tag-results {
    flex: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tag-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    position: relative;
}

.tag-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.tag-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tag-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tag-item:hover .tag-item-image img {
    transform: scale(1.05);
}

.tag-item-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.post-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.tag-item-content {
    padding: 1.5rem;
}

.tag-item-title {
    margin-bottom: 1rem;
}

.tag-item-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.tag-item-title a:hover {
    color: var(--primary-color, #2b0082);
}

.tag-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.tag-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tag-item-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tag-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    color: var(--primary-color, #2b0082);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tag-link:hover {
    color: #1a0052;
    text-decoration: underline;
}

/* Related Tags Section */
.related-tags-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.related-tags-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.related-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.related-tag:hover {
    background: var(--primary-color, #2b0082);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.tag-count {
    background: rgba(0,0,0,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.related-tag:hover .tag-count {
    background: rgba(255,255,255,0.2);
}

/* Pagination */
.tag-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pagination-item a:hover {
    background: var(--primary-color, #2b0082);
    color: white;
    transform: translateY(-2px);
}

.pagination-item .current {
    background: var(--primary-color, #2b0082);
    color: white;
}

/* Empty State */
.no-tag-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 4rem 2rem;
}

.empty-state {
    text-align: center;
    max-width: 500px;
}

.empty-state i {
    font-size: 5rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.empty-state h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color, #2b0082);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1a0052;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Animation for filtering */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tag Archive Responsive Design */
@media (max-width: 1024px) {
    .tag-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .tag-filters {
        position: static;
        flex: none;
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        flex: 0 1 auto;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tag-header {
        padding: 4rem 1rem 3rem;
        margin-top: 1.5rem;
    }

    .tag-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .tag-title {
        font-size: 2rem;
    }

    .tag-description {
        font-size: 1rem;
    }

    .tag-content-wrapper {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .tag-filters {
        padding: 1rem;
        border-radius: 8px;
    }

    .tag-filters h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .filter-buttons {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .filter-btn .count {
        font-size: 0.75rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .tag-item-image,
    .tag-item-placeholder {
        height: 180px;
    }

    .tag-item-content {
        padding: 1rem;
    }

    .tag-item-title a {
        font-size: 1.1rem;
    }

    .tag-item-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .related-tags-section {
        padding: 0 1rem 3rem;
    }

    .related-tags-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .related-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .tag-count {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }

    .pagination-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }

    .pagination-item a,
    .pagination-item span {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .tag-header {
        padding: 3rem 0.5rem 2rem;
        margin-top: 1rem;
    }

    .tag-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .tag-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .post-count {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .tag-content-wrapper {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }

    .tag-filters {
        padding: 0.75rem;
    }

    .filter-buttons {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        min-height: auto;
    }

    .filter-btn .count {
        font-size: 0.7rem;
    }

    .tag-item {
        margin: 0 0.5rem;
    }

    .tag-item-image,
    .tag-item-placeholder {
        height: 160px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .post-type-badge {
        top: 8px;
        right: 8px;
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }

    .tag-item-content {
        padding: 0.75rem;
    }

    .tag-item-title a {
        font-size: 1rem;
        line-height: 1.3;
    }

    .tag-item-meta {
        gap: 0.4rem;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .tag-item-excerpt {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .tag-link {
        font-size: 0.8rem;
    }

    .related-tags {
        gap: 0.5rem;
    }

    .related-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .empty-state i {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .empty-state h2 {
        font-size: 1.5rem;
    }

    .empty-state p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===============================
   Tag Cloud & Widget Styling
   =============================== */
.lyrical-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
}

.tag-cloud-item:hover {
    background: var(--primary-color, #2b0082);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 0, 130, 0.3);
}

.tag-cloud-item .tag-count {
    background: rgba(0,0,0,0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-cloud-item:hover .tag-count {
    background: rgba(255,255,255,0.2);
}

/* Tag Cloud Sizes */
.tag-cloud-small .tag-cloud-item {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

.tag-cloud-small .tag-cloud-item .tag-count {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
}

.tag-cloud-large .tag-cloud-item {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.tag-cloud-large .tag-cloud-item .tag-count {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

/* Popular Tags Widget */
.popular-tags-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.popular-tags-widget .widget-title {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.popular-tags-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.popular-tag-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.popular-tag-item:hover {
    background: var(--primary-color, #2b0082);
    color: white;
    border-color: var(--primary-color, #2b0082);
    transform: translateX(5px);
}

.popular-tag-item .tag-count {
    background: rgba(0,0,0,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.popular-tag-item:hover .tag-count {
    background: rgba(255,255,255,0.2);
}

/* Enhanced Post Tags */
.post-tags-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.post-tag-item {
    color: var(--primary-color, #2b0082);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background: rgba(43, 0, 130, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.post-tag-item:hover {
    background: var(--primary-color, #2b0082);
    color: white;
    text-decoration: none;
}

.more-tags {
    color: #888;
    font-size: 0.875rem;
    font-style: italic;
    padding: 0.25rem 0.5rem;
}

.no-tags-message {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Tag Cloud Responsive */
@media (max-width: 768px) {
    .lyrical-tag-cloud {
        gap: 0.5rem;
        padding: 1rem;
    }

    .tag-cloud-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .popular-tags-widget {
        padding: 1rem;
    }

    .popular-tags-widget .widget-title {
        font-size: 1.1rem;
    }

    .popular-tag-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .lyrical-tag-cloud {
        gap: 0.4rem;
        padding: 0.75rem;
    }

    .tag-cloud-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .popular-tags-list {
        gap: 0.5rem;
    }

    .popular-tag-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .post-tag-item {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}






.explore-more-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Featured Playlist Section */
.featured-playlist-section {
    margin: 40px auto;
    padding: 0 24px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.playlist-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e5e9;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.playlist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.playlist-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.playlist-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.playlist-info {
    padding: 16px;
}

.playlist-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.playlist-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.track-count {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .playlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .playlist-image,
    .playlist-placeholder {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .playlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .playlist-image,
    .playlist-placeholder {
        height: 140px;
    }

    .playlist-info {
        padding: 12px;
    }

    .playlist-name {
        font-size: 1rem;
    }
}

/* News Section */
.news-section {
    margin: 40px auto;
    padding: 0 24px;
    max-width: 1200px;
}

.news-section .section-header {
    color: #000;
    text-align: left;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 100px);
    gap: 20px;
}

.main-news {
    grid-row: 1 / 4;
    grid-column: 1 / 2;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #e1e5e9;
}

.main-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.main-news a {
    text-decoration: none;
    color: #fff;
    display: block;
    height: 100%;
}

.main-news .news-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.main-news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.main-news .news-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}



.main-news .news-content {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    border-radius: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-news .news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.main-news .news-content p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
}

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



.side-news-container {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-news {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    height: 100px;
    border: 1px solid #e1e5e9;
}

.side-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.side-news a {
    text-decoration: none;
    color: #333;
    display: flex;
    width: 100%;
    align-items: center;
}

.side-news .news-image-side {
    position: relative;
    flex-shrink: 0;
}

.side-news .news-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
}

.side-news .news-image-side img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
}

.side-news .news-content-side {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-news .news-content-side h4 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile responsive news layout */
@media (max-width: 768px) {
    .news-section {
        max-width: none;
        padding: 0 20px;
        margin: 50px 0;
    }

    .news-section .section-header {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-left: 4px;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-template-columns: none;
        grid-template-rows: none;
    }

    .main-news {
        grid-row: unset;
        grid-column: unset;
        height: 300px;
        order: 1;
        width: 100%;
        max-width: none;
    }

    .main-news .news-image img {
        border-radius: 10px;
    }

    .side-news-container {
        grid-column: unset;
        grid-row: unset;
        display: flex;
        flex-direction: column;
        gap: 16px;
        order: 2;
        width: 100%;
    }

    /* All side news cards - same styling as main news */
    .side-news {
        height: 300px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: none;
    }

    .side-news a {
        width: 100%;
        height: 100%;
        position: relative;
        display: block;
    }

    .side-news .news-image-side {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .side-news .news-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .side-news .news-content-side {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
        border-radius: 10px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 16px;
    }

    .side-news .news-content-side h4 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #fff;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .side-news .news-content-side p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 12px;
        color: #fff;
    }

    .side-news a {
        color: #fff;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 0 16px;
        margin: 30px 0;
    }

    .news-section .section-header {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .news-grid {
        gap: 16px;
    }

    .main-news {
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .main-news .news-content {
        padding: 20px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    }

    .main-news .news-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 8px;
        color: #fff;
        font-weight: 600;
    }

    .main-news .news-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: rgba(255,255,255,0.9);
        margin-bottom: 10px;
    }

    .side-news {
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }

    .side-news .news-content-side {
        padding: 16px;
    }

    .side-news .news-content-side h4 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .side-news .news-content-side p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .news-date {
        font-size: 0.75rem;
        opacity: 0.8;
        font-weight: 500;
    }

    .news-meta {
        margin-top: 8px;
    }
}

/* =============================================================================
   PLAYLISTS PAGE TEMPLATE STYLING (playlists.php)
   ============================================================================= */

.playlists-page {
    min-height: 100vh;
}

.playlists-hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 1rem;
}

.hero-icon i {
    font-size: 4rem;
    color: #667eea;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #2d3748;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #718096;
}

.playlists-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.playlists-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-text {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats-text i {
    color: #667eea;
    font-size: 1.1rem;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.playlist-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.playlist-card-inner {
    position: relative;
    height: 100%;
}

.playlist-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f4f8, #d6e8f5);
}

.cover-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.playlist-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.playlist-card:hover .playlist-thumbnail {
    transform: scale(1.05);
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cover-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.play-button i {
    font-size: 1.5rem;
    color: #667eea;
    margin-left: 2px;
}

.playlist-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.playlist-info {
    padding: 1.5rem;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}

.playlist-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.playlist-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.playlist-title a:hover {
    color: #667eea;
}

.playlist-description {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.playlist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #a0aec0;
}

.playlist-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.playlist-meta i {
    font-size: 0.8rem;
}

.track-count {
    font-weight: 500;
    color: #667eea;
}

.no-playlists {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.empty-state h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Mobile Responsive Design for Playlists Page */
@media (max-width: 768px) {
    .playlists-hero {
        padding: 3rem 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .playlists-content {
        padding: 1rem;
    }

    .playlists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .playlists-stats {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .playlist-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .playlist-cover {
        height: 180px;
    }

    .playlist-info {
        height: calc(100% - 180px);
        padding: 1rem;
    }
}

/* ===================================
   SINGLE NEWS PAGE STYLES
   =================================== */

/* Main container */
.single-news-page {
    min-height: 100vh;
    padding: 0;
}

/* Breadcrumb */
.news-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 90px;
    position: sticky;
    top: 80px;
    z-index: 1000;
    width: 100%;
    display: block !important;
    visibility: visible !important;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    opacity: 1 !important;
    visibility: visible !important;
}

.breadcrumb-nav a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #666666;
    text-shadow: none;
}

.breadcrumb-separator {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
}

.breadcrumb-nav > span:last-child {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Article container */
.news-article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

/* Main article */
.news-article-main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Article header */
.news-article-header {
    position: relative;
}

.news-hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.news-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.news-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 40px;
    color: white;
}

.news-category-badge {
    background: black;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.news-article-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.meta-separator {
    color: rgba(255, 255, 255, 0.6);
}

/* Header without image */
.news-header-no-image {
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-header-no-image .news-article-title {
    color: #2d3748;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-header-no-image .news-article-meta {
    color: rgba(0, 0, 0, 0.7);
}

/* Article content */
.news-article-content {
    padding: 50px 40px;
}

.news-article-excerpt {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-left: 4px solid black;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.news-article-body {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
}

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

.news-article-body h2,
.news-article-body h3,
.news-article-body h4 {
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.news-article-body h2 {
    font-size: 28px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
}

.news-article-body h3 {
    font-size: 24px;
}

.news-article-body h4 {
    font-size: 20px;
}

.news-article-body a {
    color: black;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.news-article-body a:hover {
    color: #333333;
    text-decoration-color: black;
    text-shadow: none;
}

.news-article-body blockquote {
    border-left: 4px solid black;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: rgba(0, 0, 0, 0.8);
}

.news-article-body ul,
.news-article-body ol {
    padding-left: 30px;
    margin: 20px 0;
}

.news-article-body li {
    margin-bottom: 10px;
}

/* Tags */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-tag {
    background: rgba(0, 0, 0, 0.1);
    color: black;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.news-tag:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Author info */
.news-author-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.author-details h4 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.author-details p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Social share */
.news-social-share {
    background: rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.share-title {
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    color: #2d3748;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-btn.facebook:hover {
    background: #4267b2;
    border-color: #4267b2;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-btn.copy:hover {
    background: black;
    border-color: black;
    color: white;
}

/* Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    color: #2d3748;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

/* Related articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.related-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.related-article-link {
    display: flex;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.related-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.related-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-thumbnail {
    transform: scale(1.1);
}

.related-content {
    flex: 1;
}

.related-title {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.related-article:hover .related-title {
    color: black;
}

.related-meta {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    margin: 0;
}


/* Comments section */
.news-comments-section {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px 40px;
}

.comments-title {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

/* No news found */
.no-news-found {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.no-news-found h2 {
    color: #2d3748;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.no-news-found p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.back-to-news {
    display: inline-block;
    background: black;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-news:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-sidebar {
        order: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .news-article-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .news-breadcrumb {
        margin-top: 80px;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.98);
        position: sticky;
        top: 70px;
        display: block !important;
        visibility: visible !important;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-nav {
        font-size: 13px;
        gap: 6px;
    }

    .news-article-container {
        padding: 160px 15px 20px;
        gap: 30px;
    }

    .news-hero-image {
        height: 300px;
    }

    .news-hero-overlay,
    .news-header-no-image {
        padding: 40px 25px 25px;
    }

    .news-article-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .news-article-meta {
        font-size: 14px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-article-content {
        padding: 30px 25px;
    }

    .news-article-excerpt {
        font-size: 18px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .news-article-body {
        font-size: 16px;
        line-height: 1.7;
    }

    .news-author-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .share-buttons {
        justify-content: center;
    }

    .share-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }

    .sidebar-section {
        padding: 20px;
    }

    .related-article-link {
        flex-direction: column;
        text-align: center;
    }

    .related-image {
        width: 100%;
        height: 200px;
        align-self: center;
    }


    .comments-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .news-breadcrumb {
        margin-top: 70px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 1);
        position: sticky;
        top: 60px;
        display: block !important;
        visibility: visible !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .news-article-title {
        font-size: 24px;
    }

    .news-article-container {
        padding: 140px 12px 20px;
    }

    .news-article-excerpt {
        font-size: 16px;
    }

    .news-article-body {
        font-size: 15px;
    }

    .news-hero-overlay,
    .news-header-no-image,
    .news-article-content {
        padding: 20px;
    }

    .share-btn {
        padding: 10px 15px;
        font-size: 13px;
        min-width: 100px;
    }

    .sidebar-section {
        padding: 15px;
    }

    .no-news-found {
        padding: 40px 20px;
        margin: 50px auto;
    }

    .no-news-found h2 {
        font-size: 28px;
    }

    .no-news-found p {
        font-size: 16px;
    }
}


/* Print styles */
@media print {
    .single-news-page {
        background: white;
        color: black;
    }

    .news-breadcrumb,
    .news-sidebar,
    .news-social-share,
    .news-comments-section {
        display: none;
    }

    .news-article-container {
        grid-template-columns: 1fr;
        max-width: none;
        padding: 0;
    }

    .news-article-main {
        background: none;
        border: none;
        box-shadow: none;
    }

    .news-article-title,
    .news-article-body h2,
    .news-article-body h3,
    .news-article-body h4 {
        color: black;
    }

    .news-article-body,
    .news-article-excerpt {
        color: black;
    }
}


