/* =========================================================
   1. VARIABLES ET RÉINITIALISATION
========================================================= */
:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --accent-color: #ff5722;
  --accent-dark: #e64a19;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --page-bg: #f9f9f9;
  --surface: #ffffff;
  --text-color: #2f2f2f;
  --muted-color: #666666;
  --border-color: #e5eaf0;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 22px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-color);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #252525;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  line-height: 1.65;
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.site-main {
  min-height: calc(100vh - 180px);
}

.center {
  text-align: center;
}

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

/* =========================================================
   2. HEADER, NAVIGATION ET LANGUE
========================================================= */
.site-header {
  position: relative;
  z-index: 100;
  background: linear-gradient(90deg, #ff4f81 0%, #007bff 100%);
  color: #fff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 5px 0;
}

.site-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

.site-title {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
}

.site-nav li a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

#public-menu-toggle {
  display: none;
}

.public-burger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002;
}

.public-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

#public-menu-toggle:checked + .public-burger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

#public-menu-toggle:checked + .public-burger span:nth-child(2) {
  opacity: 0;
}

#public-menu-toggle:checked + .public-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.language-item {
  display: flex;
  align-items: center;
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher select {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select:hover,
.language-switcher select:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.language-switcher option {
  color: #111;
  background: #fff;
}

.menu-overlay {
  display: none;
}

/* =========================================================
   3. BOUTONS ET COMPOSANTS COMMUNS
========================================================= */
.btn,
.support-banner-btn,
.btn-back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  background: var(--primary-color);
}

.btn:hover {
  color: #fff;
  background: var(--primary-dark);
}

.btn-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.btn-accent {
  background: var(--accent-color);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.support-banner-btn,
.btn-back-home {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #007bff 0%, #ff4f81 100%);
}

.support-banner-btn:hover,
.btn-back-home:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   4. ACCUEIL — HERO ET STATISTIQUES
========================================================= */
.home-hero {
  padding: 2.2rem 0 1rem;
}

.home-hero-box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 40px 28px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.home-hero-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff4f81 0%, #007bff 100%);
}

.home-hero-heading {
  max-width: 850px;
  margin: 0 auto 24px;
}

.home-hero-heading h2 {
  margin-bottom: 12px;
  text-align: center;
}

.home-hero-tagline {
  margin: 0;
  color: #555;
  font-size: 1.12rem;
  text-align: center;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid #e8edf3;
}

.home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 12px 4px;
  text-align: center;
}

.home-stat + .home-stat {
  border-left: 1px solid #e8edf3;
}

.home-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 1.45rem;
  line-height: 1.2;
}

.home-stat span {
  display: block;
  color: var(--muted-color);
  font-size: 0.9rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid #e8edf3;
}

.home-hero-actions .support-banner-btn {
  min-width: 190px;
}

.contributors-banner-btn {
  background: var(--surface);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.contributors-banner-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =========================================================
   5. ACCUEIL — DERNIÈRE ET PROCHAINE PLAYLIST
========================================================= */
.home-playlists-summary {
  margin: 36px 0 22px;
}

.home-playlists-summary-box {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.home-playlists-latest,
.home-playlists-next {
  padding: 26px 28px;
}

.home-playlists-latest {
  border-right: 1px solid #e6ebf1;
}

.home-playlists-title {
  margin: 0 0 22px;
  text-align: center;
}

.home-playlists-latest-content {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.latest-playlist-cover-home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-playlist-cover-home img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
}

.latest-playlist-cover-home img.latest-cover-default {
  object-fit: contain;
  padding: 8px;
  border-radius: 0;
  box-shadow: none;
}

.latest-playlist-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.latest-playlist-name {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 800;
}

.latest-playlist-meta {
  margin-bottom: 14px;
  color: #555;
  font-size: 0.95rem;
}

.latest-playlist-comment {
  max-width: 700px;
  margin-bottom: 18px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
}

.latest-home-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.latest-home-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 105px;
  text-align: center;
}

.latest-home-badge img {
  width: 82px;
  height: 82px;
  margin-bottom: 7px;
  object-fit: contain;
}

.latest-home-badge span {
  color: #333;
  font-size: 0.92rem;
  line-height: 1.25;
}

.latest-playlist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-playlists-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
}

