@charset "UTF-8";
* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #ffd700;
}
*::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #555;
}
*::-webkit-scrollbar-track {
  border-width: 0;
}
*::-webkit-scrollbar-track:hover {
  background-color: #eee;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(160deg, #e6f0ff 0%, #ffffff 35%, #fbf8e9 100%);
  color: #0f172a;
  min-width: 360px;
}
body a {
  color: inherit;
  text-decoration: none;
}
body img {
  display: block;
  width: 100%;
}
body button {
  outline: unset;
}
body .page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body .page .btn-menu {
  display: none;
}
body .page .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
body #loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 239, 239, 0.6);
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body #loading-indicator .equalizer {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}
body #loading-indicator .equalizer .bar {
  width: 8px;
  height: 20px;
  background: #4460fb;
  animation: bounce 0.5s infinite alternate;
}
body #loading-indicator .equalizer .bar:nth-child(1) {
  animation-delay: 0s;
}
body #loading-indicator .equalizer .bar:nth-child(2) {
  animation-delay: 0.1s;
}
body #loading-indicator .equalizer .bar:nth-child(3) {
  animation-delay: 0.2s;
}
body #loading-indicator .equalizer .bar:nth-child(4) {
  animation-delay: 0.3s;
}
body #loading-indicator .equalizer .bar:nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes bounce {
  0% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.3);
  }
}

.header {
  background: linear-gradient(90deg, #0057b7, #1777e5);
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999999;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.header .header-inner .btn-menu {
  display: none;
}
.header .header-inner .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .header-inner .logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.6196078431);
  flex-shrink: 0;
}
.header .header-inner .logo .logo-mark .logo-flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.15);
}
.header .header-inner .logo .logo-mark .logo-flag span:first-child {
  flex: 1;
  background: #0f6eea;
}
.header .header-inner .logo .logo-mark .logo-flag span:last-child {
  flex: 1;
  background: #ffd400;
}
.header .header-inner .logo .logo-text-main {
  font-weight: 700;
  font-size: 20px;
}
.header .header-inner .logo .logo-text-sub {
  font-size: 12px;
  opacity: 0.9;
}
.header .header-inner .search {
  flex: 1;
  width: 100%;
}
.header .header-inner .search .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.header .header-inner .search .search-form .search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #e5edff;
  font-size: 16px;
  width: 100%;
}
.header .header-inner .search .search-form .search-input::-moz-placeholder {
  color: #e5edff;
  font-size: 14px;
}
.header .header-inner .search .search-form .search-input::placeholder {
  color: #e5edff;
  font-size: 14px;
}
.header .header-inner .search .search-form .search-input:-webkit-autofill, .header .header-inner .search .search-form .search-input:-webkit-autofill:focus {
  -webkit-transition: background-color 0s 600000s, color 0s 600000s !important;
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
.header .header-inner .search .search-form .search-btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ffd700, #ffe96b);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  color: #1f2933;
}
.header .header-inner .search .search-form .search-btn i {
  display: none;
}

