@charset "UTF-8";
* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #22c55e;
}
*::-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: radial-gradient(circle at top, #1e293b 0, #020617 50%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-width: 380px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

#loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 239, 239, 0.1);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loading-indicator .equalizer {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}
#loading-indicator .equalizer .bar {
  width: 8px;
  height: 20px;
  background: #35d16e;
  animation: bounce 0.5s infinite alternate;
}
#loading-indicator .equalizer .bar:nth-child(1) {
  animation-delay: 0s;
}
#loading-indicator .equalizer .bar:nth-child(2) {
  animation-delay: 0.1s;
}
#loading-indicator .equalizer .bar:nth-child(3) {
  animation-delay: 0.2s;
}
#loading-indicator .equalizer .bar:nth-child(4) {
  animation-delay: 0.3s;
}
#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);
  }
}
.close-overlay {
  display: none;
}

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

:root {
  --bg-page:#050816;
  --bg-card:#0b1220;
  --bg-soft:#111827;
  --accent:#22c55e;
  --accent-soft:rgba(34,197,94,.1);
  --danger:#fb7185;
  --text-main:#e5e7eb;
  --text-muted:#9ca3af;
  --radius-xl:20px;
  --radius-lg:16px;
  --radius-md:12px;
  --shadow-soft:0 22px 65px rgba(15,23,42,.7);
}

.layout {
  display: flex;
  gap: 18px;
  margin: 14px auto 100px;
  max-width: 1200px;
  padding: 0 16px 40px;
  width: 100%;
}