.upcoming-playlist-label {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.upcoming-playlist-name {
  margin: 0 0 12px;
  font-size: 1.55rem;
  text-align: left;
}

.upcoming-playlist-date {
  margin-bottom: 20px;
  color: #555;
  font-size: 0.93rem;
}

.upcoming-playlist-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upcoming-badge-line {
  display: grid;
  grid-template-columns: auto 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  font-size: 0.9rem;
}

.upcoming-badge-line img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.upcoming-playlist-comment {
  margin-top: 18px;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
}

.upcoming-playlist-link {
  align-self: flex-start;
  margin-top: 20px;
  font-size: 0.92rem;
}

/* =========================================================
   6. ACCUEIL — CATÉGORIES RÉCENTES ET LÉGENDE
========================================================= */
.recent-categories {
  margin: 16px 0 10px;
}

.recent-categories-box,
.legend-box {
  max-width: 1000px;
  margin: 20px auto;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.recent-categories-title {
  margin: 6px 0 16px;
  text-align: center;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.recent-card {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid #eef1f4;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.recent-image {
  margin-bottom: 10px;
}

.recent-image img {
  max-width: 80px;
  margin: 0 auto;
}

.recent-name {
  margin-bottom: 6px;
  color: var(--primary-color);
  font-weight: 800;
}

.recent-desc {
  margin-top: 4px;
  color: var(--muted-color);
  font-size: 0.9rem;
  line-height: 1.45;
}

.legend-box {
  margin-bottom: 45px;
}

.legend-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--page-bg);
  border-radius: 8px;
}

.legend-item img {
  width: 22px;
  height: 22px;
}

.legend-item span {
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
}

.legend-count {
  margin-left: 2px;
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   7. ACCUEIL — GRILLE DES BADGES
========================================================= */
.badge-list-index {
  padding-top: 10px;
}

.badge-list-index > h2 {
  margin: 30px 0 24px;
  text-align: center;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 40px 20px;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.badge-card {
  position: relative;
  padding: 1rem;
  background: var(--surface);
  border: 4px solid transparent;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.12);
}

.badge-card.no-playlist {
  border-color: var(--danger-color);
}

.badge-card.has-playlist,
.badge-card.type-achievement {
  border-color: var(--success-color);
}

.badge-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}

.badge-icon img {
  height: 30px;
  max-width: 100%;
}

.badge-image-container {
  margin-bottom: 12px;
  text-align: center;
}

.badge-image-container img {
  max-width: 80px;
  margin: 0 auto;
}

.badge-card a {
  display: block;
}

.badge-count {
  color: var(--accent-color);
  font-weight: 700;
}

.badge-name {
  font-weight: 700;
}

.badge-desc {
  margin-top: 6px;
  color: var(--muted-color);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* =========================================================
   9. VIEWLISTS — EN-TÊTE, RECHERCHE ET FILTRES
========================================================= */
.viewlists-header {
  padding: 36px 0 8px;
}

.viewlists-heading {
  margin-bottom: 24px;
  text-align: center;
}

.viewlists-heading h1 {
  margin-bottom: 12px;
  font-size: 2.25rem;
  font-weight: 500;
}

.viewlists-count {
  margin: 0;
  font-size: 1.3rem;
}

.viewlists-count strong {
  color: var(--primary-color);
}

.viewlists-toolbar {
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.viewlists-search,
.viewlists-search-field {
  width: 100%;
}

.viewlists-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.viewlists-search-field > i {
  position: absolute;
  left: 17px;
  color: #777;
  pointer-events: none;
}

.viewlists-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 48px;
  border: 1px solid #d6dde6;
  border-radius: 10px;
  background: var(--surface);
  color: #222;
  font-size: 1rem;
}

.viewlists-search-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.12);
}

.viewlists-search-clear {
  position: absolute;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1f3f5;
  color: #555;
  cursor: pointer;
}

.viewlists-search-clear:hover {
  background: #e2e6ea;
  color: #111;
}

.viewlists-search-clear[hidden] {
  display: none;
}

.playlist-filter-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 0;
}

.playlist-filter-links a {
  display: inline-block;
  padding: 10px 16px;
  background: #f1f1f1;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #222;
}

.playlist-filter-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 123, 255, 0.2);
}

.playlist-filter-links a.active {
  background: #111;
  color: #fff;
}

.playlist-search-status {
  min-height: 24px;
  margin: 12px auto 0;
  color: var(--muted-color);
  font-size: 0.9rem;
  text-align: center;
}

/* =========================================================
   10. CARTES DE PLAYLISTS — BASE COMMUNE
========================================================= */
.playlist-section {
  padding: 24px 0;
}