.top-menu-wrap {
  background: rgba(4, 18, 43, 0.16);
  backdrop-filter: blur(12px);
}
.top-menu-wrap .container {
  padding: 0 !important;
}
.top-menu-wrap .top-menu {
  overflow-x: auto;
  position: relative;
  pointer-events: auto;
}
.top-menu-wrap .top-menu::-webkit-scrollbar {
  display: none;
}
.top-menu-wrap .top-menu .top-menu-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  padding: 6px 16px 10px 16px;
  list-style: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.top-menu-wrap .top-menu .top-menu-list .top-menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  white-space: nowrap;
  color: #f9fbff;
  background: rgba(0, 0, 0, 0.05);
}
.top-menu-wrap .top-menu .top-menu-list .top-menu-item a .top-menu-icon {
  font-size: 14px;
}
.top-menu-wrap .top-menu .scroll-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  border: none;
  width: 40px;
  cursor: pointer;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  color: #072b52;
  font-size: 30px;
  background: transparent;
  pointer-events: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.top-menu-wrap .top-menu .scroll-btn:hover {
  opacity: 1;
}
.top-menu-wrap .top-menu .scroll-btn.left {
  left: 0;
  background: linear-gradient(to right, rgb(255, 221, 37), rgba(255, 255, 255, 0));
}
.top-menu-wrap .top-menu .scroll-btn.left::before {
  content: "‹";
  justify-content: flex-start;
}
.top-menu-wrap .top-menu .scroll-btn.right {
  right: 0;
  background: linear-gradient(to left, rgb(255, 221, 37), rgba(255, 255, 255, 0));
}
.top-menu-wrap .top-menu .scroll-btn.right::before {
  content: "›";
  justify-content: flex-end;
}
.top-menu-wrap .top-menu .scroll-btn::before {
  content: "";
  width: 26px;
  height: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.top-menu-wrap .top-menu .scroll-btn:hover::before {
  transform: scale(1.05);
}

.sidebar {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
  padding: 14px 14px 12px 14px;
  width: 300px;
  transition: right 0.5s ease;
}
.sidebar .sidebar-block .track-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar .sidebar-block .track-list .track-meta {
  display: none;
}
.sidebar .sidebar-block .sidebar-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 10px;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  color: #0057b7;
}
.sidebar .sidebar-block .sidebar-title-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffd700, #ffe96b);
  color: #111827;
}
.sidebar .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}
.sidebar .sidebar-tags .tag {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(0, 87, 183, 0.08), rgba(255, 215, 0, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
}
.track .track-cover {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.track .track-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.track .track-play {
  flex-shrink: 0;
}
.track .track-play .play-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(circle at 20% 20%, #ffd700, #ffe96b);
  font-weight: 700;
  font-size: 14px;
  color: #1f2933;
}
.track .track-play .play-btn .icons {
  width: 14px;
  height: 14px;
}
.track .track-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.track .track-info .track-artist {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 415px;
}
.track .track-info .track-title {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 415px;
}
@media (max-width: 950px) {
  .track .track-info .track-artist, .track .track-info .track-title {
    max-width: 300px;
  }
}
@media (max-width: 850px) {
  .track .track-info .track-artist, .track .track-info .track-title {
    max-width: 200px;
  }
}
@media (max-width: 780px) {
  .track .track-info .track-artist, .track .track-info .track-title {
    max-width: 100%;
  }
}
.track .track-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 8px;
  flex-shrink: 0;
}
.track .track-meta .track-duration {
  font-size: 12px;
  color: #64748b;
}
.track .track-meta .track-download-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #1777e5;
  background: linear-gradient(135deg, #ffffff, #e6f2ff);
  font-size: 12px;
  font-weight: 600;
  color: #0057b7;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.track .track-meta .track-download-btn .icons {
  background-color: #1d6ba9;
  width: 20px;
  height: 20px;
}
.track .progress-container {
  width: calc(100% - 55px);
  display: none;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #e0e0e0;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.track .progress-container .current-time {
  margin-right: 7px;
  color: #555555;
}
.track.active .progress-container {
  display: flex;
}
.track .progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(68, 68, 68, 0.1803921569);
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
}
.track .progress-bar .progress {
  width: 0;
  height: 100%;
  background: #388be9;
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.track .progress-bar .progress::after {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #388be9;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  position: absolute;
  right: -4px;
  top: -2px;
}

.player-container {
  position: fixed;
  bottom: -400px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  background: #0963c9;
  border-radius: 20px;
  padding: 11px 17px;
  box-sizing: border-box;
  color: white;
  font-family: sans-serif;
  gap: 14px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  transition: bottom 0.5s ease;
}
.player-container .track-title {
  width: 100%;
  max-width: 385px;
  min-width: 320px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.1215686275);
  padding: 3px 4px;
  border-radius: 7px;
  font-size: 0.6rem;
  color: #ffffff;
}
.player-container .track-title .marquee {
  display: block;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 485px) {
  .player-container .track-title {
    max-width: 305px;
    min-width: 260px;
  }
}
.player-container .icons {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.player-container.active {
  bottom: 20px;
}
@media (max-width: 475px) {
  .player-container.active {
    width: 100%;
    border-radius: 0;
    bottom: 0;
  }
}
.player-container .close-player-btn {
  position: absolute;
  top: 1px;
  right: 9px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10000;
}
.player-container .close-player-btn:hover {
  color: #ff4d4d;
}
@media (max-width: 485px) {
  .player-container .close-player-btn {
    top: 0;
    right: 5px;
  }
}
.player-container .progress-container {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 7px;
}
.player-container .progress-container .current-time, .player-container .progress-container .full-time {
  font-size: 11px;
  color: #ffffff;
}
.player-container .progress-container .progress-bar {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1411764706);
  cursor: pointer;
  outline: none;
  transition: background-image 0.2s linear;
}
.player-container .progress-container .progress-bar .progress {
  width: 0;
  height: 100%;
  background: #FFEB3B;
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.player-container .progress-container .progress-bar .progress::after {
  right: -4px;
  top: -4px;
  width: 11px;
  height: 11px;
  background: #ffffff;
}
.player-container .progress-container .progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #4caf50;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -4px;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.player-container .progress-container .progress-bar::-webkit-slider-thumb:hover {
  background: #388e3c;
}
.player-container .progress-container .progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #4caf50;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.player-container .progress-container .progress-bar::-moz-range-thumb:hover {
  background: #388e3c;
}
.player-container .player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.player-container .player-controls__btns {
  display: flex;
  width: 173px;
  justify-content: space-between;
  align-items: center;
}
.player-container .player-controls__btns .icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.player-container .player-controls__btns .play-btn__footer {
  background: #ffe242;
  color: black;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: none;
  cursor: pointer;
}
.player-container .player-controls__btns .play-btn__footer .icon-play, .player-container .player-controls__btns .play-btn__footer .icon-pause {
  background-color: #0c5fbf;
  width: 18px;
  height: 18px;
}
.player-container .player-controls__btns .icon-prev, .player-container .player-controls__btns .icon-next {
  background-color: #ffe242;
  width: 27px;
  height: 27px;
}
.player-container .player-controls__btns #next-track-btn, .player-container .player-controls__btns #prev-track-btn {
  cursor: pointer;
}

