@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #4a7dff;
}
*::-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 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #222222;
  line-height: 1.5;
  min-width: 360px;
}
body a {
  text-decoration: none;
  color: inherit;
}
body img {
  max-width: 100%;
  display: block;
}
body button, body a {
  outline: unset;
}
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 {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #dde2f0;
}
.header .header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.header .header-inner .lang-switch {
  position: relative;
  display: inline-block;
  font-size: 14px;
}
.header .header-inner .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;
}
.header .header-inner .lang-switch .lang-switch__btn img {
  max-width: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
}
.header .header-inner .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;
}
.header .header-inner .lang-switch .lang-switch__menu .lang-switch__item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  text-decoration: none;
  color: #000;
}
.header .header-inner .lang-switch .lang-switch__menu .lang-switch__item img {
  max-width: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
}
.header .header-inner .lang-switch .lang-switch__menu .lang-switch__item:hover {
  background: #f5f5f5;
  border-radius: 50px;
}
.header .header-inner .lang-switch:hover .lang-switch__menu {
  display: block;
}
.header .header-inner .burger {
  display: none;
}
.header .header-inner .logo {
  display: flex;
  align-items: center;
  width: 175px;
  gap: 8px;
}
.header .header-inner .logo .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd86a, #ff8a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}
.header .header-inner .search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fb;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #dde2f0;
  max-width: 600px;
}
.header .header-inner .search input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 16px;
}
.header .header-inner .search input::-moz-placeholder {
  font-size: 14px;
}
.header .header-inner .search input::placeholder {
  font-size: 14px;
}
.header .header-inner .search input:-webkit-autofill, .header .header-inner .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 button {
  border: none;
  background: #205bf3;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.header .header-inner .search button:hover {
  background: #375fcc;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #dde2f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar .sidebar-block .sidebar-title {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}
.sidebar .sidebar-block .sidebar-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  color: #6d6d6d;
  border: 1px solid transparent;
}
.sidebar .sidebar-block .sidebar-nav a:hover, .sidebar .sidebar-block .sidebar-nav a.active {
  background: #e3edff;
  border-color: #4a7dff;
  color: #375fcc;
}
.sidebar .sidebar-block .sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sidebar .sidebar-block .sidebar-tags a {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  color: #505255;
}
.sidebar .sidebar-block .sidebar-tags a:hover, .sidebar .sidebar-block .sidebar-tags a.active {
  border-color: #4a7dff;
  color: #375fcc;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.track-list .track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  position: relative;
}
.track-list .track:hover {
  background: #eef3ff;
  border-color: #e3edff;
}
.track-list .track .track-play {
  width: 43px;
  height: 43px;
  border-radius: 999px;
  border: none;
  background: #4a7dff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  cursor: pointer;
}
.track-list .track .track-play .icons {
  width: 13px;
  height: 13px;
  background: #ffffff;
}
.track-list .track .track-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.track-list .track .track-info .track-title {
  font-size: 13px;
  color: #616673;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}
.track-list .track .track-info .track-artist {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}
.track-list .track .track-info .track-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #737b8c;
}
.track-list .track .track-info .track-meta span {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  color: #6b717f;
}
.track-list .track .track-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.track-list .track .track-actions .track-duration {
  font-size: 13px;
  color: #6b717f;
}
.track-list .track .track-actions .track-download {
  border-radius: 999px;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  background: #205bf3;
  color: #ffffff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.track-list .track .track-actions .track-download .icons {
  background-color: #ffffff;
  width: 17px;
  height: 17px;
}
.track-list .track .track-actions .track-download:hover {
  background: #375fcc;
}
.track-list .track .progress-container {
  width: calc(100% - 50px);
  display: none;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #e0e0e0;
  position: absolute;
  right: 0;
  bottom: 12px;
}
.track-list .track .progress-container .current-time {
  margin-right: 7px;
  color: #555555;
}
.track-list .track.active .progress-container {
  display: flex;
}
.track-list .track.active .track-meta {
  visibility: hidden;
}
.track-list .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-list .track .progress-bar .progress {
  width: 0;
  height: 100%;
  background: #388be9;
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.track-list .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 {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 8px 10px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.99), rgba(30, 136, 229, 0.98));
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
  display: none;
}
.player .player-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 13px;
}
.player .player-inner .now {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.player .player-inner .now .player-name {
  min-width: 0;
}
.player .player-inner .now .player-name .player-artist {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player .player-inner .now .player-name .player-title {
  font-size: 12px;
  opacity: 0.85;
}
.player .player-inner .now .cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd54f, #fff);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.player .player-inner .now .cover .icons {
  background-color: #83a5d9;
  width: 18px;
  height: 18px;
}
@media (max-width: 700px) {
  .player .player-inner .now .cover {
    display: none;
  }
}
@media (max-width: 600px) {
  .player .player-inner .now {
    display: none;
  }
}
.player .player-inner .controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.player .player-inner .controls .player-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.player .player-inner .controls .player-btn .icons {
  background-color: #ffffff;
  width: 14px;
  height: 14px;
}
.player .player-inner .controls .player-btn.play {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ffeb3b, #ffb300);
  color: #0d1b2a;
}
.player .player-inner .controls .player-btn.play .icons {
  background-color: black;
  width: 12px;
  height: 12px;
}
.player .player-inner .volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.player .player-inner .seek {
  display: flex;
  align-items: center;
  gap: 10px;
  font-variant-numeric: tabular-nums;
}
.player .player-inner .seek .bar {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  width: 100%;
  cursor: pointer;
}
.player .player-inner .seek .bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #f1d872;
  border-radius: 999px;
}
.player .player-inner .seek .time {
  font-size: 12px;
  color: #ffffff;
}