.playlist-section h2 {
  margin-bottom: 24px;
  text-align: center;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.playlist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #edf0f3;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.playlist-cover {
  padding-top: 14px;
  text-align: center;
}

.playlist-cover img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.playlist-cover img:hover {
  transform: scale(1.05);
}

.playlist-cover img.playlist-cover-default {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
}

.playlist-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 14px 6px;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
}

.playlist-unavailable {
  color: var(--danger-color);
}

.playlist-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 14px;
}

.playlist-images > img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.no-badge-label {
  width: 100%;
  padding: 18px;
  background: #f3f3f3;
  border-radius: 12px;
  color: #555;
  font-weight: 700;
  text-align: center;
}

.playlist-meta-compact {
  margin-top: auto;
  padding: 0 14px 16px;
  color: var(--muted-color);
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
}

.playlist-meta-compact span {
  color: #333;
  font-weight: 700;
}

.playlist-rerelease-date {
  margin-top: 6px;
  color: var(--accent-color);
  font-weight: 700;
}

.spotify-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  color: #1db954;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.spotify-badge:hover {
  color: #1db954;
  transform: scale(1.08);
}

.playlist-search-empty {
  grid-column: 1 / -1;
  width: 100%;
  padding: 45px 20px;
  background: var(--surface);
  border: 1px dashed #cfd7e1;
  border-radius: 12px;
  color: var(--muted-color);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

#playlist-results[aria-busy="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.viewlists-load-more-wrap {
  position: sticky;
  bottom: 12px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 30px);
  margin: 30px auto 35px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
}

.viewlists-load-more-wrap[hidden] {
  display: none;
}

.viewlists-display-count {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  text-align: center;
}

.viewlists-load-more {
  min-width: 180px;
  padding: 13px 24px;
  border: none;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.viewlists-load-more:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.28);
}

.viewlists-load-more:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* =========================================================
   11. THISWEEK
========================================================= */
.intro {
  padding: 32px 0 10px;
  text-align: center;
}

.intro h2 {
  margin-bottom: 12px;
}

.intro p {
  max-width: 850px;
  margin: 0 auto;
}

.playlist-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.thisweek-card {
  height: 100%;
  padding: 16px;
}

.thisweek-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin-bottom: 10px;
}

.thisweek-cover img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.thisweek-cover img.thisweek-cover-default {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.65;
}

.thisweek-card .playlist-title {
  min-height: 54px;
  padding: 8px 8px 4px;
}

.thisweek-comment {
  margin: 0;
  padding: 0 10px 10px;
  color: var(--muted-color);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}

.thisweek-card .playlist-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  margin: 8px 0 0;
  padding: 10px 4px 12px;
}

.thisweek-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.thisweek-badge img {
  width: 72px;
  height: 72px;
  margin: 0 auto 7px;
  object-fit: contain;
}

.thisweek-badge-name {
  min-height: 30px;
  color: #333;
  font-size: 0.8rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.thisweek-card .playlist-meta-compact {
  width: 100%;
  margin-top: auto;
  padding: 4px 4px 2px;
  color: #555;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* =========================================================
   12. SUPPORT
========================================================= */
.support-page {
  padding-bottom: 40px;
}

.support-hero {
  padding: 36px 0 18px;
}

.support-hero-box,
.support-donation-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.support-hero-box::before,
.support-donation-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff4f81 0%, #007bff 100%);
}

.support-hero-box {
  padding: 38px 34px 34px;
}

.support-hero-icon {
  margin-bottom: 10px;
  font-size: 2.7rem;
  line-height: 1;
  text-align: center;
}

.support-hero h1 {
  margin-bottom: 8px;
  color: var(--primary-color);
  text-align: center;
}

.support-hero-subtitle {
  margin-bottom: 30px;
  color: var(--muted-color);
  font-size: 1.08rem;
  text-align: center;
}

.support-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-story-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 14px;
}

.support-story-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f8fbff 0%, #fff7fa 100%);
}

.support-story-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.14);
  border-radius: 50%;
  font-size: 1.45rem;
  box-shadow: var(--shadow-sm);
}

.support-story-card p {
  margin: 0 0 12px;
  color: #3f3f3f;
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: left;
}

.support-story-card p:last-child {
  margin-bottom: 0;
}

.support-story-lead {
  color: #222 !important;
  font-weight: 700;
}