.main {
  display: flex;
  gap: 16px;
  margin: 13px auto 40px;
  max-width: 1180px;
  width: 100%;
  padding: 0 16px;
}
.main .main-inner {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}
.main .main-inner .block {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 14px 14px 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.main .main-inner .block .sort {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 6px;
}
.main .main-inner .block .sort.mb-15 {
  margin-bottom: 15px;
}
.main .main-inner .block .sort li {
  padding: 6px 8px;
  font-size: 14px;
}
.main .main-inner .block .sort li a {
  padding-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0b57ae;
}
.main .main-inner .block .sort li.active a {
  border-bottom: 2px solid #ffe44d;
  color: #1b3047;
  cursor: default;
}
.main .main-inner .block .sort li:hover a {
  border-bottom: 2px solid #ffe44d;
  color: #1b3047;
}
.main .main-inner .block.artist-home .list-grid {
  display: flex;
}
.main .main-inner .block.artist-home .list-grid .artist-name {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 13px;
  overflow: hidden;
}
.main .main-inner .block.artist-home .list-grid .artist-meta {
  display: none;
}
@media (max-width: 493px) {
  .main .main-inner .block.artist-home .list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.main .main-inner .block-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 10px;
  gap: 8px;
  flex-wrap: wrap;
}
.main .main-inner .block-title h1, .main .main-inner .block-title h2, .main .main-inner .block-title h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  color: #0057b7;
}
.main .main-inner .block-title-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffd700, #ffe96b);
  color: #111827;
}
.main .main-inner .block .block-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}
.main .main-inner .block .track-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-list .subtitle {
  color: #6b7280;
  margin-bottom: 24px;
}
.artist-list .list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0px;
}
.artist-list .grid-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.artist-list .grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.artist-list .artist-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5ecff, #f3f6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #0f6eea;
  margin-bottom: 12px;
  border: 1px solid #f3f3f3;
}
.artist-list .artist-photo img {
  border-radius: 12px;
  height: auto;
}
.artist-list .artist-name {
  font-weight: 600;
  margin-bottom: 4px;
}
.artist-list .artist-meta {
  font-size: 13px;
  color: #6b7280;
}
.artist-list .grid-card a {
  text-decoration: none;
  color: inherit;
}
.artist-list.related .list-grid {
  display: flex;
}
.artist-list.related .artist-meta {
  display: none;
}
.artist-list.related .artist-name {
  font-size: 13px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
@media (max-width: 493px) {
  .artist-list.related .list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (max-width: 600px) {
  .artist-list h1 {
    font-size: 26px;
  }
}

.artist-page #social-buttons {
  justify-content: flex-start;
  margin: 6px 0;
}
.artist-page .select-page {
  background: #fff !important;
  padding: 6px 12px !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  color: #64748b !important;
}
.artist-page .seo-artist {
  color: #737373;
}
.artist-page .artist-stats ul {
  list-style: none;
  padding: 0;
  margin: 7px 0px;
  display: flex;
  gap: 18px;
}
.artist-page .artist-stats ul li {
  display: flex;
  gap: 6px;
}
.artist-page .artist-stats ul li .icons {
  background-color: #ffffff;
  width: 13px;
  height: 13px;
}
.artist-page .artist-stats ul li span:nth-child(2) {
  color: #2f3137;
  font-size: 15px;
}
.artist-page .artist-stats ul li span:nth-child(2) b {
  font-size: 17px;
}
.artist-page .artist-stats ul li span:nth-child(1) {
  background: #2680e7;
  padding: 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #2170cb;
}
.artist-page .artist-stats ul li:not(:last-child) {
  display: flex;
  gap: 6px;
  border-right: 1px solid #d5d5d5;
  padding-right: 18px;
}
.artist-page .track-actions {
  width: -moz-max-content !important;
  width: max-content !important;
}
.artist-page .track-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(0, 87, 183, 0.14), rgba(255, 215, 0, 0.12));
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.artist-page .track-card .track-cover {
  width: 130px;
  height: 130px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.artist-page .track-card .track-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.artist-page .track-card .track-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.artist-page .track-card .track-main .track-h1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #0057b7;
  margin-top: 0px;
  margin-bottom: 5px;
}
.artist-page .track-card .track-main .track-h1 .track-artist {
  font-size: 22px;
}
@media (max-width: 525px) {
  .artist-page .track-card .track-main .track-h1 {
    align-items: center;
  }
  .artist-page .track-card .track-main .track-h1 .track-artist {
    font-size: 17px;
  }
}
.artist-page .track-card .track-main .track-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}
.artist-page .track-card .track-main .track-info div {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.artist-page .track-card .track-main .track-info div.select-page {
  background: #1f76d7;
  color: #ffffff;
}

.track-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.track-page .track-desc {
  text-align: center;
  color: #5d5d5d;
  font-size: 14px;
}
.track-page .track-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(0, 87, 183, 0.14), rgba(255, 215, 0, 0.12));
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.track-page .track-card .track-cover {
  width: 130px;
  height: 130px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.track-page .track-card .track-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.track-page .track-card .track-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.track-page .track-card .track-main .track-h1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #0057b7;
  margin-top: 0px;
}
.track-page .track-card .track-main .track-h1 .track-artist {
  font-size: 22px;
}
.track-page .track-card .track-main .track-h1 .track-title {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}
.track-page .track-card .track-main .track-h1 a {
  display: inline-block;
}
@media (max-width: 525px) {
  .track-page .track-card .track-main .track-h1 {
    align-items: center;
  }
  .track-page .track-card .track-main .track-h1 .track-artist {
    font-size: 17px;
  }
  .track-page .track-card .track-main .track-h1 .track-title {
    font-size: 13px;
  }
}
.track-page .track-card .track-main .track-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.track-page .track-card .track-main .track-actions.track {
  padding: unset;
  background: unset;
  border: unset;
}
.track-page .track-card .track-main .track-actions .btn {
  padding: 8px 16px;
  border-radius: 15px;
  border: 1px solid #0057b7;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.track-page .track-card .track-main .track-actions .btn.play-btn {
  background: radial-gradient(circle at 20% 20%, #ffd700, #fff3a0);
  border: 1px solid #efc545;
  padding: 9.5px 16px;
}
.track-page .track-card .track-main .track-actions .btn.play-btn .icons {
  background-color: black;
  width: 15px;
  height: 15px;
}
.track-page .track-card .track-main .track-actions .btn.btn-download {
  background: #fff;
  color: #0057b7;
}
.track-page .track-card .track-main .track-actions .btn.btn-download .icons {
  background-color: #0057b7;
  width: 17px;
  height: 17px;
}
.track-page .track-card .track-main .track-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}
.track-page .track-card .track-main .track-info div {
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.track-page .track-card .track-main .track-info div.select-page {
  background: #1f76d7;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #1e88e5, #ffd54f);
  color: #0d1b2a;
  box-shadow: 0 8px 18px rgba(25, 118, 210, 0.35);
}
.btn.btn-primary:hover {
  box-shadow: 0 10px 22px rgba(25, 118, 210, 0.45);
  transform: translateY(-1px);
}
.btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(25, 118, 210, 0.3);
  color: #0d47a1;
}
.btn.btn-outline:hover {
  background: rgba(25, 118, 210, 0.06);
  transform: translateY(-1px);
}

