*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #050509;
  --bg-elevated: #0d0d16;
  --bg-strong: #141422;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --studio-lilac: #7c3aed;
  --studio-cyan: #06b6d4;
  --studio-pink: #ec4899;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: #050509;
  color: var(--text-main);
}


body {
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.85rem;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), rgba(5, 5, 9, 0.96));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}


/* brand */

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  align-items: center;
}

.brand-kicker {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 600;
}

/* modern icon buttons */

.icon-button {
  position: relative;
  border: none;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 65%);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.icon-button-ghost {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.icon-button-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.35), transparent 55%),
              radial-gradient(circle at 90% 120%, rgba(56, 189, 248, 0.35), transparent 55%);
  opacity: 0.0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.icon-button:hover .icon-button-glow {
  opacity: 1;
}

.icon-symbol {
  position: relative;
  z-index: 1;
}

.icon-button:active {
  transform: scale(0.96);
}

.cart-button {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.cart-count {
  position: relative;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page {
  flex: 1;
  padding: 0.7rem 0.85rem 5.2rem;
  position: relative;
}

/* subtle studio lights behind content */

.page::before {
  content: "";
  position: fixed;
  inset: auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.24), transparent 55%);
  filter: blur(4px);
  top: -80px;
  right: -120px;
  pointer-events: none;
  z-index: -1;
}

.page::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22), transparent 60%);
  filter: blur(8px);
  bottom: -100px;
  left: -140px;
  pointer-events: none;
  z-index: -1;
}

.page-section {
  margin-bottom: 1.35rem;
  position: relative;
}

.page-section-hero .section-lights {
  position: absolute;
  inset: -30px -16px auto;
  height: 180px;
  background:
    radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.18), transparent 60%),
    radial-gradient(circle at 90% 0%, rgba(56, 189, 248, 0.18), transparent 60%);
  opacity: 0.7;
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.35rem;
}

.section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  margin: 0.05rem 0;
  font-size: 1.25rem;
}

.section-subtitle {
  margin: 0.1rem 0 0.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Side menu */

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: 72%;
  max-width: 290px;
  background: rgba(5, 5, 9, 0.98);
  border-right: 1px solid var(--border-subtle);
  transform: translateX(-100%);
  transition: transform 0.22s ease-out;
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0.9rem 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.side-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.side-menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--studio-pink), var(--studio-cyan));
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.7);
}

.side-menu-list {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0.3rem 1rem;
}

.side-menu-list li {
  padding: 0.6rem 0.9rem;
  margin: 0.1rem 0.2rem;
  border-radius: 999px;
  color: var(--text-main);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.side-menu-list li:hover {
  background: rgba(148, 163, 184, 0.15);
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 25;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Carousel */

.carousel-row {
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.35rem 0 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* visible thin scrollbar */
.carousel-row::-webkit-scrollbar {
  height: 4px;
}

.carousel-row::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.65);
  border-radius: 999px;
}

.carousel-row::-webkit-scrollbar-track {
  background: transparent;
}

.card {
  scroll-snap-align: start;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.98), #020617);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 0.55rem 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 68%;
  max-width: 76%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46);
}