.donation-thanks {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.support-donation-section {
  padding: 18px 0 0;
}

.support-donation-box {
  padding: 36px 30px 30px;
}

.support-donation-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.support-donation-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 13px;
  background: #eef6ff;
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.support-donation-heading h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.support-donation-heading p {
  margin: 0;
  color: var(--muted-color);
}

.donation-quick-title {
  margin-bottom: 16px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.donation-form,
.donation-custom-form {
  margin: 0;
}

.donation-btn {
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.donation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 123, 255, 0.2);
}

.donation-btn-fixed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 68px;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #007bff 0%, #ff4f81 100%);
}

.donation-btn-amount {
  font-size: 1.25rem;
  line-height: 1.15;
}

.donation-btn-fixed small {
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.support-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 30px auto 20px;
  color: var(--muted-color);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.support-divider::before,
.support-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dce5ef;
}

.donation-custom-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 14px;
}

.donation-custom-input-group {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 590px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.donation-currency {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: #eef5ff;
  border-right: 1px solid #dbe7f5;
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.donation-custom-input-group input[type="number"] {
  flex: 1;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px;
  border: none;
  background: var(--surface);
  color: #222;
  font-size: 1rem;
  outline: none;
  -moz-appearance: textfield;
}

.donation-custom-input-group input[type="number"]:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 123, 255, 0.12);
}

.donation-custom-input-group input[type="number"]::-webkit-outer-spin-button,
.donation-custom-input-group input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.donation-btn-custom {
  min-width: 150px;
  padding: 0 22px;
  border-radius: 0;
  background: var(--accent-color);
}

.donation-btn-custom:hover {
  background: var(--accent-dark);
}

.support-secure-note {
  margin: 16px 0 0;
  color: var(--muted-color);
  font-size: 0.82rem;
  text-align: center;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.thankyou-page {
  padding-bottom: 40px;
}

.thankyou-section {
  padding: 40px 0 60px;
}

.thankyou-box {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 42px 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thankyou-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #ff4f81 0%, #007bff 100%);
}

.thankyou-icon {
  margin-bottom: 12px;
  font-size: 2.8rem;
  line-height: 1;
}

.thankyou-box h1 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.thankyou-lead {
  margin-bottom: 28px;
  color: var(--muted-color);
  font-size: 1.1rem;
}

.thankyou-message {
  max-width: 680px;
  margin: 0 auto;
}

.thankyou-message p {
  margin: 0 0 14px;
  color: #444;
  line-height: 1.65;
}

.thankyou-highlight {
  margin: 28px auto 0;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fbff 0%, #fff7fa 100%);
  color: var(--primary-color);
  font-weight: 700;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* =========================================================
   13. FOOTER
========================================================= */
.site-footer {
  margin-top: 2rem;
  padding: 1.25rem 0;
  background: linear-gradient(90deg, #007bff 0%, #ff4f81 100%);
  color: #fff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #fff;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 12px auto 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* =========================================================
   CONTRIBUTORS PAGE
========================================================= */

.contributors-page {
  padding-bottom: 36px;
}

.contributors-hero {
  padding: 36px 0 20px;
}

.contributors-hero-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 32px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contributors-hero-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff4f81 0%, #007bff 100%);
}

.contributors-hero-icon {
  margin-bottom: 12px;
  font-size: 2.8rem;
  line-height: 1;
}

.contributors-hero h1 {
  margin-bottom: 14px;
}

.contributors-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #555;
  font-size: 1.08rem;
}

.contributors-group {
  padding: 30px 0;
}

.contributors-section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.contributors-section-heading h2 {
  margin-bottom: 6px;
}

.contributors-section-heading p {
  margin: 0;
  color: var(--muted-color);
}

.contributors-section-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #eef6ff;
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 50%;
  font-size: 1.8rem;
}

.translator-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.translator-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.translator-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.translator-avatar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007bff 0%, #ff4f81 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.translator-card-content {
  min-width: 0;
}

.translator-card-content strong,
.translator-card-content span {
  display: block;
}

.translator-card-content strong {
  margin-bottom: 4px;
  color: #222;
  overflow-wrap: anywhere;
}

.translator-card-content span {
  color: var(--muted-color);
  font-size: 0.92rem;
}

.contributors-community {
  background: #f3f8ff;
}

.contributors-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.contributor-page-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contributor-page-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contributor-page-icon {
  flex: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
}

.contributor-page-content {
  min-width: 0;
}