.error-mess {
  text-align: center;
}

.overlay {
  display: none;
}

.active-menu .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 9999;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 15px;
  position: relative;
}
.form-group .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  box-sizing: border-box;
  color: #212529;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 0.95rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
}
.form-group input {
  padding: 10px;
  border-radius: 13px;
  border: 1px solid #ddd;
}
.form-group .btn-send {
  background: #1575e2;
  border: unset;
  border-radius: 19px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  outline: unset;
  padding: 10px 20px;
  transition: all 0.3s ease;
  width: -moz-max-content;
  width: max-content;
}
.form-group .alert-danger {
  color: #F44336;
  font-size: 13px;
  padding-top: 5px;
  position: absolute;
  bottom: 4px;
  right: 8px;
}
.form-group label {
  color: #656565;
  display: inline-block;
  font-size: 15px;
}

.lang-switch {
  position: relative;
  display: inline-block;
  font-size: 14px;
}
.lang-switch .lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f7fb;
  border: 1px solid #ddd;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50px;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  min-width: 130px;
}
.lang-switch .lang-switch__btn img {
  max-width: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
}
.lang-switch .lang-switch__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 80px;
  z-index: 100;
  border-radius: 16px;
  width: 100%;
  padding: 4px 0px;
}
.lang-switch .lang-switch__menu .lang-switch__item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  text-decoration: none;
  color: #000;
}
.lang-switch .lang-switch__menu .lang-switch__item img {
  max-width: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
}
.lang-switch .lang-switch__menu .lang-switch__item:hover {
  background: #f5f5f5;
  border-radius: 50px;
}
.lang-switch:hover .lang-switch__menu {
  display: block;
}