.layout {
  max-width: 1180px;
  margin: 16px auto 40px;
  padding: 0 16px;
  display: flex;
  gap: 16px;
}
.layout .content {
  flex: 1;
}
.layout .content .content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #dde2f0;
}
.layout .content .content-card .card-inner:not(:last-child) {
  margin-bottom: 15px;
}
.layout .content .content-card .card-inner .card-title {
  margin-bottom: 10px;
}
.layout .content .content-card .card-inner ul {
  padding-left: 40px;
}
.layout .content .content-card .content-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.layout .content .content-card .content-header .content-title {
  font-size: 20px;
  font-weight: 600;
}
.layout .content .content-card .content-header .content-subtitle {
  font-size: 13px;
  color: #6f7687;
}
.layout .content .content-card .content-seo {
  margin: 0 auto;
  padding: 15px 16px 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.7;
  font-size: 16px;
}
.layout .content .content-card .content-seo h2 {
  font-size: 26px;
  line-height: 1.3;
  margin: 32px 0 16px;
  font-weight: 600;
  color: #1e293b;
}
.layout .content .content-card .content-seo h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  font-weight: 600;
  color: #334155;
}
.layout .content .content-card .content-seo p {
  margin-bottom: 16px;
}
.layout .content .content-card .content-seo strong {
  color: #0f6eea;
  font-weight: 600;
}
.layout .content .content-card .content-seo ul {
  margin: 12px 0 20px 20px;
  padding: 0;
}
.layout .content .content-card .content-seo ul li {
  margin-bottom: 8px;
}
.layout .content .content-card .content-seo .benefits {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}
.layout .content .content-card .content-seo .benefits li::before {
  content: "✔";
  color: #16a34a;
  margin-right: 8px;
}
.layout .content .content-card .content-seo .benefits {
  list-style: none;
  margin: 0;
}

