* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --unc-bg: #080808;
  --unc-panel: rgba(18, 18, 18, 0.88);
  --unc-border: rgba(255, 255, 255, 0.12);
  --unc-text: #ffffff;
  --unc-muted: #b6b6b6;
  --unc-accent: #ff5500;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--unc-text);
  background: var(--unc-bg);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.unc-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 85, 0, 0.12), transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(255, 85, 0, 0.08), transparent 30%),
    radial-gradient(circle, rgba(20, 20, 20, 0.95) 0%, rgba(6, 6, 6, 1) 100%);
}

.unc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 16px 0;
}

.unc-nav {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--unc-panel);
  border: 1px solid var(--unc-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.unc-brand {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.unc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ddd;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--unc-border);
  transition: all 0.25s ease;
}

.unc-back-link:hover {
  color: var(--unc-accent);
  border-color: rgba(255, 85, 0, 0.5);
}

.unc-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 16px 60px;
}

.unc-hero {
  margin-bottom: 22px;
}

.unc-kicker {
  color: var(--unc-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.unc-title {
  margin-top: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.unc-subtitle {
  margin-top: 10px;
  color: var(--unc-muted);
  max-width: 700px;
}

.unc-tabs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.unc-tab {
  border: 1px solid var(--unc-border);
  background: rgba(255, 255, 255, 0.03);
  color: #ddd;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.unc-tab:hover {
  border-color: rgba(255, 85, 0, 0.55);
  color: #fff;
}

.unc-tab.is-active {
  background: linear-gradient(135deg, #ff5500, #ff7a00);
  border-color: transparent;
  color: #101010;
}

.unc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.unc-item {
  border: 1px solid var(--unc-border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.unc-item:hover {
  border-color: rgba(255, 85, 0, 0.5);
  background: rgba(255, 85, 0, 0.06);
}

.unc-item-cover {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.unc-item-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.unc-item-meta {
  margin-top: 4px;
  color: var(--unc-muted);
  font-size: 13px;
}

.unc-open {
  border: 1px solid var(--unc-border);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.unc-open:hover {
  border-color: var(--unc-accent);
  background: var(--unc-accent);
  color: #111;
}

.unc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
}

.unc-modal.is-open {
  display: flex;
}

.unc-modal-panel {
  width: min(560px, 100%);
  border: 1px solid var(--unc-border);
  border-radius: 18px;
  background: #111;
  padding: 14px;
  position: relative;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

.unc-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--unc-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.unc-close:hover {
  border-color: rgba(255, 85, 0, 0.55);
  color: var(--unc-accent);
}

.unc-modal-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.unc-modal-info {
  margin-top: 12px;
}

.unc-modal-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.unc-modal-meta {
  margin-top: 4px;
  color: var(--unc-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unc-player {
  width: 100%;
  margin-top: 14px;
}

.unc-modal-actions {
  margin-top: 12px;
}

.unc-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5500, #ff7a00);
  color: #111;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Plyr in your style */
.plyr {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.plyr--audio {
  --plyr-color-main: #ff5500;
  --plyr-audio-controls-background: #141414;
  --plyr-audio-control-color: #ffffff;
  --plyr-range-fill-background: #ff5500;
  --plyr-range-thumb-background: #ff5500;
  --plyr-tooltip-background: #ff5500;
  --plyr-tooltip-color: #111;
}

@media (max-width: 760px) {
  .unc-brand {
    font-size: 14px;
  }

  .unc-back-link {
    font-size: 11px;
    padding: 7px 10px;
  }

  .unc-main {
    padding-top: 26px;
  }

  .unc-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .unc-item-cover {
    margin: 0 auto;
  }

  .unc-open {
    width: 100%;
  }

  .unc-modal-title {
    font-size: 20px;
  }
}