.icons {
  display: inline-block;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
  background-color: black;
  width: 24px;
  height: 24px;
}
.icons.icon-facebook {
  -webkit-mask: url("/images/icons/facebook.svg") no-repeat center;
          mask: url("/images/icons/facebook.svg") no-repeat center;
}
.icons.icon-facebook-f {
  -webkit-mask: url("/images/icons/facebook-f.svg") no-repeat center;
          mask: url("/images/icons/facebook-f.svg") no-repeat center;
}
.icons.icon-telegram {
  -webkit-mask: url("/images/icons/telegram.svg") no-repeat center;
          mask: url("/images/icons/telegram.svg") no-repeat center;
}
.icons.icon-viber {
  -webkit-mask: url("/images/icons/viber.svg") no-repeat center;
          mask: url("/images/icons/viber.svg") no-repeat center;
}
.icons.icon-whatsapp {
  -webkit-mask: url("/images/icons/whatsapp.svg") no-repeat center;
          mask: url("/images/icons/whatsapp.svg") no-repeat center;
}
.icons.icon-twitter-x {
  -webkit-mask: url("/images/icons/twitter-x.svg") no-repeat center;
          mask: url("/images/icons/twitter-x.svg") no-repeat center;
}
.icons.icon-share {
  -webkit-mask: url("/images/icons/share.svg") no-repeat center;
          mask: url("/images/icons/share.svg") no-repeat center;
}
.icons.icon-search {
  -webkit-mask: url("/images/icons/search.svg") no-repeat center;
          mask: url("/images/icons/search.svg") no-repeat center;
}
.icons.icon-play {
  -webkit-mask: url("/images/icons/play.svg") no-repeat center;
          mask: url("/images/icons/play.svg") no-repeat center;
}
.icons.icon-pause {
  -webkit-mask: url("/images/icons/pause.svg") no-repeat center;
          mask: url("/images/icons/pause.svg") no-repeat center;
}
.icons.icon-download {
  -webkit-mask: url("/images/icons/download.svg") no-repeat center;
          mask: url("/images/icons/download.svg") no-repeat center;
}
.icons.icon-heart {
  -webkit-mask: url("/images/icons/heart.svg") no-repeat center;
          mask: url("/images/icons/heart.svg") no-repeat center;
}
.icons.icon-prev {
  -webkit-mask: url("/images/icons/prev.svg") no-repeat center;
          mask: url("/images/icons/prev.svg") no-repeat center;
}
.icons.icon-next {
  -webkit-mask: url("/images/icons/next.svg") no-repeat center;
          mask: url("/images/icons/next.svg") no-repeat center;
}
.icons.icon-signin {
  -webkit-mask: url("/images/icons/user.svg") no-repeat center;
          mask: url("/images/icons/user.svg") no-repeat center;
}
.icons.icon-plus {
  -webkit-mask: url("/images/icons/plus.svg") no-repeat center;
          mask: url("/images/icons/plus.svg") no-repeat center;
}
.icons.icon-download-music {
  -webkit-mask: url("/images/icons/download-music.svg") no-repeat center;
          mask: url("/images/icons/download-music.svg") no-repeat center;
}
.icons.icon-arrow-down {
  -webkit-mask: url("/images/icons/arrow-down.svg") no-repeat center;
          mask: url("/images/icons/arrow-down.svg") no-repeat center;
}
.icons.icon-arrow-right {
  -webkit-mask: url("/images/icons/arrow-right.svg") no-repeat center;
          mask: url("/images/icons/arrow-right.svg") no-repeat center;
}
.icons.icon-arrow-left {
  -webkit-mask: url("/images/icons/arrow-right.svg") no-repeat center;
          mask: url("/images/icons/arrow-right.svg") no-repeat center;
  transform: rotate(180deg);
}
.icons.icon-update {
  -webkit-mask: url("/images/icons/update.svg") no-repeat center;
          mask: url("/images/icons/update.svg") no-repeat center;
}
.icons.icon-delete {
  -webkit-mask: url("/images/icons/delete.svg") no-repeat center;
          mask: url("/images/icons/delete.svg") no-repeat center;
}
.icons.icon-close {
  -webkit-mask: url("/images/icons/close.svg") no-repeat center;
          mask: url("/images/icons/close.svg") no-repeat center;
}
.icons.icon-music {
  -webkit-mask: url("/images/icons/music.svg") no-repeat center;
          mask: url("/images/icons/music.svg") no-repeat center;
}
.icons.icon-size {
  -webkit-mask: url("/images/icons/size.svg") no-repeat center;
          mask: url("/images/icons/size.svg") no-repeat center;
}
.icons.icon-pencil {
  -webkit-mask: url("/images/icons/pencil.svg") no-repeat center;
          mask: url("/images/icons/pencil.svg") no-repeat center;
}
.icons.icon-calendar {
  -webkit-mask: url("/images/icons/calendar.svg") no-repeat center;
          mask: url("/images/icons/calendar.svg") no-repeat center;
}
.icons.icon-approved {
  -webkit-mask: url("/images/icons/approved.svg") no-repeat center;
          mask: url("/images/icons/approved.svg") no-repeat center;
}
.icons.icon-notifications {
  -webkit-mask: url("/images/icons/notifications.svg") no-repeat center;
          mask: url("/images/icons/notifications.svg") no-repeat center;
}
.icons.icon-home {
  -webkit-mask: url("/images/icons/home.svg") no-repeat center;
          mask: url("/images/icons/home.svg") no-repeat center;
}
.icons.icon-forward-arrow {
  -webkit-mask: url("/images/icons/forward-arrow.svg") no-repeat center;
          mask: url("/images/icons/forward-arrow.svg") no-repeat center;
}
.icons.icon-dots {
  -webkit-mask: url("/images/icons/dots.svg") no-repeat center;
          mask: url("/images/icons/dots.svg") no-repeat center;
}
.icons.icon-like {
  -webkit-mask: url("/images/icons/like.svg") no-repeat center;
          mask: url("/images/icons/like.svg") no-repeat center;
}
.icons.icon-dislike {
  -webkit-mask: url("/images/icons/dislike.svg") no-repeat center;
          mask: url("/images/icons/dislike.svg") no-repeat center;
}
.icons.icon-eye {
  -webkit-mask: url("/images/icons/eye.svg") no-repeat center;
          mask: url("/images/icons/eye.svg") no-repeat center;
}