.main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icons {
  display: inline-block;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
  background-color: black;
  width: 24px;
  height: 24px;
}
.icons.icon-arrow-top {
  -webkit-mask: url("/images/icons/arrow-top.svg") no-repeat center;
          mask: url("/images/icons/arrow-top.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-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-burger {
  -webkit-mask: url("/images/icons/burger-menu.svg") no-repeat center;
          mask: url("/images/icons/burger-menu.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-eye {
  -webkit-mask: url("/images/icons/eye.svg") no-repeat center;
          mask: url("/images/icons/eye.svg") no-repeat center;
}
.icons.icon-calender {
  -webkit-mask: url("/images/icons/calender.svg") no-repeat center;
          mask: url("/images/icons/calender.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;
}
.icons.icon-bitrate {
  -webkit-mask: url("/images/icons/bitrate.svg") no-repeat center;
          mask: url("/images/icons/bitrate.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-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-music {
  -webkit-mask: url("/images/icons/music.svg") no-repeat center;
          mask: url("/images/icons/music.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-plus {
  -webkit-mask: url("/images/icons/plus.svg") no-repeat center;
          mask: url("/images/icons/plus.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-minus {
  -webkit-mask: url("/images/icons/minus.svg") no-repeat center;
          mask: url("/images/icons/minus.svg") no-repeat center;
}
.icons.ellipses-horizontal {
  -webkit-mask: url("/images/icons/ellipses-horizontal.svg") no-repeat center;
          mask: url("/images/icons/ellipses-horizontal.svg") no-repeat center;
}
.icons.icon-volume {
  -webkit-mask: url("/images/icons/volume.svg") no-repeat center;
          mask: url("/images/icons/volume.svg") no-repeat center;
}
.icons.icon-airplay {
  -webkit-mask: url("/images/icons/airplay.svg") no-repeat center;
          mask: url("/images/icons/airplay.svg") no-repeat center;
}
.icons.icon-mobile {
  -webkit-mask: url("/images/icons/mobile.svg") no-repeat center;
          mask: url("/images/icons/mobile.svg") no-repeat center;
}
.icons.icon-info-circle {
  -webkit-mask: url("/images/icons/info-circle.svg") no-repeat center;
          mask: url("/images/icons/info-circle.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-ok {
  -webkit-mask: url("/images/icons/ok.svg") no-repeat center;
          mask: url("/images/icons/ok.svg") no-repeat center;
}
.icons.icon-abuse {
  -webkit-mask: url("/images/icons/abuse.svg") no-repeat center;
          mask: url("/images/icons/abuse.svg") no-repeat center;
}
.icons.icon-exclamation {
  -webkit-mask: url("/images/icons/exclamation.svg") no-repeat center;
          mask: url("/images/icons/exclamation.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-close {
  -webkit-mask: url("/images/icons/close.svg") no-repeat center;
          mask: url("/images/icons/close.svg") no-repeat center;
}
.icons.icon-logout-sign {
  -webkit-mask: url("/images/icons/logout-sign.svg") no-repeat center;
          mask: url("/images/icons/logout-sign.svg") no-repeat center;
}
.icons.icon-user {
  -webkit-mask: url("/images/icons/user.svg") no-repeat center;
          mask: url("/images/icons/user.svg") no-repeat center;
}
.icons.icon-warning {
  -webkit-mask: url("/images/icons/warning.svg") no-repeat center;
          mask: url("/images/icons/warning.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-check {
  -webkit-mask: url("/images/icons/check.svg") no-repeat center;
          mask: url("/images/icons/check.svg") no-repeat center;
}
.icons.icon-info {
  -webkit-mask: url("/images/icons/info.svg") no-repeat center;
          mask: url("/images/icons/info.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-microphone {
  -webkit-mask: url("/images/icons/microphone.svg") no-repeat center;
          mask: url("/images/icons/microphone.svg") no-repeat center;
}
.icons.icon-sidebar-menu {
  -webkit-mask: url("/images/icons/sidebar-menu.svg") no-repeat center;
          mask: url("/images/icons/sidebar-menu.svg") no-repeat center;
}
.icons.icon-fire {
  -webkit-mask: url("/images/icons/fire.svg") no-repeat center;
          mask: url("/images/icons/fire.svg") no-repeat center;
}
.icons.icon-headphone {
  -webkit-mask: url("/images/icons/headphone.svg") no-repeat center;
          mask: url("/images/icons/headphone.svg") no-repeat center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99999;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.85), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-menu {
  display: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: conic-gradient(from 160deg, #22c55e, #06b6d4, #6366f1, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 18px 35px rgba(8, 47, 73, 0.6);
  font-size: 14px;
  font-weight: 700;
  color: #020617;
}
.logo-mark .icons {
  width: 11px;
  height: 11px;
}

.logo-text-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 17px;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.nav-link:hover {
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

.nav-link.active {
  background: var(--accent-soft);
  border-color: rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
  font-weight: 600;
}

.header-cta {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: linear-gradient(120deg, #22c55e, #a3e635);
  color: #052e16;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(3, 7, 18, 0.98));
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}
.player-container .rectangle-icon {
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.player-container .full-name {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.player-container .full-name b {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}
.player-container .full-name span {
  font-size: 10px;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .player-container .full-name b, .player-container .full-name span {
    font-size: 11px;
  }
}
.player-container .player-right {
  width: 100%;
}
.player-container .center {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 12px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.player-container .current-time {
  color: #ffffff;
}
.player-container .full-time {
  color: #ffffff;
}
.player-container .icons {
  background: #fff;
}
.player-container .icons {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 700px) {
  .player-container {
    width: 100%;
    border-radius: 0;
    bottom: 0;
  }
}
.player-container .close-player-btn {
  position: absolute;
  top: -38px;
  right: 0;
  background: #607D8B;
  height: 27px;
  width: 27px;
  cursor: pointer;
  z-index: 10000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-container .close-player-btn:hover {
  opacity: 0.7;
}
@media (max-width: 700px) {
  .player-container .close-player-btn {
    top: -28px;
    right: 0;
    border-radius: 7px 0 0 0;
  }
}
.player-container .progress-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-muted);
}
.player-container .progress-container .time {
  font-size: 10px;
  color: var(--text-muted);
}
.player-container .progress-container .progress-bar {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 5px;
  background: rgba(31, 41, 55, 0.9);
  cursor: pointer;
  outline: none;
  transition: background-image 0.2s linear;
}
.player-container .progress-container .progress-bar .progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #a3e635);
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.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;
  gap: 8px;
}
.player-container .player-controls__btns {
  display: flex;
  width: 128px;
  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 {
  height: 39px;
  width: 39px;
  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: #22c55e;
  width: 21px;
  height: 21px;
}
.player-container .player-controls__btns .icon-prev, .player-container .player-controls__btns .icon-next {
  background-color: #22c55e;
  width: 22px;
  height: 22px;
}
.player-container .player-controls__btns #next-track-btn, .player-container .player-controls__btns #prev-track-btn {
  cursor: pointer;
}
@media (max-width: 700px) {
  .player-container .player-controls {
    margin-bottom: 4px;
  }
}
.player-container .download-btn {
  width: 100px;
}
.player-container .download-btn a {
  color: #fff;
}
.player-container .download-btn a .icon-download {
  width: 21px;
  height: 21px;
  background-color: #fff;
}
.player-container .like-btn {
  width: 35px;
}
.player-container .like-btn .like-button__footer {
  margin-top: 0;
  background: unset !important;
  border: unset !important;
  border-color: unset !important;
}
.player-container .like-btn .like-button__footer .icon-heart {
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .player-container .volume-slider {
    display: none;
  }
  .player-container .download-btn {
    width: 33px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  margin: 10px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span.dots {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-muted);
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #0b1220;
}
.pagination a.active {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #0b1220;
  cursor: default;
}
.pagination .prev .icons, .pagination .next .icons {
  display: flex;
  align-items: center;
  width: 15px;
  height: 16px;
  background-color: var(--text-muted);
}
@media (max-width: 550px) {
  .pagination .prev, .pagination .next {
    display: none;
  }
}
.pagination .prev:hover .icons, .pagination .next:hover .icons {
  background-color: #0b1220;
}
.pagination .dots {
  pointer-events: none;
  background: transparent;
  box-shadow: none;
  color: var(--text-muted);
}
.pagination .disabled {
  pointer-events: none;
}

.breadcrumbs {
  font-size: 10px;
  padding: 12px 8px;
  margin-top: -15px;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: rgba(33, 37, 41, 0.75);
  content: "•";
}
.breadcrumbs ul {
  margin: 0 !important;
  padding-left: 0 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-wrap: nowrap;
  display: flex;
}
.breadcrumbs li {
  display: flex;
  color: rgb(103, 103, 103);
}
.breadcrumbs li span {
  color: #8d8d8d;
}
.breadcrumbs a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: color 0.3s;
}

#social-buttons {
  display: flex;
  gap: 5px;
  position: relative;
  justify-content: center;
}
#social-buttons a {
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 6px;
  border-radius: 7px;
}
#social-buttons a .icons {
  width: 21px;
  height: 21px;
}
#social-buttons a .icons.icon-viber {
  background-color: #975cff;
}
#social-buttons a .icons.icon-facebook-f {
  background-color: #3f51b5;
}
#social-buttons a .icons.icon-whatsapp {
  background-color: #33a138;
}
#social-buttons a .icons.icon-telegram {
  background-color: #2888d5;
}
#social-buttons a .icons.icon-share {
  background-color: #3f51b5;
}
#social-buttons a .icons.icon-twitter-x {
  background-color: #94b4c3;
}
#social-buttons a:hover {
  transition: all 0.2s;
  transform: scale(1.07);
}
#social-buttons .social-button {
  display: flex;
}

.form-group .alert-danger {
  text-align: end;
  font-size: 12px;
  padding-top: 5px;
  color: red;
}

#toast-container {
  position: fixed;
  top: 65px;
  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;
}

.hero {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 50%), radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.2), transparent 55%), radial-gradient(circle at 50% 100%, rgba(129, 140, 248, 0.27), transparent 50%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 18px;
  z-index: 1;
}