.ringtone-card .track-detail {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  margin-bottom: 16px;
}
.ringtone-card .track-detail .track-stats {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}
.ringtone-card .track-detail .track-stats .track-pages {
  margin-top: 7px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  font-size: 13px;
  color: #436bd1;
  flex-wrap: wrap;
}
.ringtone-card .track-detail .track-stats .track-pages a {
  color: #436bd1;
}
.ringtone-card .track-detail .track-stats .track-play {
  width: 65px;
  height: 65px;
  border-radius: 999px;
  border: none;
  background: #4a7dff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.ringtone-card .track-detail .track-stats .track-play .icons {
  width: 16px;
  height: 16px;
  background: #ffffff;
}
.ringtone-card .track-detail .track-stats .track-info {
  flex: 1;
  position: relative;
}
.ringtone-card .track-detail .track-stats .track-info h1 {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.ringtone-card .track-detail .track-stats .track-info h1 .track-artist {
  font-size: 18px;
  font-weight: 600;
}
.ringtone-card .track-detail .track-stats .track-info h1 .track-title {
  font-size: 14px;
  color: #6a717f;
  font-weight: 400;
}
.ringtone-card .track-detail .track-stats .track-info .track-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  font-size: 13px;
  color: #6a717f;
}
.ringtone-card .track-detail .track-stats .track-info .track-meta-row span {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  color: #6a717f;
}
.ringtone-card .track-detail .track-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.ringtone-card .track-detail .track-actions .track-duration {
  font-size: 14px;
  color: #737b8c;
}
.ringtone-card .track-detail .track-actions .btn-primary {
  border-radius: 999px;
  border: 1px solid #375fcc;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  background: #375fcc;
  color: #ffffff;
}
.ringtone-card .track-detail .track-actions .btn-secondary {
  border-radius: 999px;
  border: 1px solid #dde2f0;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  background: #ffffff;
  color: #6a717f;
}
.ringtone-card .track-detail .progress-container {
  width: 100%;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #e0e0e0;
  gap: 12px;
  margin-top: 5px;
}
.ringtone-card .track-detail .progress-container .current-time {
  margin-right: 7px;
  color: #555555;
}
.ringtone-card .track-detail.active .progress-container {
  visibility: visible;
}
.ringtone-card .track-detail .progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(68, 68, 68, 0.1803921569);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.ringtone-card .track-detail .progress-bar .progress {
  width: 0;
  height: 100%;
  background: #388be9;
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.ringtone-card .track-detail .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;
}
.ringtone-card .text-block {
  font-size: 14px;
  color: #222222;
}
.ringtone-card .text-block h2 {
  font-size: 16px;
  margin: 16px 0 6px;
}
.ringtone-card .related {
  margin-top: 20px;
}
.ringtone-card .related .related-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ringtone-card .related .track-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f5f7fb;
  border: 1px solid #dde2f0;
  font-size: 13px;
  gap: 10px;
}
.ringtone-card .related .track-mini span:nth-child(1) {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.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;
}

.active-menu .close-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: 999;
}

.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 .error .alert-danger {
  bottom: -9px;
  left: 2px;
}
.form-group label {
  color: #656565;
  display: inline-block;
  font-size: 15px;
}

#likeBtn {
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid #dde2f0;
  cursor: pointer;
  background: #fff;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6a717f;
}
#likeBtn .likeName {
  font-size: 12px;
}
#likeBtn #likeCount {
  font-size: 12px;
  color: #fe8f47;
}
#likeBtn .ic {
  display: flex;
  align-items: center;
}
#likeBtn .ic .ic-heart {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: #fe8f47;
  mask: url("/images/icons/heart.svg") no-repeat center/contain;
  -webkit-mask: url("/images/icons/heart.svg") no-repeat center/contain;
}
#likeBtn.liked {
  background: #ffebee;
  color: #e53935;
}
#likeBtn.liked .ic .ic-heart {
  background: #e53935;
  animation: pulse 300ms ease;
}
#likeBtn.liked #likeCount {
  color: #e53935;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
#likeBtn .like-particle {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  background: red;
  mask: url("/images/icons/heart.svg") no-repeat center/contain;
  -webkit-mask: url("/images/icons/heart.svg") no-repeat center/contain;
  animation: fly 700ms ease-out forwards;
}
@keyframes fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0.2);
    opacity: 0;
  }
}

.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-forward-arrow {
  -webkit-mask: url("/images/icons/forward-arrow.svg") no-repeat center;
          mask: url("/images/icons/forward-arrow.svg") no-repeat center;
}