@media (max-width: 860px) {
  .track-page .track-card, .artist-page .track-card {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 780px) {
  .header .header-inner .btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    min-width: 25px;
    padding: 0;
    width: 25px;
  }
  .header .header-inner .btn-menu span {
    background: linear-gradient(120deg, #ffd700, #ffe96b);
    border-radius: 3px;
    display: block;
    height: 3px;
    transition: all 0.3s ease;
    width: 100%;
  }
  .header .header-inner .btn-menu.active span:first-child {
    transform: rotate(45deg) translate(7px, 6px);
  }
  .header .header-inner .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header-inner .btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .footer .footer-grid {
    flex-direction: column !important;
    padding: 15px 0 !important;
  }
  .footer .footer-grid .footer-col {
    flex: 1 !important;
    text-align: center;
  }
  .footer .footer-grid .footer-col .footer-title {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  .footer .footer-grid .footer-col .footer-links {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .footer .footer-grid .footer-col .footer-links li:not(:first-child):before {
    content: counter(item, disc) " ";
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    -moz-text-align-last: start !important;
    text-align-last: start !important;
    margin-right: 7px;
    margin-left: 7px;
    color: #ffffff;
  }
  .sidebar {
    position: fixed;
    right: -310px;
    z-index: 99998;
  }
  body.active-menu {
    overflow: hidden;
  }
  body.active-menu .sidebar {
    right: 0;
    top: 120px;
    height: 100dvh;
    overflow-y: auto;
    border-radius: 0;
  }
  body.active-menu .btn-menu {
    right: 277px;
    z-index: 99999;
    transition: right 0.5s ease;
  }
}
@media (max-width: 680px) {
  .track-page .track-card, .artist-page .track-card {
    flex-direction: column;
    align-items: center;
  }
  .track-page .track-card .track-main, .artist-page .track-card .track-main {
    align-items: center;
  }
  .track-page .track-card .track-main .track-info, .artist-page .track-card .track-main .track-info {
    justify-content: center;
    order: 1;
  }
  .track-page .track-card .track-main .track-actions, .artist-page .track-card .track-main .track-actions {
    order: 2;
  }
  .main {
    padding: 0 5px;
  }
}
@media (max-width: 550px) {
  body .page .container {
    padding: 0 8px;
  }
  body .page .container.footer-bottom {
    justify-content: center !important;
  }
  body .page .container .top-menu-item a {
    padding: 5px 10px !important;
  }
}
@media (max-width: 515px) {
  .header .header-inner .logo .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 30px;
  }
  .header .header-inner .logo .logo-text-main {
    font-size: 17px;
  }
  .header .header-inner .logo .logo-text-sub {
    font-size: 9px;
    opacity: 0.9;
  }
  .header .header-inner .search-form {
    padding: 4px 8px 4px 12px !important;
  }
  .header .header-inner .search-form .search-btn {
    padding: 6px !important;
  }
  .header .header-inner .search-form .search-btn i {
    display: block !important;
    width: 15px;
    height: 15px;
  }
  .header .header-inner .search-form .search-btn span {
    display: none;
  }
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  flex-wrap: wrap;
  padding-top: 7px;
}
.pagination-wrapper .pagination a, .pagination-wrapper .pagination span.dots {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 1px solid;
  border-color: rgb(195, 195, 195);
  background: #ffffff;
  color: #000000;
}
.pagination-wrapper .pagination span.active {
  background: linear-gradient(180deg, #04122b, #020617);
  color: #fff;
  cursor: default;
}
@media (min-width: 860px) {
  .pagination-wrapper .pagination a:hover {
    background: linear-gradient(180deg, #04122b, #020617);
    color: #fff;
  }
}
.pagination-wrapper .pagination a.active {
  background: linear-gradient(180deg, #04122b, #020617);
  color: #fff;
  pointer-events: none;
}
.pagination-wrapper .pagination .dots {
  pointer-events: none;
  background: transparent;
  box-shadow: none;
}
.pagination-wrapper .pagination .disabled {
  pointer-events: none;
}
.pagination-wrapper .prev, .pagination-wrapper .next {
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6));
  border-color: rgba(255, 255, 255, 0.45);
  color: #0f1226;
  transition: all 0.3s ease;
  font-size: 14px;
}
.pagination-wrapper .prev .icons, .pagination-wrapper .next .icons {
  display: flex;
  align-items: center;
  width: 15px;
  height: 16px;
  background-color: #5d5d5d;
}
@media (max-width: 550px) {
  .pagination-wrapper .prev, .pagination-wrapper .next {
    display: none;
  }
}
@media (min-width: 860px) {
  .pagination-wrapper .prev:hover, .pagination-wrapper .next:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
  }
  .pagination-wrapper .prev:hover .icons, .pagination-wrapper .next:hover .icons {
    background-color: white;
  }
}
.pagination-wrapper .prev.disabled, .pagination-wrapper .next.disabled {
  pointer-events: none;
  background: #f3f3f3;
}
@media (max-width: 860px) {
  .pagination-wrapper {
    justify-content: center;
  }
}

.footer {
  background: linear-gradient(180deg, #04122b, #020617);
  color: #e5edff;
  margin-top: auto;
  padding: 0 10px;
}
.footer .container.footer-top {
  padding: 20px 0 10px 0;
}
.footer .container.footer-top .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 0px 15px;
}
.footer .container.footer-top .footer-grid .footer-col {
  flex: 1 1 210px;
  min-width: 0;
}
.footer .container.footer-top .footer-grid .footer-col .footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer .container.footer-top .footer-grid .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
}
.footer .container.footer-top .footer-grid .footer-col .footer-links a {
  color: #c0cbe5;
}
.footer .container.footer-top .footer-grid .footer-col .footer-text {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.5;
}
.footer .container.footer-top .footer-grid .footer-col .footer-btn {
  border-radius: 15px;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700, #ffe96b);
  color: #111827;
  white-space: nowrap;
}
.footer .container.footer-top .footer-grid .footer-col .lang-switch {
  margin-bottom: 10px;
}
.footer .container.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 8px 0 10px 0;
  font-size: 12px;
  color: #a5b4fc;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.footer .container.footer-bottom a {
  color: #e5edff;
}