.hero-main {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  margin-bottom: 7px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.3);
  margin-right: 5px;
}

.hero-title {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.2;
  margin: 0 0 6px;
}

.music-page .hero-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.music-page .hero-title span {
  font-size: 17px;
  color: var(--text-muted);
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: 20px;
}

.hero-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding-top: 15px;
}
.hero-desc #social-buttons {
  margin-top: 17px;
}

.hero-cover {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  background: radial-gradient(circle at top, #22c55e, #0f172a);
  border-radius: 24px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background-size: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-actions .hero-btn-primary {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, #22c55e, #4ade80);
  color: #052e16;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.35);
}
.hero-actions .hero-btn-primary span {
  background-color: black;
  width: 17px;
  height: 17px;
}
.hero-actions .hero-btn-ghost {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-actions .hero-btn-ghost span {
  background-color: black;
  width: 17px;
  height: 17px;
}
.hero-actions .hero-btn-ghost.download-hero .icons {
  background-color: var(--text-muted);
  width: 17px;
  height: 17px;
}

.hero-stats {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-stats .hero-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stats .hero-stat strong {
  font-size: 13px;
  color: #dddddd;
}

.footer-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #020617;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    position: fixed;
    right: -310px;
    z-index: 99998;
  }
  .btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    min-width: 25px;
    padding: 0;
    width: 25px;
    outline: none;
  }
  .btn-menu span {
    background: linear-gradient(120deg, #22c55e, #4ade80);
    border-radius: 3px;
    display: block;
    height: 3px;
    transition: all 0.3s ease;
    width: 100%;
  }
  .btn-menu.active span:first-child {
    transform: rotate(45deg) translate(7px, 6px);
  }
  .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header-nav {
    display: none;
  }
  .search-card {
    width: 100%;
    min-width: 150px;
  }
  .search-card .search-input {
    font-size: 16px !important;
    padding: 6px 12px 6px 12px !important;
  }
  .search-card .search-input::-moz-placeholder {
    font-size: 13px !important;
  }
  .search-card .search-input::placeholder {
    font-size: 13px !important;
  }
  .active-menu {
    overflow: hidden;
  }
  .active-menu .sidebar {
    right: 0;
    top: 120px;
    height: 100dvh;
    overflow-y: auto;
    border-radius: 0;
    background: rgba(15, 23, 42, 0.95);
    border-left: 1px solid rgba(148, 163, 184, 0.2);
  }
  .active-menu .sidebar .side-card {
    border: unset;
  }
  .active-menu .btn-menu {
    right: 277px;
    z-index: 99999;
    transition: right 0.5s ease;
  }
}
@media (max-width: 668px) {
  .music-page .hero-inner, .artist-page .hero-inner {
    flex-direction: column;
    align-items: center;
  }
  .music-page .hero-inner .hero-main, .artist-page .hero-inner .hero-main {
    text-align: center;
  }
  .music-page .hero-inner .hero-main .hero-stats, .music-page .hero-inner .hero-main .hero-actions, .artist-page .hero-inner .hero-main .hero-stats, .artist-page .hero-inner .hero-main .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 450px) {
  .logo .logo-mark {
    width: 28px;
    height: 28px;
  }
  .logo .logo-text-title {
    font-size: 15px;
  }
  .logo .logo-text-sub {
    font-size: 9px;
  }
}
.search-card .search-field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  position: relative;
}
.search-card .search-field .search-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.8);
  padding: 8px 12px 8px 12px;
  color: var(--text-main);
  font-size: 13px;
  outline: none;
}
.search-card .search-field button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: unset;
  position: absolute;
  right: 8px;
}
.search-card .search-field button .icon-search {
  background-color: #22c55e;
  width: 22px;
  height: 22px;
}

