:root {
  --bg: #040608;
  --bg-2: #071118;
  --panel: rgba(215, 235, 244);
  --panel-strong: rgba(214, 248, 255);
  --line: rgba(169, 224, 241, 0.18);
  --text: #eefcff;
  --muted: #8ca7b7;
  --accent: #7bf2ff;
  --accent-2: #8ce7d8;
  --shadow: 0 24px 80px rgba(3, 12, 18, 0.1);
  --radius-xl: 20px;
  --radius-lg: 25px;
  --playlist-card-height: 92px;
  --playlist-gap: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: #030507;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 34%, rgba(78, 176, 186, 0.16), transparent 34%),
    radial-gradient(ellipse at 82% 74%, rgba(84, 255, 231, 0.1), transparent 28%),
    linear-gradient(180deg, #05080b 0%, #04070a 28%, #030609 62%, #020406 100%);
  z-index: -4;
}

.noise,
.orb {
  pointer-events: none;
  position: fixed;
}

.noise {
  inset: 0;
  z-index: -3;
  opacity: 0.08;
  background-image:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.34) 0.6px, transparent 0.8px);
  background-size: 100% 3px, 12px 12px;
  mix-blend-mode: soft-light;
}

.orb {
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.34;
  z-index: -2;
}

.orb-left {
  top: 28%;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 242, 255, 0.18), transparent 72%);
  animation: float 16s ease-in-out infinite;
}

.orb-right {
  right: -150px;
  bottom: 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(140, 231, 216, 0.14), transparent 74%);
  animation: float 18s ease-in-out infinite reverse;
}

.hero,
.content {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-left: clamp(18px, 3vw, 40px);
  padding-right: clamp(18px, 3vw, 40px);
}

.hero {
  min-height: auto;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0;
}

.logo-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 20px;
  margin: 0;
}

.logo-top img {
  width: min(140px, 14vw);
  filter: drop-shadow(0 8px 18px rgba(123, 242, 255, 0.14));
  position: relative;
  z-index: 1;
}

.logo-top::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 58px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 242, 255, 0.18), rgba(123, 242, 255, 0.04) 55%, transparent 74%);
  filter: blur(8px);
}

.topbar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px 0 0;
  min-height: 80px;

}

.topbar__links a,
.eyebrow,
.player-tags span,
.track-card small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.topbar__links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  align-items: center;
  justify-content: center;
}

.glass-card,
.panel,
.track-card,
.empty-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(10, 18, 24, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card::before,
.panel::before,
.track-card::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.panel,
.player-shell,
.track-card,
.contact-card,
.empty-card {
  border-radius: var(--radius-xl);
}

.section-heading h2,
.player-meta h3 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.player-meta p,
.contact-card p,
.empty-card p {
  color: var(--muted);
  line-height: 1.68;
}

.button:hover {
  transform: translateY(-2px);
}

.content {
  padding-bottom: 24px;
}

.site-footer {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 40px) 28px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  color: rgba(180, 205, 216, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.panel {
  padding: clamp(16px, 2vw, 22px);
  margin-top: 100px;
}

.content > .panel:first-child {
  margin-top: 0;
}

.panel--playlist {
  min-height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
}

.embed-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 22px;
  margin-top: 24px;
}

.embed-card__frame,
.player-cover-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.player-cover-wrap {
  aspect-ratio: 16 / 9;
}

.embed-card__frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.empty-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.panel--playlist .player-layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  margin-top: 8px;
  align-items: start;
  min-height: 0;
}

.panel--playlist .section-heading {
  position: relative;
  z-index: 1;
}

.panel--playlist .section-heading .eyebrow {
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.player-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.player-shell::after {
  content: "";
  position: absolute;
  inset: -18% -12%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.16) translate3d(-6%, 5%, 0);
  background:
    radial-gradient(circle at 14% 26%, rgba(123, 242, 255, 0.34), transparent 22%),
    radial-gradient(circle at 82% 30%, rgba(140, 231, 216, 0.24), transparent 24%),
    radial-gradient(circle at 52% 82%, rgba(188, 246, 255, 0.18), transparent 28%),
    radial-gradient(circle at 30% 62%, rgba(97, 201, 255, 0.18), transparent 26%),
    linear-gradient(125deg, rgba(123, 242, 255, 0.12), rgba(140, 231, 216, 0.04) 38%, rgba(123, 242, 255, 0.16));
  background-size: 148% 148%, 142% 142%, 132% 132%, 138% 138%, 175% 175%;
  background-position: 0% 50%, 100% 36%, 50% 100%, 24% 72%, 0% 50%;
  filter: blur(14px) saturate(1.02);
  transition: opacity 1100ms ease, transform 2200ms ease, filter 2200ms ease;
  z-index: 0;
}