#social-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
}
.social-button .icons {
  width: 17px;
  height: 17px;
}

.social-button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.telegram {
  background: #0088cc;
}
.telegram .icons {
  background: #fff;
}

.viber {
  background: #665CAC;
}
.viber .icons {
  background: #fff;
}

.facebook {
  background: #3b5998;
}
.facebook .icons {
  background: #fff;
}

.whatsapp {
  background: #25D366;
}
.whatsapp .icons {
  background: #fff;
}

.twitter {
  background: #000;
}
.twitter .icons {
  background: #fff;
}

.mobile {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
}
.mobile .icons {
  background-color: #607D8B;
}

#toast-container {
  position: fixed;
  top: 132px;
  right: 7px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 14px 12px 12px;
  border-radius: 10px;
  color: #111;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border-left: 4px solid #4b5563;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
}

.toast--success {
  border-color: #16a34a;
}

.toast--error {
  border-color: #dc2626;
}

.toast--warning {
  border-color: #d97706;
}

.toast--info {
  border-color: #2563eb;
}

.toast__title {
  font-weight: 600;
  margin-bottom: 2px;
}

.toast__msg {
  opacity: 0.9;
}

.toast__close {
  position: absolute;
  inset: 8px 8px auto auto;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}
.toast__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #374151;
}