.contributor-page-content strong,
.contributor-page-content em {
  display: block;
}

.contributor-page-content strong {
  margin-bottom: 4px;
  color: var(--primary-color);
  font-size: 1.08rem;
}

.contributor-page-content em {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.94rem;
}

.contributor-page-content p {
  margin: 0;
  color: #333;
  font-size: 0.96rem;
  line-height: 1.6;
}

.contributors-final-message {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(0, 123, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contributors-final-message p {
  margin-bottom: 10px;
  color: #444;
}

.contributors-final-message strong {
  color: var(--primary-color);
  font-size: 1.12rem;
}

.contributors-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

/* =========================================================
   RESPONSIVE — POINTS DE RUPTURE
   1024 px, 768 px et 480 px
========================================================= */

/* =========================================================
   14. RESPONSIVE — TABLETTES
========================================================= */
@media (max-width: 1024px) {
  .recent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-playlists-summary-box {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .home-playlists-latest {
    border-right: none;
    border-bottom: 1px solid #e6ebf1;
  }

  .playlist-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* =========================================================
   15. RESPONSIVE — MOBILES
========================================================= */
@media (max-width: 768px) {
  .header-container {
    min-height: 76px;
  }

  .site-logo img {
    width: 58px;
    height: 58px;
  }

  .public-burger {
    display: flex;
  }

  .site-nav.public-menu {
    position: absolute;
    top: 76px;
    right: 0;
    z-index: 1001;
    width: min(280px, 85vw);
    background: var(--primary-color);
    box-shadow: -4px 6px 14px rgba(0, 0, 0, 0.22);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .site-nav.public-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
  }

  .site-nav.public-menu li a {
    width: 100%;
    padding: 12px;
  }

  .language-item,
  .language-switcher,
  .language-switcher select {
    width: 100%;
  }

  .language-switcher select {
    background: rgba(255, 255, 255, 0.16);
  }

  #public-menu-toggle:checked + .public-burger + .public-menu {
    transform: translateX(0);
  }

  .menu-overlay {
    position: fixed;
    inset: 76px 0 0;
    z-index: 1000;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-header:has(#public-menu-toggle:checked) .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .home-hero {
    padding-top: 1.2rem;
  }

  .home-hero-box {
    padding: 24px 18px;
  }

  .home-hero-heading h2 {
    font-size: 1.8rem;
  }

  .home-hero-tagline {
    font-size: 1rem;
  }

  .home-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-stat + .home-stat {
    border-left: 1px solid #e8edf3;
  }

  .home-hero-actions {
    gap: 10px;
  }

  .home-hero-actions .support-banner-btn {
    min-width: 175px;
  }

  .home-playlists-latest,
  .home-playlists-next {
    padding: 22px 18px;
  }

  .home-playlists-latest-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .latest-playlist-body {
    align-items: center;
  }

  .latest-playlist-name,
  .latest-playlist-meta,
  .latest-playlist-comment,
  .upcoming-playlist-label,
  .upcoming-playlist-name,
  .upcoming-playlist-date {
    text-align: center;
  }

  .latest-home-badges,
  .latest-playlist-links {
    justify-content: center;
  }

  .upcoming-playlist-link {
    align-self: center;
  }

  .upcoming-badge-line {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .recent-grid {
    grid-template-columns: 1fr;
  }

  .badge-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .viewlists-header {
    padding-top: 24px;
  }

  .viewlists-heading h1 {
    font-size: 1.7rem;
  }

  .viewlists-count {
    font-size: 1.05rem;
  }

  .viewlists-toolbar {
    padding: 16px;
  }

  .playlist-filter-links {
    flex-direction: column;
    gap: 8px;
  }

  .playlist-filter-links a {
    width: 100%;
    text-align: center;
  }

  .playlist-grid,
  .playlist-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .donation-custom-input-group {
    flex-direction: column;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
    gap: 10px;
  }

  .donation-currency {
    min-height: 48px;
    border: 1px solid #dbe7f5;
    border-radius: 10px;
  }

  .donation-custom-input-group input[type="number"] {
    width: 100%;
    border: 1px solid #dbe7f5;
    border-radius: 10px;
  }

  .donation-btn-custom {
    width: 100%;
    border-radius: 10px;
  }

  .contributors-hero-box {
    padding: 32px 20px;
  }

  .contributors-section-heading {
    align-items: flex-start;
  }

  .contributors-page-grid {
    grid-template-columns: 1fr;
  }
  .support-hero-box,
  .support-donation-box {
    padding: 30px 20px;
  }

  .support-story-grid {
    grid-template-columns: 1fr;
  }

  .support-story-card-wide {
    grid-column: auto;
  }

  .support-story-card {
    padding: 18px;
  }
  #special-playlists-search-form {
    flex-direction: column;
  }

  .special-search-submit {
    width: 100%;
  }

  .special-filter-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-filter-links a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   16. RESPONSIVE — PETITS MOBILES
========================================================= */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .site-title {
    font-size: 1.45rem;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-stat:nth-child(even),
  .home-stat + .home-stat {
    border-left: none;
  }

  .home-stat:nth-child(n + 2) {
    border-top: 1px solid #e8edf3;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-actions .support-banner-btn {
    width: 100%;
    min-width: 0;
  }

  .badge-grid,
  .playlist-grid,
  .playlist-grid-compact {
    grid-template-columns: 1fr;
  }

  .legend-row {
    align-items: stretch;
  }

  .legend-item {
    width: 100%;
    justify-content: center;
  }

  .latest-playlist-cover-home img {
    width: 170px;
    height: 170px;
  }

  .donation-buttons {
    flex-direction: column;
  }

  .donation-form,
  .donation-btn {
    width: 100%;
  }

  .contributors-section-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contributors-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contributors-actions a {
    width: 100%;
  }
  .support-story-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .support-story-card p {
    text-align: center;
  }

  .donation-custom-input-group {
    box-shadow: none;
  }

  .donation-btn-custom {
    min-height: 52px;
  }
  .special-filter-links {
    grid-template-columns: 1fr;
  }

  .special-playlist-card {
    padding-top: 50px;
  }

  .special-category-label {
    max-width: calc(100% - 58px);
  }
}

/* =========================================================
   17. SPECIAL PLAYLISTS
========================================================= */
.special-playlists-intro {
  padding-bottom: 4px;
}

.special-playlists-intro h1 {
  margin-bottom: 12px;
}

.special-playlists-header {
  padding-top: 18px;
}

.special-playlists-header .viewlists-toolbar {
  max-width: 1100px;
}

#special-playlists-search-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

#special-playlists-search-form .viewlists-search-field {
  flex: 1;
}

.special-search-submit {
  min-width: 110px;
}

.special-filter-links {
  gap: 9px;
  margin-top: 18px;
}

.special-filter-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  font-size: 0.88rem;
}

.special-filter-links a i {
  font-size: 0.9rem;
}

.special-filter-links a small {
  min-width: 23px;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.special-filter-links a.active small {
  background: rgba(255, 255, 255, 0.2);
}

.special-playlists-section {
  padding-top: 18px;
}

.special-playlists-grid {
  align-items: stretch;
}

.special-playlist-card {
  padding-top: 52px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.special-playlist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.special-playlist-card[hidden] {
  display: none;
}

.special-category-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 62px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}

.special-category-label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.special-category-monthly-pass {
  background: #007bff;
}

.special-category-monthly-pass-plus {
  background: #7b2cbf;
}

.special-category-carnival {
  background: #ff7b00;
}

.special-category-mystery-box {
  background: #6f42c1;
}

.special-category-offers {
  background: #e85d04;
}

.special-category-rewards {
  background: #198754;
}

.special-category-events {
  background: #d63384;
}

.special-category-unavailable {
  background: var(--danger-color);
}

.special-category-other {
  background: #6c757d;
}

.special-playlist-comment {
  min-height: 42px;
}

.special-comment-empty {
  color: #888;
  font-style: italic;
}

.special-no-badge {
  margin: 10px 4px 14px;
  padding: 16px 10px;
  font-size: 0.85rem;
}

.special-playlist-card .thisweek-cover {
  height: 150px;
}

.special-playlist-card .thisweek-cover img {
  width: 150px;
  height: 150px;
}

.special-playlist-card .thisweek-cover img.thisweek-cover-default {
  width: 110px;
  height: 110px;
}

.special-playlist-card .playlist-title {
  min-height: 50px;
}

.special-playlist-card .playlist-images {
  margin-top: auto;
}

.special-playlist-card .playlist-meta-compact {
  margin-top: 0;
  padding-top: 8px;
}

.special-load-more-wrap {
  margin-top: 28px;
}

.playlist-search-empty > i {
  display: block;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 2.5rem;
}

.playlist-search-empty p {
  margin-bottom: 18px;
}