.card-thumb {
  border-radius: 0.9rem;
  overflow: hidden;
  height: 170px;
  border: none;
  padding: 0;
  background: radial-gradient(circle at center, #111827, #020617);
  cursor: pointer;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.card-title {
  font-size: 0.96rem;
  margin: 0.08rem 0 0;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* buttons */

.primary-button {
  margin-top: 0.2rem;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  background: linear-gradient(120deg, #f97316, #fb923c);
  color: #000;
  cursor: pointer;
}

.primary-button:active {
  transform: scale(0.97);
}

.full-width {
  width: 100%;
}

/* Grid for shop */

.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.8rem;
}

.card-price {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* Playlist tracks */

.playlist-tracks-section {
  display: none;
  margin-top: 0.55rem;
  padding: 0.6rem 0.65rem 0.8rem;
  border-radius: 1rem;
  background: rgba(7, 7, 13, 0.96);
  border: 1px solid var(--border-subtle);
}

.playlist-tracks-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.35rem;
}

.playlist-tracks-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.playlist-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.playlist-track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.playlist-track-title {
  font-size: 0.84rem;
}

.playlist-track-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.playlist-track-play {
  border: none;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.8rem;
  background: rgba(148, 163, 184, 0.2);
  color: var(--text-main);
  cursor: pointer;
}

.playlist-track-play:active {
  transform: scale(0.96);
}

.playlist-tracks-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Player – slimmer, studio feel */

.player-shell {
  margin-top: 0.6rem;
  padding: 0.5rem 0.55rem 0.55rem;
  border-radius: 0.95rem;
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.18), transparent 60%),
    radial-gradient(circle at 100% 120%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at 40% -40%, #1f2937, #020617);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.now-playing-title {
  margin: 0 0 0.1rem;
  font-size: 0.9rem;
}

.now-playing-meta {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-muted);
}

audio {
  width: 100%;
  height: 32px;
  border-radius: 999px;
  background: #020617;
}

/* WebKit tweak */
audio::-webkit-media-controls-panel {
  background-color: #020617;
  border-radius: 999px;
}

/* Cart drawer */

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 82%;
  max-width: 340px;
  background: rgba(5, 5, 9, 0.98);
  border-left: 1px solid var(--border-subtle);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: 32;
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  padding: 0.85rem 0.9rem 0.45rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.65rem 0.9rem;
}

.cart-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.cart-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 0.55rem;
  overflow: hidden;
  background: #020617;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-main {
  flex: 1;
}

.cart-item-title {
  font-size: 0.86rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 0.75rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-qty button {
  border: none;
  border-radius: 999px;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.85rem;
  background: rgba(148, 163, 184, 0.2);
  color: var(--text-main);
  cursor: pointer;
}

.cart-remove {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.cart-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-footer {
  padding: 0.65rem 0.9rem 0.9rem;
  border-top: 1px solid var(--border-subtle);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

/* Modals */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8);
  z-index: 40;
}

.modal.open {
  display: flex;
}

.modal-body {
  width: 100%;
  max-width: 640px;
  margin: 0 1rem;
  border-radius: 1.1rem;
  background: rgba(5, 5, 9, 0.98);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 0.85rem 0.85rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.55rem;
}

.modal-video {
  width: 100%;
  border-radius: 0.9rem;
  background: #020617;
}

.modal-image {
  width: 100%;
  border-radius: 0.9rem;
  object-fit: contain;
  max-height: 60vh;
}

.modal-meta {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating menu button */

.menu-fab {
  position: fixed;
  right: 0.9rem;
  bottom: 3.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.45rem 0.85rem;
  background: radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.25), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.25), transparent 55%),
              rgba(15, 23, 42, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
  color: var(--text-main);
  cursor: pointer;
  z-index: 26;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-fab-label {
  font-size: 0.8rem;
}

.menu-fab-glow {
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 60%);
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

.menu-fab:hover .menu-fab-glow {
  opacity: 1;
}

.menu-fab:active {
  transform: scale(0.96);
}

/* Small screens tweaks */

@media (min-width: 640px) {
  .card {
    min-width: 240px;
    max-width: 270px;
  }

  .player-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  audio {
    max-width: 260px;
  }
}



.mini-player-shell {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  margin-top: 0;
  z-index: 24;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 1),
    0 18px 44px rgba(0, 0, 0, 0.95);
  padding: 0.45rem 0.75rem;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.mini-player-shell.is-playing {
  background:
    radial-gradient(circle at 5% 0, rgba(168, 85, 247, 0.55), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.9),
    0 0 40px rgba(168, 85, 247, 0.9),
    0 18px 46px rgba(0, 0, 0, 0.98);
  transform: translateY(-2px);
}




/* v7 product image modal */
.product-modal {
  max-width: 480px;
}

.product-modal img {
  width: 100%;
  border-radius: 1rem;
}

.modal-product-meta {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.modal-product-price {
  font-weight: 700;
  margin-top: 0.6rem;
  font-size: 1.1rem;
}


/* v8 mini player controls */
.player-shell.mini-player-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.player-ctrl-btn {
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #f9fafb;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
}

.player-ctrl-btn:active {
  transform: scale(0.96);
}


/* v9: tracklist header controls + stronger mini-player buttons */
.playlist-tracks-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.playlist-tracks-header-main {
  flex: 1;
  min-width: 0;
}

.playlist-tracks-controls {
  display: none; /* shown when a playlist is active */
  align-items: center;
  gap: 0.35rem;
}

/* Make control buttons more visible */
.player-ctrl-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.2), rgba(15, 23, 42, 0.6));
  color: #f9fafb;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 10px 25px rgba(0, 0, 0, 0.6);
}