.section {
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 12px 10px;
}
.section.related .track-list {
  gap: 8px;
  margin-top: 8px;
}
.section.related .track-list .track-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.0392156863);
  font-size: 13px;
  gap: 10px;
  color: var(--text-muted);
}
.section.related .track-list .track-mini span:nth-child(1) {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.section .section-header .section-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.section .section-header .section-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.section .section-header .section-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}
.section .section-header .section-actions .pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
}
.section .section-header .section-actions .pill.active {
  background: var(--accent-soft);
  border-color: rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
  pointer-events: none;
}

.side-card {
  padding: 10px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.side-card .side-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.side-card .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.side-card .tag-cloud .tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
}
.side-card .tag-cloud .tag.active, .side-card .tag-cloud .tag:hover {
  border-color: rgba(34, 197, 94, 0.8);
  background: var(--accent-soft);
  color: #bbf7d0;
}
.side-card .side-note {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.side-card .side-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-card .side-list .side-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.side-card .side-list .side-link.active, .side-card .side-list .side-link:hover {
  border-color: rgba(34, 197, 94, 0.8);
  background: var(--accent-soft);
  color: #bbf7d0;
}
.side-card .side-list .side-link .nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24;
  font-size: 20px;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.track-list .track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.0392156863);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.track-list .track.active, .track-list .track:hover {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}
