* {
  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: #f5f5f0;
  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(0, 0, 0, 0.04);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
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(135deg, #0B1120 0%, #162040 100%);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 99999;
  border-bottom: 1px solid rgba(221, 221, 221, 0.0784313725);
  position: sticky;
  top: 0;
}

.header-actions, .search-bar-mobile {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #F5C842;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.logo-bars span {
  display: block;
  width: 3px;
  background: #0B1120;
  border-radius: 2px;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.logo-text small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: #5a6e94;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-bar {
  flex: 1;
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.2s;
}

.search-bar:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 200, 66, 0.5);
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
}

.search-bar input::-moz-placeholder {
  color: #5a6e94;
}

.search-bar input::placeholder {
  color: #5a6e94;
}

.search-btn {
  background: #F5C842;
  border: none;
  padding: 0 1.2rem;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #0B1120;
  border-radius: 0 40px 40px 0;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  font-family: inherit;
  text-transform: uppercase;
}

.search-btn:hover {
  background: #ffd84d;
}

.nav-wrapper {
  background: #0d1628;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-dropdown {
  color: #fff;
  font-size: 14px;
  position: relative;
}
.lang-dropdown .icon-globe {
  width: 19px;
  height: 19px;
  color: #8ba2cb;
  transition: 0.2s;
}
.lang-dropdown .lang-current:hover .icon-globe {
  stroke: #fff;
}
.lang-dropdown .lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #1e263a;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lang-dropdown .lang-current span {
  color: #8ba2cb;
  font-weight: 500;
}
.lang-dropdown .lang-current.active {
  border: 1px solid rgb(245, 200, 66);
}
.lang-dropdown .lang-current.active span {
  color: rgb(245, 200, 66);
}
.lang-dropdown .lang-current.active .arrow {
  border-right: 2px solid rgb(245, 200, 66);
  border-bottom: 2px solid rgb(245, 200, 66);
}
.lang-dropdown .lang-current.active .icon-globe {
  color: rgb(245, 200, 66);
}
.lang-dropdown .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #8ba2cb;
  border-bottom: 2px solid #8ba2cb;
  transform: rotate(45deg);
  margin-left: 5px;
}
.lang-dropdown .lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #1a2337;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 150px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(111, 111, 111, 0.1294117647);
}
.lang-dropdown .lang-item {
  padding: 10px 15px;
  cursor: pointer;
  color: #9ca3af;
  transition: 0.2s;
  display: block;
}
.lang-dropdown .lang-item:not(:last-child) {
  border-bottom: 1px solid rgba(111, 111, 111, 0.1294117647);
}
.lang-dropdown .lang-item:hover {
  background: #1f2937;
  color: #fff;
}
.lang-dropdown .lang-item.active {
  color: #facc15;
}