@media (min-width: 880px) {
  .header .header-inner > div {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
  }
}
@media (max-width: 880px) {
  .layout {
    flex-direction: column;
  }
  .header .header-inner .logo img {
    flex-shrink: 0;
  }
  .header .header-inner {
    flex-wrap: wrap;
  }
  .header .header-inner .lang-switch {
    flex-basis: 100%;
    left: 0;
  }
  .header .header-inner .lang-switch .lang-switch__menu {
    left: 0;
    width: -moz-max-content;
    width: max-content;
  }
  .header .header-inner > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-basis: 100%;
    gap: 15px;
  }
  .header .header-inner .burger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 18px;
    justify-content: space-between;
    min-width: 25px;
    padding: 0;
    width: 24px;
  }
  .header .header-inner .burger span {
    background: #4a7dff;
    border-radius: 3px;
    display: block;
    height: 3px;
    transition: all 0.3s ease;
    width: 100%;
  }
  .header .header-inner .burger.active span:first-child {
    transform: rotate(45deg) translate(5.7px, 5px);
  }
  .header .header-inner .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header-inner .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header .header-inner .search {
    max-width: unset;
  }
  .sidebar {
    position: fixed;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 99999;
    border-radius: 0 0 16px 16px;
    overflow-y: auto;
    height: 100%;
    max-height: 140vw;
  }
  .active-menu .sidebar {
    top: 99px;
  }
}
@media (max-width: 768px) {
  .content-seo {
    font-size: 15px;
  }
  .content-seo h2 {
    font-size: 22px;
  }
  .content-seo h3 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .layout {
    padding: 0 5px;
  }
  .track-list .track .track-actions .track-download {
    padding: 10px;
    background: linear-gradient(135deg, #f5c02b, #ff8a7a);
  }
  .track-list .track .track-actions .track-download span:nth-child(2) {
    display: none;
  }
  .ringtone-card .track-detail {
    gap: 10px;
    flex-direction: column;
  }
  .ringtone-card .track-detail .track-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ringtone-card .track-detail .track-actions .track-duration {
    display: none;
  }
  .ringtone-card .track-detail .track-stats {
    align-items: flex-start;
  }
  .ringtone-card .track-detail .track-stats .track-info .track-meta-row {
    margin-top: 10px;
  }
  .ringtone-card .track-detail .track-stats .track-play {
    width: 73px;
    height: 73px;
  }
  .ringtone-card .track-detail .track-stats .track-play .icons {
    width: 23px;
    height: 23px;
  }
  .header .header-inner .lang-switch__btn {
    font-size: 12px;
  }
  .header .header-inner .logo {
    width: 165px;
  }
}
@media (max-width: 450px) {
  .ringtone-card .track-detail .track-actions .btn-primary, .ringtone-card .track-detail .track-actions .btn-secondary {
    text-align: center;
  }
  .ringtone-card .track-detail .track-stats .track-play {
    width: 64px;
    height: 64px;
  }
  .ringtone-card .track-detail .track-stats .track-play .icons {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 417px) {
  .btn-primary, .btn-secondary {
    padding: 8px 14px !important;
    font-size: 12px !important;
    flex-shrink: 0;
  }
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7px;
}
.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 {
  width: 41px;
  height: 41px;
  display: flex;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 1px solid;
  border-color: rgb(226, 226, 226);
  background: #ffffff;
  color: #6b717f;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper .pagination span.active {
  background: #375fcc;
  color: #fff;
  cursor: default;
}
@media (min-width: 860px) {
  .pagination-wrapper .pagination a:hover {
    background: #375fcc;
    color: #fff;
  }
}
.pagination-wrapper .pagination a.active {
  background: #375fcc;
  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;
  flex-shrink: 0;
}
@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 {
  border-top: 1px solid #dde2f0;
  background: #ffffff;
  margin-top: 32px;
}
.footer .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6b717f;
}
.footer .footer-inner .footer-col {
  flex: 1;
  min-width: 180px;
}
.footer .footer-inner .footer-col .footer-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}
.footer .footer-inner .footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-inner .footer-col .footer-links a {
  display: block;
  margin-bottom: 4px;
}
.footer .footer-inner .footer-bottom {
  width: 100%;
  border-top: 1px solid #dde2f0;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b717f;
}

#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: 16px;
  right: 16px;
  z-index: 9999;
  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;
  margin-top: -5px;
  margin-bottom: 8px;
}
.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: 0;
  margin: 0;
}
.breadcrumbs ul .icon-forward-arrow {
  background-color: #777777;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 3px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: rgb(103, 103, 103);
  font-size: 10px;
}
.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;
}