.player-ctrl-btn-small {
  padding: 0.2rem 0.55rem;
  font-size: 0.85rem;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.8),
    0 6px 16px rgba(0, 0, 0, 0.5);
}

.player-ctrl-btn:active {
  transform: scale(0.95);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 1),
    0 4px 10px rgba(0, 0, 0, 0.7);
}



.now-playing-title {
  font-size: 0.9rem;
}

.now-playing-meta {
  font-size: 0.75rem;
}


/* v11: playlist modal (enlarged album cover) */
.playlist-modal {
  max-width: 420px;
}

.playlist-modal-cover {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.playlist-modal-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.modal-meta-secondary {
  opacity: 0.7;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}


/* Archive dropdowns under each carousel */
.archive-shell {
  margin-top: 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.12), rgba(15, 23, 42, 0.95));
  padding: 0.4rem 0.6rem;
}

.archive-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 0.15rem 0.1rem;
}

.archive-toggle span {
  font-weight: 500;
}

.archive-panel {
  display: none;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.archive-panel.open {
  display: block;
}

.archive-item {
  width: 100%;
  text-align: left;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  padding: 0.35rem 0.5rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
}

.archive-item + .archive-item {
  margin-top: 0.25rem;
}

.archive-thumb {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.9), rgba(15,23,42,1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.archive-title {
  font-weight: 500;
}

.archive-meta {
  font-size: 0.75rem;
  opacity: 0.75;
}


/* Modal media navigation arrows */
.modal-media-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.2), rgba(15, 23, 42, 0.95));
  color: #e5e7eb;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.85);
}

.modal-nav-button:active {
  transform: translateY(-50%) scale(0.97);
}

.modal-nav-prev {
  left: 0.6rem;
}

.modal-nav-next {
  right: 0.6rem;
}

@media (min-width: 768px) {
  .modal-nav-prev {
    left: -0.25rem;
  }
  .modal-nav-next {
    right: -0.25rem;
  }
}


/* Shuffle button on mini player */
.mini-shuffle-button {
  font-size: 0.85rem;
  opacity: 0.7;
  border-radius: 999px;
  padding-inline: 0.55rem;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mini-shuffle-button.active {
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.45),
              0 8px 18px rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}


/* NOTB hero banner with pulse */
body {
  background: #060012;
}



.notb-hero {
  width: 100%;
  height: 80px;
  background: radial-gradient(circle at top, #3b1a7a 0%, #150822 45%, #050509 100%);
  position: relative;
  margin-bottom: 4px;
  animation: notbPulse 6s ease-in-out infinite;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}





.notb-hero::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 42px;
  background: radial-gradient(
    ellipse at center,
    rgba(186, 104, 255, 0.45),
    rgba(0, 0, 0, 0)
  );
  filter: blur(28px);
  animation: glowPulse 4.5s ease-in-out infinite;
}



@keyframes notbPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes glowPulse {
  0% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1.15);
  }
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1);
  }
}