.sidebar {
  background: #fff;
  border: 1px solid rgb(225, 225, 225);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 16px;
  width: 300px;
  transition: right 0.5s ease;
}
.sidebar .sidebar-block {
  padding: 14px;
}
.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: #314691;
}
.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);
}
.sidebar .nav-menu {
  padding: 0 0.5rem;
}
.sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  font-size: 15px;
  font-weight: 600;
  color: #566687;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.sidebar .nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sidebar .nav-item:hover {
  border-bottom-color: rgba(245, 200, 66, 0.35);
}
.sidebar .nav-item.active {
  color: #cfa116;
  border-bottom-color: #F5C842;
}
.sidebar .nav-badge {
  background: #F5C842;
  color: #0B1120;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sidebar .nav-badge.new {
  background: #3ecf8e;
  color: #012918;
}
.sidebar .nav-badge.hot {
  background: #ff5e5e;
  color: #fff;
}
.sidebar .nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  height: 48px;
  font-size: 13px;
  font-weight: 600;
  color: #7a8db3;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
  margin-left: auto;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s;
}
.sidebar .nav-more-btn:hover {
  color: #fff;
}
.sidebar .nav-more-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sidebar .nav-item .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.sidebar .nav-item .icon.icon-home {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9.5L12 3l9 6.5V20a1 1 0 01-1 1H4a1 1 0 01-1-1V9.5z'/%3E%3Cpath d='M9 21V12h6v9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9.5L12 3l9 6.5V20a1 1 0 01-1 1H4a1 1 0 01-1-1V9.5z'/%3E%3Cpath d='M9 21V12h6v9'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-fresh-tracks {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7-7 7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7-7 7 7'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-trending-songs {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-daily-top {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-club-music {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-ukrainian-music {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-drive-music {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17H3a2 2 0 01-2-2V5a2 2 0 012-2h11a2 2 0 012 2v3'/%3E%3Crect x='9' y='11' width='14' height='10' rx='2'/%3E%3Ccircle cx='16' cy='16' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17H3a2 2 0 01-2-2V5a2 2 0 012-2h11a2 2 0 012 2v3'/%3E%3Crect x='9' y='11' width='14' height='10' rx='2'/%3E%3Ccircle cx='16' cy='16' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-viral-songs {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2L15 22l-4-9-9-4 20-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2L15 22l-4-9-9-4 20-7z'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-night-music {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 010 8h-1'/%3E%3Cpath d='M2 8h16v9a4 4 0 01-4 4H6a4 4 0 01-4-4V8z'/%3E%3Cline x1='6' y1='1' x2='6' y2='4'/%3E%3Cline x1='10' y1='1' x2='10' y2='4'/%3E%3Cline x1='14' y1='1' x2='14' y2='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 010 8h-1'/%3E%3Cpath d='M2 8h16v9a4 4 0 01-4 4H6a4 4 0 01-4-4V8z'/%3E%3Cline x1='6' y1='1' x2='6' y2='4'/%3E%3Cline x1='10' y1='1' x2='10' y2='4'/%3E%3Cline x1='14' y1='1' x2='14' y2='4'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-2000s-hits {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-christmas-new-year-music {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='22'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='4.93' y1='4.93' x2='19.07' y2='19.07'/%3E%3Cline x1='19.07' y1='4.93' x2='4.93' y2='19.07'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='22'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='4.93' y1='4.93' x2='19.07' y2='19.07'/%3E%3Cline x1='19.07' y1='4.93' x2='4.93' y2='19.07'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-artists {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-genres {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16M4 10h12M4 14h8M4 18h5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16M4 10h12M4 14h8M4 18h5'/%3E%3C/svg%3E");
}
.sidebar .nav-item .icon.icon-categories {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1' /%3E%3Crect x='14' y='4' width='6' height='6' rx='1' /%3E%3Crect x='4' y='14' width='6' height='6' rx='1' /%3E%3Crect x='14' y='14' width='6' height='6' rx='1' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='6' height='6' rx='1' /%3E%3Crect x='14' y='4' width='6' height='6' rx='1' /%3E%3Crect x='4' y='14' width='6' height='6' rx='1' /%3E%3Crect x='14' y='14' width='6' height='6' rx='1' /%3E%3C/svg%3E");
}

.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: 1400px;
  width: 100%;
  padding: 0 16px;
}
.main .main-inner {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: calc(100% - 300px);
}
.main .main-inner .block {
  background: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 14px 14px 12px 14px;
  border: 1px solid rgb(225, 225, 225);
}
.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, .main .main-inner .block-title span {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  color: #314691;
}
.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-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
  margin-top: -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;
  margin-bottom: 5px;
}
.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;
  margin-bottom: 5px;
}
.track-page .track-card .track-main .track-info div {
  background: #fff;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 12px;
}
.track-page .track-card .track-main .track-info div.select-page {
  background: #1f76d7;
  color: #ffffff;
}
.track-page .track-statistic {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid #ddd;
  margin-top: 5px;
  padding-top: 2px;
}
.track-page .track-statistic .track-str {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}
.track-page .track-statistic .track-str div.select-page a {
  color: #3F51B5;
  font-size: 14px;
  font-weight: 500;
}

.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;
}
.icons.icon-bitrate {
  -webkit-mask: url("/images/icons/bitrate.svg") no-repeat center;
          mask: url("/images/icons/bitrate.svg") no-repeat center;
}
.icons.icon-clock {
  -webkit-mask: url("/images/icons/clock.svg") no-repeat center;
          mask: url("/images/icons/clock.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) {
  .main .main-inner {
    width: 100%;
  }
  .nav-wrapper {
    padding: 0;
    border-bottom: unset;
  }
  .header {
    padding: 0.7rem 0.7rem;
    justify-content: space-between;
    border-bottom: 0.5px solid #1e2f4a;
  }
  .header .logo .logo-icon {
    width: 32px;
    height: 32px;
  }
  .header .logo .logo-icon .logo-bars {
    gap: 2px;
  }
  .header .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
  }
  .header .header-actions .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid #1e2f4a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .header .header-actions .icon-btn.active svg {
    stroke: #F5C842;
  }
  .header .header-actions .icon-btn svg {
    width: 17px;
    height: 17px;
    stroke: #a0b0cc;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .header .search-bar {
    display: none;
  }
  .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;
  }
  body .nav-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: unset;
  }
  body .nav-scroll .nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    height: 40px;
    font-size: 12px;
    font-weight: 600;
    color: #5a6e94;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s;
  }
  body .nav-scroll .nav-item.active {
    color: #F5C842;
    border-bottom-color: #F5C842;
  }
  body .nav-scroll .nav-item.active svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  body .search-bar-mobile {
    display: flex;
    align-items: center;
    background: #131f35;
    border-bottom: 0.5px solid #1e2f4a;
    padding: 10px 16px;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    padding-top: 0;
    padding-bottom: 0;
    position: sticky;
    top: 58px;
    z-index: 9999;
  }
  body .search-bar-mobile form {
    display: flex;
    width: 100%;
  }
  body .search-bar-mobile svg {
    width: 16px;
    height: 16px;
    stroke: #5a6e94;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  body .search-bar-mobile input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    color: #e8edf5;
    font-family: inherit;
  }
  body .search-bar-mobile input::-moz-placeholder {
    color: #3a4f6e;
  }
  body .search-bar-mobile input::placeholder {
    color: #3a4f6e;
  }
  body .search-bar-mobile .search-clear {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1e2f4a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  body .search-bar-mobile .search-clear svg {
    width: 10px;
    height: 10px;
    stroke: #7a8db3;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  }
  body .search-bar-mobile.open {
    max-height: 60px;
    padding: 10px 16px;
  }
}
@media (max-width: 680px) {
  .track-page .track-card, .artist-page .track-card {
    flex-direction: column;
    align-items: center;
    border-radius: 0 !important;
  }
  .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;
  }
  .main .main-inner .block {
    border-radius: 0;
  }
}
@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 img {
    width: 38px;
    height: 38px;
  }
  .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;
}

.swiper {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  margin-top: 7px;
  overflow: hidden;
}
.swiper .swiper-wrapper {
  height: auto;
  padding-bottom: 5px;
  padding-top: 10px;
  display: flex;
}
.swiper .swiper-slide {
  width: 145.5px !important;
  flex: 0 0 145.5px !important;
  margin-right: 10px;
  height: auto;
}

@media screen and (max-width: 980px) {
  .swiper .swiper-container {
    padding-right: 15px;
  }
  .swiper .swiper-slide {
    width: 120.5px !important;
    flex: 0 0 120.5px !important;
  }
}
.albumSlide {
  width: 100%;
  position: relative;
  text-decoration: none;
  display: block;
}
.albumSlide:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border-radius: 10px;
  background: #4a76a8;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.albumSlide__bg {
  position: relative;
  width: 100%;
  pointer-events: none;
}

.albumSlide:hover .albumSlide__image, .item-link:hover .item-image {
  box-shadow: 0px 2px 0px #314f71, 0px -2px 0px #314f71, 2px 0px 0px #314f71, -2px 0px 0px #314f71;
}

.albumSlide__bg:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.albumSlide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 11px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.24);
}