.player-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 19, 26, 0.58), rgba(9, 16, 22, 0.64)),
    rgba(10, 18, 24, 0.28);
  z-index: 0;
}

.player-shell.is-active::after {
  opacity: 0.96;
  transform: scale(1) translate3d(0, 0, 0);
  filter: blur(9px) saturate(1.22);
  animation: playlistAuraShift 6.4s ease-in-out infinite alternate;
}

.player-shell > * {
  position: relative;
  z-index: 1;
}

.player-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cover-position-x, 50%) var(--cover-position-y, 50%);
  transform-origin: var(--cover-position-x, 50%) var(--cover-position-y, 50%);
  transform: scale(var(--cover-scale, 1));
}

.player-meta {
  padding: 10px 4px 6px;
}

.player-meta__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.player-title-wrap {
  min-width: 0;
  flex: 1 1 220px;
  overflow: hidden;
}

.player-title-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.player-meta__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.player-meta h3 {
  margin: 0;
  line-height: 1;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
}

.player-tags {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.player-collaborators {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.player-collaborator-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(169, 224, 241, 0.14);
  color: rgba(226, 244, 248, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 13, 18, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.player-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(169, 224, 241, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.player-icon-link:hover {
  border-color: rgba(123, 242, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(123, 242, 255, 0.12), rgba(140, 231, 216, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 18px rgba(123, 242, 255, 0.12);
  transform: translateY(-1px);
}

.player-icon-link--labeled {
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
}

.player-icon-link__label {
  color: rgba(222, 247, 251, 0.86);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-icon-link.is-hidden {
  display: none;
}

.player-status-pill {
  pointer-events: none;
}

.player-status-pill--sold {
  border-color: rgba(255, 96, 122, 0.3);
  color: #ffd9df;
  background:
    linear-gradient(180deg, rgba(255, 96, 122, 0.14), rgba(255, 96, 122, 0.07)),
    rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.player-status-pill--sold:hover {
  transform: none;
  border-color: rgba(255, 96, 122, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 96, 122, 0.14), rgba(255, 96, 122, 0.07)),
    rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.player-status-pill__label {
  color: #ffd9df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

.icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.icon-youtube::before {
  content: "";
  position: absolute;
  inset: 2px 0;
  border-radius: 5px;
  background: #ff4e61;
}

.icon-youtube::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
}

.icon-dollar::before {
  content: "$";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #86f3df;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.player-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.audio-player {
  display: none;
}

.custom-player {
  margin-top: auto;
  padding-top: 12px;
}

.player-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 22px;
  border: 1px solid rgba(169, 224, 241, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(9, 16, 22, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.player-primary-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.player-button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
  background: linear-gradient(135deg, rgba(123, 242, 255, 0.92), rgba(140, 231, 216, 0.92));
  box-shadow: 0 10px 24px rgba(123, 242, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease;
}

.player-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 26px rgba(123, 242, 255, 0.24);
}

.player-button--ghost {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  border: 1px solid rgba(169, 224, 241, 0.14);
}

.player-button--ghost:hover {
  filter: none;
  border-color: rgba(123, 242, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(123, 242, 255, 0.12), rgba(140, 231, 216, 0.05)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 18px rgba(123, 242, 255, 0.12);
}

.player-button--nav {
  width: 42px;
  height: 42px;
}

.player-button__icon {
  display: block;
  position: relative;
}

.player-button__icon--play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #041217;
}

.player-button.is-playing .player-button__icon--play {
  width: 14px;
  height: 16px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #041217 0 4px, transparent 4px 10px, #041217 10px 14px);
}

.player-button__icon--prev,
.player-button__icon--next {
  width: 14px;
  height: 14px;
}

.player-button__icon--prev::before,
.player-button__icon--prev::after,
.player-button__icon--next::before,
.player-button__icon--next::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.player-button__icon--prev::before {
  left: 0;
  border-right: 8px solid rgba(222, 252, 255, 0.88);
}

.player-button__icon--prev::after {
  left: 6px;
  border-right: 8px solid rgba(222, 252, 255, 0.88);
}

.player-button__icon--next::before {
  left: 0;
  border-left: 8px solid rgba(222, 252, 255, 0.88);
}

.player-button__icon--next::after {
  left: 6px;
  border-left: 8px solid rgba(222, 252, 255, 0.88);
}

.player-progress {
  min-width: 0;
}

.player-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.player-seek {
  --progress: 0%;
  width: 100%;
  height: 10px;
  margin: 0;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background:
    linear-gradient(90deg, var(--accent) 0 var(--progress), rgba(255, 255, 255, 0.1) var(--progress) 100%);
  touch-action: none;
}

.player-seek::-webkit-slider-runnable-track {
  height: 100%;
  border-radius: inherit;
  background: transparent;
}

.player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -4px;
  border-radius: 50%;
  border: 0;
  background: #eefdff;
  box-shadow: 0 0 0 3px rgba(123, 242, 255, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.player-seek:focus-visible {
  outline: 2px solid rgba(123, 242, 255, 0.45);
  outline-offset: 4px;
}

.player-seek::-moz-range-track {
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.player-seek::-moz-range-progress {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.player-seek::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: #eefdff;
  box-shadow: 0 0 0 3px rgba(123, 242, 255, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.player-seek:hover::-webkit-slider-thumb,
.player-seek:active::-webkit-slider-thumb,
.player-seek:hover::-moz-range-thumb,
.player-seek:active::-moz-range-thumb {
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(123, 242, 255, 0.18);
}

.playlist-list-shell {
  position: relative;
  min-height: 0;
  padding: 0 10px 0 4px;
  border-radius: 0;
  background: transparent;
}

.playlist-list {
  display: grid;
  gap: var(--playlist-gap);
  align-content: start;
  height: calc((var(--playlist-card-height) * 7) + (var(--playlist-gap) * 6));
  max-height: calc((var(--playlist-card-height) * 7) + (var(--playlist-gap) * 6));
  overflow: auto;
  padding: 0 10px 0 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.playlist-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.playlist-scrollbar {
  position: absolute;
  top: 0;
  right: 2px;
  width: 8px;
  height: calc((var(--playlist-card-height) * 7) + (var(--playlist-gap) * 6));
  pointer-events: none;
}

.playlist-scrollbar.is-hidden {
  opacity: 0;
}

.playlist-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  pointer-events: auto;
  cursor: grab;
  background: linear-gradient(180deg, rgba(123, 242, 255, 0.46), rgba(140, 231, 216, 0.36));
  box-shadow:
    0 0 0 1px rgba(123, 242, 255, 0.06),
    0 0 14px rgba(123, 242, 255, 0.12);
}

.playlist-scrollbar__thumb:hover,
.playlist-scrollbar__thumb.is-dragging {
  background: linear-gradient(180deg, rgba(150, 248, 255, 0.64), rgba(168, 241, 228, 0.5));
  box-shadow:
    0 0 0 1px rgba(123, 242, 255, 0.1),
    0 0 18px rgba(123, 242, 255, 0.16);
}

.playlist-scrollbar__thumb.is-dragging {
  cursor: grabbing;
}

.track-card {
  width: 100%;
  min-height: var(--playlist-card-height);
  padding: 7px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.track-card__badge {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 96, 122, 0.3);
  color: #ffd9df;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 96, 122, 0.16), rgba(255, 96, 122, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.track-card__badge--sold {
  border-color: rgba(255, 96, 122, 0.3);
  color: #ffd9df;
  background:
    linear-gradient(180deg, rgba(255, 96, 122, 0.16), rgba(255, 96, 122, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.track-card:hover {
  border-color: rgba(123, 242, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(129, 247, 255, 0.06), rgba(255, 255, 255, 0.035)),
    rgba(10, 18, 24, 0.78);
}

.track-card__main {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.track-card img {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
  object-position: var(--cover-position-x, 50%) var(--cover-position-y, 50%);
  transform-origin: var(--cover-position-x, 50%) var(--cover-position-y, 50%);
  transform: scale(var(--cover-scale, 1));
}

.track-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.track-card__meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
}

.track-card__meta span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(169, 224, 241, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.track-card__meta span.is-hidden-by-fit {
  display: none;
}

.player-collaborators .is-hidden-by-fit,
.player-tags .is-hidden-by-fit {
  display: none;
}

.track-card strong {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.96rem;
}

.track-card small {
  color: var(--muted);
  font-size: 0.64rem;
}

.track-card.is-active {
  border-color: rgba(123, 242, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(129, 247, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(10, 18, 24, 0.8);
}

.contact-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-intro {
  margin: 8px 0 0;
  max-width: 640px;
  color: rgba(192, 213, 223, 0.8);
  font-size: 0.96rem;
  line-height: 1.6;
}

.pricing-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pricing-card__title {
  margin: 0 0 12px;
  font-family: "Orbitron", sans-serif;
  color: #eefcff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.05;
}

.pricing-card__price {
  display: block;
  margin-bottom: 16px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1;
  color: rgba(222, 247, 251, 0.88);
}

.pricing-card p:last-child {
  margin: 0;
}

.pricing-card p {
  color: rgba(222, 235, 241, 0.86);
}

.pricing-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.pricing-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__link {
  border: 1px solid rgba(169, 224, 241, 0.18);
  color: rgba(222, 247, 251, 0.88);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.pricing-card__button {
  border: 1px solid rgba(123, 242, 255, 0.24);
  color: #041217;
  background: linear-gradient(135deg, rgba(123, 242, 255, 0.92), rgba(140, 231, 216, 0.84));
  box-shadow: 0 8px 20px rgba(123, 242, 255, 0.16);
  transition: filter 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pricing-card__link:hover {
  border-color: rgba(123, 242, 255, 0.28);
  color: #effdff;
  background:
    linear-gradient(180deg, rgba(123, 242, 255, 0.1), rgba(140, 231, 216, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 8px 18px rgba(123, 242, 255, 0.1);
  transform: translateY(-1px);
}

.contact-card {
  position: relative;
  padding: 22px;
  min-height: 100%;
  overflow: hidden;
}

.contact-card__icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  opacity: 0.5;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-card__icon--telegram {
  background-image: url("../images/contact-telegram.png");
}

.contact-card__icon--youtube {
  background-image: url("../images/contact-youtube.png");
}

.contact-card__icon--mail {
  background-image: url("../images/contact-mail.png");
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}

.contact-card a {
  color: var(--accent);
  word-break: break-word;
  position: relative;
  z-index: 1;
}

.contact-card p {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes logoShift {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.01);
  }
}

@keyframes playlistAuraShift {
  0% {
    background-position: 0% 50%, 100% 34%, 50% 100%, 22% 74%, 0% 50%;
    filter: saturate(0.96) brightness(0.98);
  }
  50% {
    background-position: 48% 24%, 58% 82%, 30% 28%, 76% 38%, 72% 56%;
    filter: saturate(1.28) brightness(1.03);
  }
  100% {
    background-position: 92% 62%, 8% 20%, 70% 82%, 12% 42%, 100% 50%;
    filter: saturate(1.08) brightness(1.01);
  }
}

@keyframes playerTitleMarquee {
  0%,
  14% {
    transform: translateX(0);
  }
  86%,
  100% {
    transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
  }
}


@media (max-width: 1100px) {
  .embed-card,
  .panel--playlist .player-layout,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .panel--playlist {
    min-height: auto;
  }

  .playlist-list {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .playlist-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 0;
  }

  .topbar__links {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .logo-top img {
    width: min(84px, 24vw);
  }

  .topbar__links a {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .player-meta__topline {
    gap: 8px;
    min-height: 56px;
    align-items: center;
  }

  .player-meta__actions {
    gap: 5px;
    flex: 0 0 auto;
    align-items: center;
    align-self: center;
  }

  .player-icon-link--labeled {
    gap: 5px;
    min-height: 20px;
	padding: 0 6px;
	font-size: 0.42rem;
	width: 70px;
	height: 22px;
	    align-items: center;
    align-self: center;
  }

  .player-icon-link__label,
  .player-status-pill__label {
    font-size: 0.46rem;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .icon {
    width: 11px;
    height: 11px;
  }

  .icon-youtube::before {
    inset: 1px 0;
    border-radius: 999px;
  }

  .icon-youtube::after {
    left: 4px;
    top: 2px;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 5px solid #fff;
  }

  .icon-dollar::before {
    font-size: 10px;
  }

  .player-collaborators,
  .player-tags {
    gap: 5px;
  }

  .player-collaborators {
    margin-top: 10px;
    min-height: 24px;
    max-height: 24px;
    overflow: hidden;
    align-content: flex-start;
  }

  .player-tags {
    margin-top: 12px;
    min-height: 50px;
    max-height: 50px;
    overflow: hidden;
    align-content: flex-start;
  }

  .player-collaborator-chip,
  .player-tags span {
    min-height: 20px;
    padding: 0 7px;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
  }

  .player-meta {
    min-height: 176px;
    display: grid;
    grid-template-rows: auto minmax(56px, auto) minmax(24px, 24px) minmax(50px, 50px);
    align-content: start;
    row-gap: 0;
  }

  .player-title-wrap {
    flex: 1 1 0;
    width: 100%;
    max-width: calc(100% - 138px);
  }

  .player-collaborators,
  .player-tags {
    position: relative;
    z-index: 0;
  }

  .player-title-wrap.is-marquee .player-title-track {
    animation: playerTitleMarquee var(--marquee-duration, 10s) linear infinite alternate;
  }

  .logo-top::before {
    left: 4px;
    width: 48px;
    height: 26px;
  }

  .track-card {
    padding: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .track-card__main {
    width: 100%;
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .track-card img {
    width: 68px;
    height: 68px;
  }

  .track-card__content {
    gap: 6px;
  }

  .track-card__meta {
    gap: 4px;
  }

  .track-card__meta span {
    min-height: 18px;
    padding: 2px 6px;
    font-size: 0.5rem;
    letter-spacing: 0.09em;
  }

  .track-card__action {
    margin-left: 0;
  }

}
