:root {
  --bg: #010304;
  --bg-soft: rgba(8, 18, 24, 0.72);
  --bg-strong: rgba(5, 10, 14, 0.94);
  --surface: rgba(9, 17, 23, 0.62);
  --surface-strong: rgba(10, 18, 24, 0.88);
  --text: #f2fdff;
  --muted: #9db7bf;
  --muted-strong: #b9cfd5;
  --accent: #00ffff;
  --accent-strong: #84ffff;
  --accent-soft: rgba(0, 255, 255, 0.14);
  --danger: #ff6c90;
  --line: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-glow: 0 0 0 1px rgba(0, 255, 255, 0.05), 0 24px 60px rgba(0, 0, 0, 0.34), 0 0 34px rgba(0, 255, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.3s ease;
  --cover-image: url("assets/urban-crist-cover.png");
  --ambient-image: url("assets/ambient-sky.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(0, 178, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #000000 0%, #031117 46%, #000000 100%);
}

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

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

button {
  border: 0;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.ambient-background,
.page-glow,
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-background {
  z-index: -4;
  opacity: 0.4;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(1, 10, 14, 0.64) 38%, rgba(0, 0, 0, 0.72) 100%),
    var(--ambient-image) center center / cover no-repeat;
  filter: saturate(0.94) brightness(0.74);
  transform: scale(1.03);
}

.page-glow {
  z-index: -3;
}

.page-glow-left {
  background: radial-gradient(circle at left center, rgba(0, 255, 255, 0.14), transparent 32%);
}

.page-glow-right {
  background: radial-gradient(circle at right top, rgba(0, 204, 255, 0.12), transparent 28%);
}

.noise-layer {
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.glass-panel {
  background: linear-gradient(180deg, rgba(12, 22, 28, 0.7) 0%, rgba(6, 12, 18, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.site-wrap {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(96deg, rgba(1, 9, 13, 0.94) 0%, rgba(1, 9, 13, 0.78) 42%, rgba(1, 9, 13, 0.88) 100%),
    var(--cover-image) center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.topbar,
.hero-grid,
.hero-copy,
.contact-copy {
  position: relative;
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.topbar-left,
.brand,
.brand-text,
.topbar-right,
.topbar-center,
.nav-links {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 14px;
}

.topbar-center {
  justify-content: center;
}

.topbar-right {
  justify-content: flex-end;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.menu-toggle:hover {
  border-color: rgba(0, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.1), 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 26px rgba(0, 255, 255, 0.14);
  transform: translateY(-1px);
}

.menu-toggle-line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  gap: 14px;
}

.drawer-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #001316;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.22);
}

.brand-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-link,
.topbar-chip,
.filter-chip,
.ghost-button,
.download-link,
.button,
.mini-button,
.social-link,
.upload-zone {
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.nav-link {
  padding: 12px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(0, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.1), 0 0 22px rgba(0, 255, 255, 0.08);
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #001316;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 8px 22px rgba(0, 255, 255, 0.18);
}

.topbar-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 255, 255, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 20px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
  max-width: 680px;
  text-align: left;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.9rem);
  line-height: 0.94;
}

.hero-description,
.section-copy,
.player-meta,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-description {
  max-width: 540px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.button:hover,
.ghost-button:hover,
.download-link:hover,
.filter-chip:hover,
.mini-button:hover,
.social-link:hover,
.upload-zone:hover {
  transform: translateY(-2px);
}

.button-primary,
.download-link {
  color: #011214;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 28px rgba(0, 255, 255, 0.16);
}

.button-secondary,
.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 10px;
}

.stat-card {
  display: grid;
  gap: 6px;
  padding: 14px 14px 12px;
  border-radius: 18px;
}

.stat-card strong {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.player-cover-art,
.song-art {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(1, 10, 14, 0.12) 0%, rgba(1, 10, 14, 0.6) 100%),
    var(--track-cover-image, var(--cover-image)) center center / cover no-repeat;
}

.player-cover-art::before,
.song-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 255, 255, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%);
}

.player-cover-art::after,
.song-art::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
}

.player-cover-art span,
.song-art span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.player-cover-art > span,
.song-art > span:not(.song-play-preview) {
  display: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(2, 8, 12, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-backdrop.is-visible {
  opacity: 1;
}

.account-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  align-content: start;
  gap: 20px;
  width: min(430px, 92vw);
  height: 100vh;
  padding: 22px;
  background: linear-gradient(180deg, rgba(5, 11, 15, 0.96) 0%, rgba(3, 8, 12, 0.98) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 26px 0 64px rgba(0, 0, 0, 0.4);
  transform: translateX(-104%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.account-drawer.is-open {
  transform: translateX(0);
}

.drawer-head,
.drawer-brand,
.drawer-user,
.drawer-user-copy,
.drawer-nav,
.auth-toggle,
.logout-button,
.auth-form,
.section-head,
.library-controls,
.song-list-panel,
.song-card,
.song-button,
.song-card-main,
.player-body,
.player-track-head,
.contact-card,
.contact-copy,
.site-footer-content {
  display: grid;
}

.drawer-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.drawer-brand {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  font-weight: 700;
}

.drawer-brand-icon,
.auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.drawer-brand-icon svg,
.auth-icon svg,
.search-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-brand-icon {
  width: 28px;
  height: 28px;
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.drawer-close:hover {
  color: #ffffff;
  border-color: rgba(0, 255, 255, 0.22);
}

.drawer-user {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
}

.drawer-avatar {
  width: 66px;
  height: 66px;
  font-size: 1.2rem;
}

.drawer-user-copy {
  gap: 4px;
}

.drawer-user-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-user-name {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.drawer-user-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.drawer-nav {
  gap: 10px;
}

.auth-block {
  display: grid;
  gap: 10px;
}

.auth-toggle,
.logout-button {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 18px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.auth-toggle:hover,
.auth-toggle.is-active,
.logout-button:hover {
  border-color: rgba(0, 255, 255, 0.2);
  background: rgba(0, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.08);
}

.auth-icon {
  width: 34px;
  height: 34px;
}

.auth-label {
  line-height: 1.2;
}

.auth-form {
  gap: 14px;
  padding: 4px 16px 10px 66px;
}

.auth-field {
  display: grid;
  gap: 7px;
}

.upload-field {
  display: grid;
  gap: 8px;
}

.auth-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upload-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-field input,
.search-field input {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.auth-field input {
  min-height: 46px;
  padding: 0 14px;
}

.auth-field select,
.auth-field textarea,
.upload-field input,
.upload-field select,
.upload-field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}

.auth-field select,
.upload-field input,
.upload-field select {
  min-height: 46px;
  padding: 0 14px;
}

.auth-field textarea,
.upload-field textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.auth-field input:focus,
.search-field input:focus {
  border-color: rgba(0, 255, 255, 0.26);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.auth-field select:focus,
.auth-field textarea:focus,
.upload-field input:focus,
.upload-field select:focus,
.upload-field textarea:focus {
  border-color: rgba(0, 255, 255, 0.26);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.auth-submit {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  color: #001214;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  cursor: pointer;
}

.logout-button[hidden] {
  display: none;
}

.auth-message {
  margin: 0;
  min-height: 24px;
  color: var(--muted-strong);
  line-height: 1.6;
  font-size: 0.92rem;
}

.support-status {
  margin: 0;
  min-height: 22px;
  padding: 0 16px 0 66px;
  color: var(--muted-strong);
  line-height: 1.55;
  font-size: 0.88rem;
}

.support-thread-list,
.support-admin-list {
  display: grid;
  gap: 12px;
}

.support-thread-list {
  padding-left: 66px;
}

.support-thread-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-thread-head h4,
.support-thread-head p,
.support-message-head strong,
.support-message-head span,
.support-message-body,
.support-empty p {
  margin: 0;
}

.support-thread-head {
  display: grid;
  gap: 4px;
}

.support-thread-head h4 {
  font-size: 0.98rem;
}

.support-thread-head p,
.support-message-head span,
.support-empty p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.support-thread-messages {
  display: grid;
  gap: 10px;
}

.support-message-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.support-message-main {
  display: grid;
  gap: 6px;
}

.support-message-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.support-message-head strong {
  font-size: 0.92rem;
}

.support-message-body {
  color: var(--text);
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.support-person-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #001316;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.92) 0%, rgba(132, 255, 255, 0.86) 100%);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.14);
}

.support-person-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.support-message-row.is-admin .support-person-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(208, 233, 237, 0.88) 100%);
}

.support-reply-form {
  display: grid;
  gap: 10px;
}

.support-reply-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.support-reply-form textarea:focus {
  border-color: rgba(0, 255, 255, 0.26);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.support-reply-actions {
  display: flex;
  justify-content: flex-end;
}

.support-empty {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 70;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
}

.notification {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 15, 20, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: translateY(-8px);
  opacity: 0;
  animation: toastIn 0.3s ease forwards;
}

.notification.is-success {
  border-color: rgba(0, 255, 255, 0.18);
}

.notification.is-error {
  border-color: rgba(255, 108, 144, 0.22);
}

.notification strong {
  font-size: 0.96rem;
}

.notification span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

@keyframes toastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-content {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-copy {
  max-width: 620px;
}

.library-controls {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.search-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(320px, 100%);
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: rgba(0, 255, 255, 0.8);
}

.search-field input {
  min-height: 40px;
  padding: 0;
  width: 100%;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  transition: color var(--transition), opacity var(--transition);
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.filter-chip.is-active {
  color: #001214;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(0, 255, 255, 0.16);
}

.library-layout {
  position: relative;
}

.artist-tools {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
}

.artist-tools-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.artist-tools-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.artist-upload-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.upload-field-wide,
.artist-upload-actions,
.upload-message {
  grid-column: 1 / -1;
}

.artist-upload-actions {
  display: flex;
  justify-content: flex-start;
}

.upload-message {
  margin: 0;
  min-height: 24px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.support-admin {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.button[disabled],
.auth-submit[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.song-list-panel {
  gap: 20px;
  padding: 22px;
  border-radius: 26px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.song-list-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.song-list-top h3 {
  margin: 0;
  font-size: 1.2rem;
}

.song-list-top p {
  margin: 0;
  color: var(--muted);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.song-list-loading {
  padding: 18px 20px;
  color: var(--muted);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.song-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.song-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.song-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.song-card.is-active {
  border-color: rgba(0, 255, 255, 0.14);
  background: rgba(0, 255, 255, 0.035);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), 0 0 18px rgba(0, 255, 255, 0.05);
}

.song-button {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.song-art {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.24);
}

.song-art span {
  font-size: 1.3rem;
}

.song-play-preview {
  position: absolute;
  inset: auto 10px 10px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #001214;
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(6px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 2;
}

.song-play-preview svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.song-card:hover .song-play-preview,
.song-card.is-active .song-play-preview {
  transform: translateY(0);
  opacity: 1;
}

.song-card-main {
  gap: 10px;
  min-width: 0;
}

.song-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.song-kicker {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.song-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.song-index {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.song-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  word-break: break-word;
}

.song-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.song-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.song-chip.is-accent {
  color: var(--accent);
  border-color: rgba(0, 255, 255, 0.16);
  background: rgba(0, 255, 255, 0.06);
}

.empty-state {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state p {
  color: var(--muted);
  line-height: 1.6;
}

.player-panel {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 35;
  width: min(366px, calc(100vw - 28px));
  border-radius: 26px;
  overflow: hidden;
  background: rgba(6, 12, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28), 0 0 22px rgba(0, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.player-panel.is-loading {
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 255, 0.14);
}

.player-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 12px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.012);
}

.player-drag-handle {
  min-width: 0;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.player-panel.is-dragging .player-drag-handle,
.player-drag-handle:active {
  cursor: grabbing;
}

.player-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.player-minimize,
.player-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.player-minimize:hover,
.player-close:hover {
  color: var(--text);
  background: rgba(0, 255, 255, 0.08);
}

.player-body {
  gap: 18px;
  padding: 20px;
}

.player-panel.is-minimized {
  width: min(270px, calc(100vw - 28px));
}

.player-panel.is-minimized .player-body {
  display: none;
}

.player-cover {
  display: grid;
}

.player-cover-art {
  min-height: 250px;
  border-radius: 24px;
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.28), 0 0 30px rgba(0, 255, 255, 0.14);
}

.player-cover-art span {
  font-size: 3rem;
}

.player-track-head {
  gap: 8px;
}

.player-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.player-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.player-meta {
  font-size: 0.92rem;
}

.player-audio {
  display: none;
}

.player-progress-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.player-favorite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.player-favorite svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.player-favorite:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.05);
}

.player-favorite.is-active {
  color: var(--danger);
  background: rgba(255, 108, 144, 0.12);
  box-shadow: 0 0 18px rgba(255, 108, 144, 0.18);
  animation: favoritePulse 0.4s ease;
}

.player-favorite.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

@keyframes favoritePulse {
  0% {
    transform: scale(0.88);
  }

  60% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.player-progress {
  --progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.player-progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.88) 0%, rgba(0, 255, 255, 0.88) var(--progress), rgba(255, 255, 255, 0.12) var(--progress), rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.18);
}

.player-progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5.5px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.28);
  -webkit-appearance: none;
}

.player-progress::-moz-range-track {
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.88) 0%, rgba(0, 255, 255, 0.88) var(--progress), rgba(255, 255, 255, 0.12) var(--progress), rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.18);
}

.player-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.28);
}

.player-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
}

.player-time::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.player-time.is-live::before {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.42);
  animation: statusPulse 1.2s ease infinite;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.player-skip-button,
.player-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--text);
  cursor: pointer;
}

.player-skip-button {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.player-skip-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.player-main-button {
  position: relative;
  width: 78px;
  height: 78px;
  background: radial-gradient(circle at top, rgba(0, 255, 255, 0.16), rgba(0, 255, 255, 0.03)), rgba(4, 19, 25, 0.74);
  border-radius: 50%;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.22), 0 0 18px rgba(0, 255, 255, 0.1);
}

.player-main-button svg {
  position: absolute;
  width: 30px;
  height: 30px;
  fill: #ffffff;
  transition: transform var(--transition), opacity var(--transition);
}

.player-main-button .player-pause-icon {
  transform: scale(0.75);
  opacity: 0;
}

.player-main-button.is-playing .player-play-icon {
  transform: scale(0.75);
  opacity: 0;
}

.player-main-button.is-playing .player-pause-icon {
  transform: scale(1);
  opacity: 1;
}

.player-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.player-track-count {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  border-radius: 999px;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border-radius: 26px;
}

.contact-copy {
  gap: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--text);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.social-link:hover {
  color: var(--accent);
  border-color: rgba(0, 255, 255, 0.22);
  background: rgba(0, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.1);
}

.social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding-top: 22px;
}

.site-footer-content {
  gap: 8px;
  justify-items: center;
}

.footer-tag {
  margin-bottom: 0;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .song-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .player-panel {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .player-panel.is-minimized {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-head,
  .song-list-top {
    grid-template-columns: 1fr;
  }

  .artist-tools-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .topbar-left,
  .topbar-right,
  .topbar-center {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 18px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-wrap {
    width: min(100% - 18px, 1180px);
    padding-top: 18px;
  }

  .hero,
  .song-list-panel,
  .artist-tools,
  .contact-card {
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 2.9rem);
  }

  .player-cover-art {
    min-height: 220px;
  }

  .account-drawer {
    width: min(100vw, 100%);
    padding: 18px;
  }

  .auth-form {
    padding-left: 0;
  }

  .support-status {
    padding-left: 0;
  }

  .support-thread-list {
    padding-left: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .artist-upload-form {
    grid-template-columns: 1fr;
  }

  .song-button {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .song-art {
    width: 72px;
    height: 72px;
  }

  .notification-container {
    top: 18px;
    right: 18px;
  }
}