.albumSlide__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.albumSlide__text {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  font: 500 14px/17px Roboto, sans-serif;
  opacity: 1;
  color: var(--text-color);
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slider {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 5px;
}
.slider .swiper-wrap {
  height: auto;
  padding-bottom: 5px;
  padding-top: 10px;
}
.slider .swiper-slide {
  width: 175px;
  margin-left: 13px;
  margin-right: 13px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .slider {
    margin-bottom: 8px;
  }
  .slider .swiper-main {
    padding-right: 15px;
  }
  .slider .swiper-slide {
    width: 120px;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}

.album-slide {
  width: 100%;
  position: relative;
  text-decoration: none;
  display: block;
}
.album-slide .album-slide__bg {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.album-slide .album-slide__bg:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.album-slide:hover .album-slide__image, .album-slide .item-link:hover .item-image {
  transform: scale(1.03);
  transition: all 0.2s;
}
.album-slide .album-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 19px;
}
.album-slide .album-slide__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.album-slide .album-slide__text {
  width: 100%;
  color: #494949;
  text-align: center;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 7px;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-weight: 600;
}

.swiper-main, .swiper-collection {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-main-no-flexbox .swiper-slide {
  float: left;
}

.swiper-main-vertical > .swiper-wrap {
  flex-direction: column;
}

.swiper-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-main-android .swiper-slide, .swiper-wrap {
  transform: translate3d(0, 0, 0);
}

.swiper-main-multirow > .swiper-wrap {
  flex-wrap: wrap;
}

.swiper-main-free-mode > .swiper-wrap {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-main-autoheight, .swiper-main-autoheight .swiper-slide {
  height: auto;
}

.swiper-main-autoheight .swiper-wrap {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-main-3d {
  perspective: 1275px;
}

.swiper-main-3d .swiper-cube-shadow, .swiper-main-3d .swiper-slide, .swiper-main-3d .swiper-slide-shadow-bottom, .swiper-main-3d .swiper-slide-shadow-left, .swiper-main-3d .swiper-slide-shadow-right, .swiper-main-3d .swiper-slide-shadow-top, .swiper-main-3d .swiper-wrap {
  transform-style: preserve-3d;
}

.swiper-main-3d .swiper-slide-shadow-bottom, .swiper-main-3d .swiper-slide-shadow-left, .swiper-main-3d .swiper-slide-shadow-right, .swiper-main-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-main-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-wp8-horizontal, .swiper-main-wp8-horizontal > .swiper-wrap {
  touch-action: pan-y;
}

.swiper-main-wp8-vertical, .swiper-main-wp8-vertical > .swiper-wrap {
  touch-action: pan-x;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-main-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-main-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-main-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-main-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-main-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-main-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-main-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-main-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-main-horizontal.swiper-main-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-main-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-main-horizontal > .swiper-pagination-progressbar, .swiper-main-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-main-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-main-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 5px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-main-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-main-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-main .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-main-fade.swiper-main-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-main-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-main-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-fade .swiper-slide-active, .swiper-main-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-cube {
  overflow: visible;
}

.swiper-main-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-main-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-cube.swiper-main-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-main-cube .swiper-slide-active, .swiper-main-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-cube .swiper-slide-active, .swiper-main-cube .swiper-slide-next, .swiper-main-cube .swiper-slide-next + .swiper-slide, .swiper-main-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-main-cube .swiper-slide-shadow-bottom, .swiper-main-cube .swiper-slide-shadow-left, .swiper-main-cube .swiper-slide-shadow-right, .swiper-main-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-main-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-main-flip {
  overflow: visible;
}

.swiper-main-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-main-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-flip .swiper-slide-active, .swiper-main-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-flip .swiper-slide-shadow-bottom, .swiper-main-flip .swiper-slide-shadow-left, .swiper-main-flip .swiper-slide-shadow-right, .swiper-main-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-main-coverflow .swiper-wrap {
  -ms-perspective: 1275px;
}

.mus-playlist__img .play-button___playlist, .album-slide__bg .play-button___playlist, .ZcBq65 .play-button___playlist {
  opacity: 0;
  backface-visibility: hidden;
}

.mus-playlist__img:hover .play-button___playlist, .album-slide:hover .play-button___playlist, .ZcBq65:hover .play-button___playlist {
  transition: opacity 0.25s linear 0s;
  opacity: 1;
}

.mus-playlist__img .play-button___playlist, .album-slide__bg .play-button___playlist, .ZcBq65 .play-button___playlist {
  opacity: 0;
  backface-visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
@media (max-width: 650px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }
}

.swiper-button-next,
.swiper-button-prev {
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: -7px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold;
  color: #333;
}

.swiper-button-prev {
  left: 5px !important;
}

.swiper-button-next {
  right: 5px !important;
}

/* hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #0862c7;
  transform: translateY(-50%) scale(1.08);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff;
}

/* disabled */
.swiper-button-disabled {
  opacity: 0.25;
}