.track-list .track.active .track-cover, .track-list .track:hover .track-cover {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  border: 1px solid rgba(148, 163, 184, 0.7);
}
.track-list .track.active .track-cover .icons, .track-list .track:hover .track-cover .icons {
  background-color: black;
}
.track-list .track.active .track-right .track-download, .track-list .track:hover .track-right .track-download {
  border-color: rgba(34, 197, 94, 0.8);
  background: var(--accent-soft);
}
.track-list .track.active .track-right .track-download .icons, .track-list .track:hover .track-right .track-download .icons {
  background-color: #bbf7d0;
}
.track-list .track .track-right .track-download {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.18s ease-out, border-color 0.18s ease-out;
  color: #0f172a;
}
.track-list .track .track-right .track-download .icons {
  background-color: var(--text-muted);
  width: 17px;
  height: 17px;
}
.track-list .track .track-cover {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #e5f0ff, #ffffff);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #64748b;
  flex-shrink: 0;
  overflow: hidden;
}
.track-list .track .track-cover .icons {
  background-color: #203447;
  width: 14px;
  height: 14px;
}
.track-list .track .track-main {
  flex: 1;
  min-width: 0;
}
.track-list .track .track-main .track-title {
  font-size: 13px;
  margin-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.track-list .track .track-main .track-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.track-list .track .track-main .track-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.track-list .track .track-main .track-meta span.dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.8);
}

.comments-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.comments-title {
  font-size: 20px;
  margin-top: 4px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.comment-form {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.0509803922);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.comment-form:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.comment-form .form-group {
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.8);
  font-size: 14px;
  transition: border-color 0.3s;
  color: #a1a1a1;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.submit-btn {
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(120deg, #22c55e, #4ade80);
  color: #052e16;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.35);
}

.submit-btn:hover {
  opacity: 0.7;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-error {
  text-align: center;
  color: #656565;
}

.comments-pagination {
  margin-top: 15px;
  text-align: center;
}

.comments-pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.3s;
}

.comments-pagination a.active {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #0b1220;
}

.comments-pagination a:hover {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #0b1220;
}

.comment-card {
  padding: 15px 20px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.0392156863);
}

.comment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-name {
  font-weight: 500;
  color: #ffffff;
}

.comment-date {
  font-size: 12px;
  color: #999;
}

.comment-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  white-space: pre-line;
}

.swiper {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  margin-top: 7px;
}
.swiper .swiper-wrapper {
  height: auto;
  padding-bottom: 5px;
  padding-top: 10px;
  justify-content: space-between;
}
.swiper .swiper-slide {
  width: 175px;
  margin-left: 13px;
  margin-right: 13px;
  height: auto;
}

@media screen and (max-width: 980px) {
  .swiper .swiper-container {
    padding-right: 15px;
  }
  .swiper .swiper-slide {
    width: 120px;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
.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;
}

.swiper-button-next {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  right: 10px;
  padding: 30px;
  color: #000 !important;
  fill: black !important;
  stroke: black !important;
}

.swiper-button-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  right: 10px;
  padding: 30px;
  color: #000 !important;
  fill: black !important;
  stroke: black !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") !important;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") !important;
  background-color: #4e3872;
  background-size: 12px 18px;
  margin-top: -36px;
  height: 47px;
  width: 47px;
  padding: 17px 15px;
  right: 5px;
  border-radius: 50%;
}

.swiper-button-prev {
  background-color: #4e3872;
  background-size: 12px 18px;
  margin-top: -36px;
  height: 47px;
  width: 47px;
  padding: 17px 15px;
  right: 5px;
  border-radius: 50%;
  left: 5px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    background-size: 10px 17px;
    height: 39px;
    width: 39px;
    padding: 12px 12px;
  }
}
.swiper-button-next {
  border-radius: 50%;
}