.notb-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 900px;
  height: 200px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 20% 0%, rgba(147, 51, 234, 0.25), rgba(147, 51, 234, 0) 55%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0) 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
  filter: blur(2px);
}



@media (max-width: 480px) {
  .mini-player-shell {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.55rem;
    padding: 0.4rem 0.6rem;
  }
}


.mini-player.playing {
  box-shadow: 0 0 20px rgba(128,0,255,0.8), 0 0 40px rgba(128,0,255,0.6);
}


/* Shop Vault styles */
.vault-block {
  padding: 0.75rem 0 0.25rem;
}

.vault-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.vault-header h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}

.vault-subtitle {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.75);
}

.vault-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vault-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(30, 64, 175, 0.4);
}

.vault-thumb {
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.4), transparent);
}

.vault-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.vault-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: #e5e7eb;
}

.vault-meta {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.85);
}

.vault-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fbbf24;
}

.vault-action {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  white-space: nowrap;
}

/* NOTB logo overlay on hero */
.notb-logo-lockup {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.notb-logo-main {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f9fafb;
  text-shadow:
    0 0 12px rgba(168, 85, 247, 0.8),
    0 0 28px rgba(15, 23, 42, 0.95);
}

.notb-logo-sub {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-bar-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.65));
}


.brand-marquee {
  position: relative;
  overflow: hidden;
  max-width: 220px;
  height: 1.4rem;
}

.brand-marquee-inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: brandScroll 14s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #e5e7eb;
  opacity: 0.9;
}

.brand-marquee-inner span {
  margin-right: 1.75rem;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .brand-marquee {
    max-width: 180px;
  }
  .brand-marquee-inner {
    font-size: 0.65rem;
  }
}


@media (max-width: 600px) {
  .brand-bar-logo {
    height: 24px;
  }
}


/* Special highlight for playlist "Press Play" button */
.playlist-play-button {
  background:
    radial-gradient(circle at 5% 0, rgba(168, 85, 247, 0.7), rgba(15, 23, 42, 0.98)),
    linear-gradient(135deg, #a855f7, #ec4899);
  color: #f9fafb;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.9),
    0 0 28px rgba(168, 85, 247, 0.9);
}

.playlist-play-button:hover {
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 1),
    0 0 36px rgba(168, 85, 247, 1);
}


.player-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.player-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  min-width: 2.3rem;
  text-align: center;
}

.player-seek {
  flex: 1;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
}

.player-seek::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 1);
}

.player-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f97316;
  border: 2px solid #020617;
}


.store-unavailable-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}


.video-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  opacity: 0.95;
  z-index: 2;
}

.about-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.about-content a { color: #f97316; }

.about-content p {
  display:flex;
  align-items:center;
  gap:0.4rem;
}
.icon-email, .icon-ig, .icon-tiktok, .icon-twitter {
  font-size:1.2rem;
}


.about-content {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-label {
  font-weight: 500;
  opacity: 0.9;
}

.about-content a {
  color: #f97316;
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.45);
}

.social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

/* Brand-ish colors */
.email-icon {
  color: #e5e7eb;
}
.ig-icon {
  color: #ec4899;
}
.tiktok-icon {
  color: #22d3ee;
}
.twitter-icon {
  color: #38bdf8;
}

/* RESPONSIVE POLISH */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Tighten card layout on small screens */
@media (max-width: 640px) {
  .page-section {
    padding-inline: 0;
  }

  .section-header {
    text-align: left;
  }

  .carousel-row {
    gap: 0.75rem;
  }

  .card.carousel-card {
    min-width: 240px;
  }

  .player-shell.mini-player-shell {
    padding-inline: 0.75rem;
  }

  .about-content {
    align-items: flex-start;
  }
}

/* Improve multi-column feel on larger screens */
@media (min-width: 900px) {
  .carousel-row {
    justify-content: flex-start;
  }

  .card.carousel-card {
    max-width: 260px;
  }

  #aboutSection .about-content {
    max-width: 520px;
  }
}