.toast__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.toast__progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: currentColor;
  opacity: 0.4;
}

.toast--success .toast__progress-bar {
  color: #16a34a;
}

.toast--error .toast__progress-bar {
  color: #dc2626;
}

.toast--warning .toast__progress-bar {
  color: #d97706;
}

.toast--info .toast__progress-bar {
  color: #2563eb;
}

.breadcrumbs {
  color: rgb(131, 131, 131);
  font-size: 11px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs ul {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-wrap: nowrap;
  display: flex;
  gap: 3px;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0px 7px;
  margin: 0;
}
.breadcrumbs ul .icon-forward-arrow {
  background-color: #1676e4;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: rgb(103, 103, 103);
}
.breadcrumbs li span {
  color: #4d4d4d;
}
.breadcrumbs a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumbs a .icon-home {
  background-color: #1676e4;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.reaction-box {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff7e6;
  border: 1px solid #efe9ad;
  padding: 4px 5px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.reaction-title {
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 920px) {
  .reaction-title {
    display: none;
  }
}
@media (max-width: 765px) {
  .reaction-title {
    display: inline-flex;
  }
}

.reaction-btn {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.reaction-btn:hover {
  transform: scale(1.1);
}

.reaction-btn.like {
  color: #4CAF50;
}
.reaction-btn.like .icons {
  background-color: #4CAF50;
}

.reaction-btn.dislike {
  color: #E53935;
}
.reaction-btn.dislike .icons {
  background-color: #E53935;
}

.reaction-btn.active {
  transform: scale(1.2);
  opacity: 1;
}

.reaction-btn.active.like {
  color: #2e7d32;
}

.reaction-btn.active.dislike {
  color: #c62828;
}

.genres {
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}

.genres-container {
  margin: 0 auto;
  text-align: center;
}

.genres-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.genres-subtitle {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 40px;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.genre-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.25s ease;
  background: linear-gradient(90deg, rgba(0, 87, 183, 0.08), rgba(255, 215, 0, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.genre-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.genre-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.genre-count {
  font-size: 14px;
  color: #64748b;
}