.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: #9ca3af;
  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-next, .swiper-button-prev {
  position: absolute;
  top: 55%;
  width: 27px;
  height: 44px;
  margin-top: -42px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-main-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-main-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-main-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-main-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-main-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-main-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

.seo-text {
  padding: 0 25px;
}
.seo-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
.seo-text h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.seo-text p {
  margin-bottom: 15px;
  color: #9ca3af;
}
.seo-text .highlight {
  color: #4a56e2;
  font-weight: bold;
}
.seo-text ul {
  padding-left: 20px;
}
.seo-text li {
  margin-bottom: 8px;
}

#post-like {
  display: flex;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0px 11px;
  height: 33px;
  min-height: 33px;
  border-radius: 30px;
  align-items: center;
  cursor: pointer;
}
#post-like #like-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  position: relative;
}
#post-like #like-button .icons {
  background-color: rgba(34, 197, 94, 0.92);
  width: 19px;
  height: 19px;
}
#post-like:has(#like-button.liked) {
  border: 1px solid #ff6166;
}
#post-like:has(#like-button.liked) #like-count {
  color: #ff6166;
}
#post-like #like-button.liked {
  animation: pop 0.3s ease;
}
#post-like #like-button.liked .icons {
  background-color: #ff6166;
}
#post-like #like-count {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 13px;
}
#post-like #like-count.increase {
  transform: scale(1.3);
}
#post-like .fly-heart {
  position: absolute;
  color: #ff6166;
  font-size: 16px;
  pointer-events: none;
  animation: flyUp 1s ease-out forwards;
  opacity: 0.8;
  z-index: 1000;
}
@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flyUp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(0, -30px) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(0, -60px) scale(0);
    opacity: 0;
  }
}

.btn-contacts {
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  display: block;
  margin-top: 10px;
  width: -moz-max-content;
  width: max-content;
  background: var(--accent-soft);
  color: #bbf7d0;
}

.contacts .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.contacts .contact-card {
  padding: 25px;
}
.contacts .contact-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contacts .contact-card p {
  color: #555;
  margin-bottom: 10px;
}
.contacts .contact-card a {
  color: #ff6166;
  font-weight: 600;
  text-decoration: none;
}
.contacts .contact-card a:hover {
  text-decoration: underline;
}
.contacts .section h2, .contacts .section h1 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.contacts .contact-form {
  padding: 8px 0;
}
.contacts .form-group {
  margin-bottom: 20px;
}
.contacts .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.contacts .form-group input,
.contacts .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 35px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 15px;
  background: transparent;
}
.contacts .form-group input:focus,
.contacts .form-group textarea:focus {
  outline: none;
  border-color: #ff6166;
}
.contacts button {
  background: linear-gradient(120deg, #22c55e, #4ade80);
  color: #052e16;
  border: none;
  padding: 14px 22px;
  border-radius: 99px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.contacts p {
  line-height: 1.7;
  font-size: 1.1em;
  margin-bottom: 20px;
}
.contacts .contact-email {
  display: block;
  margin: 20px 0;
  font-size: 1.2em;
  color: #4CAF50;
  text-decoration: none;
  text-align: center;
}
.contacts .contact-email:hover {
  text-decoration: underline;
}
.contacts button:hover {
  background: #e95458;
}
@media (max-width: 600px) {
  .contacts .section h2, .contacts .section h1 {
    font-size: 22px;
  }
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 10px 0;
}

.artist-item {
  padding: 20px;
  transition: 0.2s ease;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  border-radius: 17px;
}

.artist-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.artist-item .name {
  font-size: 18px;
  margin-bottom: 8px;
}

.artist-item .name {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  transition: 0.2s;
}

.artist-item:hover {
  border-color: rgba(34, 197, 94, 0.8);
  background: var(--accent-soft);
}
.artist-item:hover .name {
  color: #bbf7d0;
}

.artist-item span {
  font-size: 13px;
  color: var(--text-muted);
}
