/* ==========================================================================
   RagaNXT Public App CSS
   Cleaned from latest app-old.css: duplicate selector blocks merged
   ========================================================================== */

:root {
  color-scheme: dark;
  --color-gold: #d6a84f;
  --color-brand-gold: #d6a84f;
  --color-brand-gold-light: #f0cd82;
  --color-brand-gold-dark: #8d6428;
  --color-bg-primary: #08090f;
  --color-bg-secondary: #0d0f17;
  --color-bg-tertiary: #131620;
  --color-bg-elevated: #191c27;
  --color-text-primary: #f6f2e9;
  --color-text-secondary: #b8b4ad;
  --color-text-muted: #797982;
  --color-text-inverse: #090a0e;
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-medium: rgba(255, 255, 255, 0.14);
  --color-border-gold: rgba(214, 168, 79, 0.4);
  --sidebar-width: 248px;
  --utility-height: 80px;
  --content-max: 100%;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.4rem;
  --radius-pill: 999px;
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.38);
  --duration-fast: 160ms;
  --duration-normal: 260ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --color-accent-violet: #9b4dca;
  --color-accent-violet-soft: rgba(155, 77, 202, 0.18);
  --glass-bg: rgba(14, 15, 24, 0.68);
  --glass-bg-strong: rgba(14, 15, 23, 0.84);
  --glass-bg-soft: rgba(255, 255, 255, 0.035);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-gold: rgba(214, 168, 79, 0.28);
  --glass-blur: 24px;
  --glass-saturation: 135%;
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --glass-shadow-floating: 0 18px 50px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--color-bg-primary);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-primary);
  font-family: "Poppins", "Noto Sans Devanagari", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background: radial-gradient(
      circle at 14% 4%,
      rgba(58, 48, 106, 0.24),
      transparent 30rem
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(125, 42, 118, 0.16),
      transparent 34rem
    ),
    radial-gradient(
      circle at 56% 82%,
      rgba(214, 168, 79, 0.07),
      transparent 32rem
    ),
    var(--color-bg-primary);
  background-attachment: fixed;
}

/* Premium scrollbars */
html {
  scrollbar-color: rgba(230, 181, 84, 0.5) rgba(255, 255, 255, 0.045);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(244, 206, 125, 0.78),
    rgba(190, 128, 42, 0.72)
  );
  border: 2px solid rgba(8, 9, 15, 0.85);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 220, 145, 0.95),
    rgba(214, 152, 55, 0.88)
  );
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

/* Prevent accidental text/image selection while dragging rails/cards */
.media-rail,
.media-rail *,
.home-section,
.album-card,
.artist-card,
.raga-journey-card,
.collection-card,
.radio-channel-card,
.search-entity-card,
.collection-track-row,
.library-page,
.search-results-page {
  -webkit-user-select: none;
  user-select: none;
}

.media-rail img,
.album-card img,
.artist-card img,
.raga-journey-card img,
.collection-card img,
.radio-channel-card img,
.search-entity-card img,
.collection-track-row img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Keep normal selection inside real text inputs/forms */
input,
textarea,
select,
button,
.site-search,
.site-search *,
.account-page,
.account-page *,
.settings-page,
.settings-page *,
.help-page,
.help-page * {
  -webkit-user-select: auto;
  user-select: auto;
}

[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 88px;
  }
}

h1,h2,h3,h4,h5,h6, strong, b{
    font-weight: 500;
}


/* Keep horizontal content rails visually clean */
.media-rail,
.collection-track-list,
.music-dock-queue__list {
  scrollbar-color: rgba(230, 181, 84, 0.42) transparent;
  scrollbar-width: thin;
}

.media-rail::-webkit-scrollbar {
  height: 0;
}

.collection-track-list::-webkit-scrollbar,
.music-dock-queue__list::-webkit-scrollbar {
  width: 8px;
}

.collection-track-list::-webkit-scrollbar-track,
.music-dock-queue__list::-webkit-scrollbar-track {
  background: transparent;
}

.collection-track-list::-webkit-scrollbar-thumb,
.music-dock-queue__list::-webkit-scrollbar-thumb {
  background: rgba(230, 181, 84, 0.45);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

button, input {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  flex: 0 0 auto;
}

:focus-visible {
  outline: 2px solid var(--color-brand-gold-light);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 1000;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-inverse);
  background: var(--color-brand-gold-light);
  border-radius: var(--radius-md);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
}

.app-workspace {
  min-width: 0;
  margin-left: var(--sidebar-width);
}

.main-workspace {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6) 0;
}

.desktop-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: var(--sidebar-width);
  padding: var(--space-5) var(--space-4);
  overflow-y: auto;
  border-right: 1px solid var(--color-border-gold);
  background: linear-gradient(
      180deg,
      rgba(17, 17, 27, 0.82),
      rgba(8, 9, 15, 0.78)
    );
  border-right-color: var(--glass-border-gold);
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.24),
    inset -1px 0 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
}

body.player-active .desktop-sidebar {
  height: calc(100% - 110px);
}

.desktop-sidebar__brand {
  padding: var(--space-2) var(--space-2) var(--space-8);
}

.brand-lockup {
  display: block;
}

.brand-lockup__image {
  display: block;
  width: 100%;
  max-width: 205px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.sidebar-nav {
  display: grid;
  gap: var(--space-1);
}

.sidebar-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  padding: 0 var(--space-4);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard);
}

.sidebar-nav__link:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-nav__link--active {
  color: var(--color-text-primary);
  background: linear-gradient(
      110deg,
      rgba(214, 168, 79, 0.34),
      rgba(122, 68, 112, 0.16)
    );
  border-color: rgba(240, 205, 130, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 28px rgba(0, 0, 0, 0.16);
}

.sidebar-nav__icon {
  width: 20px;
  height: 20px;
}

.sidebar-nav__badge {
  margin-left: auto;
  padding: 0.15rem 0.45rem;
  color: var(--color-brand-gold-light);
  font-size: 0.62rem;
  background: rgba(214, 168, 79, 0.1);
  border-radius: var(--radius-pill);
}

.sidebar-group {
  margin-top: var(--space-7, 1.75rem);
}

.sidebar-group__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 var(--space-3) var(--space-3);
  color: var(--color-brand-gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sidebar-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border-gold);
}

.top-utility-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--utility-height);
  padding: var(--space-3) var(--space-6);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr) auto;
  align-items: center;
  gap: var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
  background: linear-gradient(
      180deg,
      rgba(14, 15, 24, 0.8),
      rgba(10, 11, 18, 0.66)
    );
  border-bottom-color: var(--glass-border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
}

.top-utility-bar__menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.top-utility-bar__greeting {
  display: grid;
  min-width: 0;
}

.top-utility-bar__greeting strong {
  color: var(--color-brand-gold-light);
  font-size: 1rem;
  font-weight: 500;
}

.top-utility-bar__greeting span {
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-search {
  min-width: 0;
  height: 44px;
  padding: 0 var(--space-3);
  padding-right: var(--space-1);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
}

.site-search:focus-within {
  border-color: rgba(240, 205, 130, 0.48);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.site-search__icon {
  color: var(--color-brand-gold-light);
  display: none;
}

.site-search__icon svg,
.site-search__submit svg,
.site-search__voice svg {
  width: 19px;
  height: 19px;
}

.site-search input {
  width: 100%;
  min-width: 0;
  color: var(--color-text-primary);
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search input::placeholder {
  color: var(--color-text-muted);
}

.site-search__submit,
.site-search__voice {
  padding: var(--space-2);
  color: var(--color-text-secondary);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.site-search__submit:hover,
.site-search__submit:focus-visible,
.site-search__voice:hover {
  color: var(--color-brand-gold-light);
}

.top-utility-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
}

.language-switcher a {
  padding: 0.25rem 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  border-radius: var(--radius-pill);
}

.language-switcher a:hover, .language-switcher a[aria-current="true"] {
  color: var(--color-text-inverse);
  background: var(--color-brand-gold-light);
}

.utility-icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border-subtle);
  border-radius: 50%;
  cursor: pointer;
}

.utility-icon-button:hover {
  color: var(--color-brand-gold-light);
  border-color: var(--color-border-gold);
}

.utility-icon-button svg {
  width: 19px;
  height: 19px;
}

.account-access {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-right: var(--space-2);
}

.account-access__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-brand-gold-light);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
}

.account-access__avatar svg {
  width: 19px;
  height: 19px;
}

.account-access__name {
  font-size: 0.8rem;
  font-weight: 500;
}

.account-access__chevron {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  display: none;
}

.account-profile-form {
  display: grid;
  gap: 1rem;
}

.account-profile-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.account-profile-form input,
.account-profile-form select,
.account-profile-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #fffaf0;
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 0.8rem 0.9rem;
}

.account-profile-form select option {
  color: #000;
}

.account-profile-form textarea {
  resize: vertical;
}

.account-profile-form input:focus,
.account-profile-form select:focus,
.account-profile-form textarea:focus {
  border-color: rgba(230, 181, 84, 0.72);
  box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.12);
}

.account-profile-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-profile-form__checkbox {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
}

.account-profile-form__checkbox input {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: #e6b554;
}

.account-profile-form button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3cf7a, #e7b957);
  color: #16110a;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.85rem 1.2rem;
}

.account-page__notice--error {
  border-color: rgba(255, 120, 120, 0.35);
  background: rgba(255, 80, 80, 0.08);
  color: #ffd0d0;
}

.account-page__notice--error p {
  margin: 0;
}
.account-profile-summary {
  display: grid;
  gap: 1rem;
}

.account-profile-edit-toggle,
.account-profile-form__cancel {
  width: fit-content;
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 999px;
  background: rgba(230, 181, 84, 0.1);
  color: #f5cf78;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  padding: 0.75rem 1rem;
}

.account-profile-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-profile-form__cancel {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
}
.account-profile-form[hidden],
.account-profile-summary[hidden] {
  display: none !important;
}


.homepage-sections {
  display: grid;
  gap: var(--space-4);
}

.homepage-state {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  background: linear-gradient(
      140deg,
      rgba(40, 24, 55, 0.56),
      rgba(15, 17, 26, 0.7)
    );
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
}

.homepage-state--inline {
  min-height: auto;
  place-items: start;
  padding: var(--space-4);
  text-align: left;
}

.homepage-loading {
  display: grid;
  gap: var(--space-4);
}

.hero-stage--loading,
.home-section--loading {
  pointer-events: none;
}

.skeleton-line,
.skeleton-card__art,
.skeleton-card__title,
.skeleton-card__meta {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.055)
  );
  background-size: 220% 100%;
  border-radius: var(--radius-md);
  animation: skeleton-shimmer 1.45s var(--ease-standard) infinite;
}

.skeleton-line--eyebrow {
  width: 120px;
  height: 12px;
  margin-bottom: var(--space-3);
}

.skeleton-line--title {
  width: min(100%, 620px);
  height: clamp(32px, 4vw, 48px);
  margin-bottom: var(--space-2);
}

.skeleton-line--title-short {
  width: min(72%, 440px);
  height: clamp(32px, 4vw, 48px);
  margin-bottom: var(--space-3);
}

.skeleton-line--subtitle {
  width: min(86%, 540px);
  height: 18px;
  margin-bottom: var(--space-4);
}

.skeleton-line--button {
  width: 132px;
  height: 44px;
  border-radius: var(--radius-pill);
}

.skeleton-rail {
  cursor: default;
}

.skeleton-card {
  min-width: 0;
  scroll-snap-align: start;
}

.skeleton-card__art {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: var(--space-3);
}

.skeleton-card__title {
  width: 84%;
  height: 14px;
  margin-bottom: var(--space-2);
}

.skeleton-card__meta {
  width: 56%;
  height: 12px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.hero-stage {
  position: relative;
  overflow: hidden;
  touch-action: pan-x pan-y;
  user-select: none;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  border-color: var(--glass-border-gold);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  min-height: 0;
}

.hero-stage--dragging {
  cursor: grabbing;
}

.hero-stage--dragging a,
.hero-stage--dragging button {
  pointer-events: none;
}

.hero-stage__slides {
  position: relative;
  inset: auto;
  display: grid;
}

.hero-stage__slide {
  display: grid;
  align-items: center;
  padding: var(--space-10) var(--space-10);
  visibility: hidden;
  opacity: 0;
  transition: opacity 600ms var(--ease-standard),
    visibility 600ms var(--ease-standard);
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
  min-height: 310px;
  pointer-events: none;
}

.hero-stage__slide--active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-stage__image, .hero-stage__overlay, .hero-stage__fallback-art {
  position: absolute;
  inset: 0;
}

.hero-stage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__overlay {
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(8, 7, 14, 0.98) 0%,
      rgba(17, 8, 27, 0.9) 38%,
      rgba(10, 8, 16, 0.42) 72%,
      rgba(7, 7, 11, 0.22) 100%
    );
}

.hero-stage__content {
  position: relative;
  z-index: 3;
  max-width: 690px;
  height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.hero-stage__eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--color-brand-gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage__title {
  max-width: 760px;
  margin: 0 0 var(--space-1);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-stage__subtitle {
  max-width: 590px;
  margin: 0 0 var(--space-6);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.2;
}

.hero-stage__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--space-6);
  color: var(--color-text-inverse);
  font-size: 0.92rem;
  font-weight: 500;
  background: linear-gradient(
      135deg,
      var(--color-brand-gold-light),
      var(--color-brand-gold)
    );
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(214, 168, 79, 0.18);
  transition: transform var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.hero-stage__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(214, 168, 79, 0.26);
}

.hero-stage__fallback-art {
  overflow: hidden;
  background: radial-gradient(
      circle at 82% 50%,
      rgba(220, 135, 45, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 64% 20%,
      rgba(90, 25, 105, 0.35),
      transparent 32%
    ),
    linear-gradient(
      120deg,
      #12091c,
      #100b17 55%,
      #08090f
    );
}

.hero-stage__ring {
  position: absolute;
  right: 10%;
  top: 50%;
  border: 1px solid rgba(240, 205, 130, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-stage__ring--outer {
  width: 260px;
  height: 260px;
}

.hero-stage__ring--inner {
  right: calc(10% + 48px);
  width: 164px;
  height: 164px;
  background: radial-gradient(
      circle,
      rgba(214, 168, 79, 0.18),
      transparent 68%
    );
}

.hero-stage__note-line {
  position: absolute;
  right: 5%;
  width: 36%;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(240, 205, 130, 0.34),
      transparent
    );
  transform: rotate(-12deg);
}

.hero-stage__note-line--one {
  top: 38%;
}

.hero-stage__note-line--two {
  top: 50%;
}

.hero-stage__note-line--three {
  top: 62%;
}

.hero-stage__dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
  transform: translateX(-50%);
  padding: 0.38rem 0.55rem;
  background: rgba(8, 9, 15, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-stage__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: width var(--duration-normal) var(--ease-standard),
    background var(--duration-normal) var(--ease-standard);
}

.hero-stage__dot--active {
  width: 32px;
  background: var(--color-brand-gold-light);
}

.sidebar-backdrop, .mobile-bottom-nav {
  display: none;
}

.site-search, .language-switcher {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 30px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.utility-icon-button, .account-access__avatar, .top-utility-bar__menu {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    );
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 8px 24px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(255, 255, 255, 0.018);
}

.sidebar-backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-stage__title, .hero-stage__subtitle {
  overflow-wrap: anywhere;
}

.home-section {
  min-width: 0;
  padding: var(--space-4);
  background: linear-gradient(
      145deg,
      rgba(25, 25, 38, 0.68),
      rgba(11, 13, 21, 0.64)
    );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur))
    saturate(var(--glass-saturation));
}

.home-section__header {
  margin-bottom: var(--space-3);
  display: flex;
align-items: center;
justify-content: space-between;
}
a.home-section__link {
    color: #e6b554;
}

.home-section__title {
  margin: 0;
  color: var(--color-brand-gold-light);
  font-size: 1rem;
  font-weight: 500;
}

.media-rail {
    touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, 14vw, 190px);
  gap: var(--space-3);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  cursor: grab;
}

.media-rail::-webkit-scrollbar {
  display: none;
}

.media-rail.media-rail--dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.media-rail.media-rail--dragging a,
.media-rail.media-rail--dragging img {
  user-select: none;
  -webkit-user-drag: none;
}

.video-rail {
  grid-auto-columns: clamp(220px, 22vw, 310px);
}

.video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );
  color: var(--color-text-primary);
  text-decoration: none;
}

.video-card__artwork {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(230, 181, 84, 0.28),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.04);
}

.video-card__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__artwork::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(8, 9, 15, 0.72)
    );
}

.video-card__play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      rgba(230, 181, 84, 0.95),
      rgba(216, 95, 176, 0.9)
    );
  color: #111018;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.video-card__content {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem;
}

.video-card__title {
  overflow: hidden;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-card__meta {
  overflow: hidden;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-card:hover {
  border-color: rgba(230, 181, 84, 0.5);
  transform: translateY(-2px);
}

.album-card {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 32px rgba(0, 0, 0, 0.2);
}

.album-card__artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  display: block;
  width: 100%;
  min-height: 0;
}

.album-card__artwork img, .album-card__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.album-card__artwork img {
  z-index: 2;
  object-fit: cover;
}

.album-card__fallback {
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle at 70% 25%,
      rgba(214, 168, 79, 0.24),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #32152f,
      #171326 55%,
      #0e1018
    );
}

.album-card__fallback-ring {
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 205, 130, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(240, 205, 130, 0.035),
    0 0 0 28px rgba(240, 205, 130, 0.02);
}

.album-card__fallback-line {
  position: absolute;
  width: 78%;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(240, 205, 130, 0.46),
      transparent
    );
  transform: rotate(-30deg);
}

.album-card__content {
  padding: var(--space-3);
}

.album-card__title {
  margin: 0;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 0.88rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.album-card__artist {
  margin: 0.2rem 0 0;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-dock[hidden] {
  display: none !important;
}

.music-dock {
  position: fixed;
  inset: auto var(--space-3) var(--space-3);
  z-index: 200;
  min-height: 82px;
  padding: var(--space-3) var(--space-4);
  display: grid;
  grid-template-columns: minmax(220px, 300px)
    minmax(340px, 1fr)
    minmax(180px, 240px);
  align-items: center;
  gap: var(--space-5);
  background: linear-gradient(
      145deg,
      rgba(28, 26, 39, 0.9),
      rgba(10, 12, 19, 0.9)
    );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow-floating);
  -webkit-backdrop-filter: blur(30px)
    saturate(145%);
  backdrop-filter: blur(30px)
    saturate(145%);
}

.music-dock__track {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.music-dock__artwork {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.music-dock__artwork img, .music-dock__artwork-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.music-dock__artwork img {
  z-index: 2;
  object-fit: cover;
}

.music-dock__artwork-fallback {
  display: grid;
  place-items: center;
  color: var(--color-brand-gold-light);
  font-weight: 600;
  background: radial-gradient(
      circle at 70% 20%,
      rgba(214, 168, 79, 0.24),
      transparent 38%
    ),
    #171321;
}

.music-dock__metadata {
  min-width: 0;
  display: grid;
}

.music-dock__metadata strong, .music-dock__metadata > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-dock__metadata strong {
  font-size: 0.8rem;
  font-weight: 500;
}

.music-dock__metadata > span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.music-dock__playback {
  min-width: 0;
  display: grid;
  gap: var(--space-2);
}

.music-dock__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.music-dock button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--color-text-primary);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.music-dock button:disabled {
  color: var(--color-text-muted);
  cursor: default;
  opacity: 0.45;
}

.music-dock button svg {
  width: 19px;
  height: 19px;
}

.music-dock .music-dock__play-toggle {
  width: 44px;
  height: 44px;
  color: var(--color-text-inverse);
  background: linear-gradient(
      135deg,
      var(--color-brand-gold-light),
      #c04bb1
    );
  box-shadow: 0 10px 28px rgba(155, 77, 202, 0.25);
}

.music-dock__timeline {
  display: grid;
  grid-template-columns: 40px minmax(100px, 1fr) 40px;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
.music-dock__timeline span[data-player-current-time] {
    text-align: right;
}

.music-dock input[type="range"] {
  width: 100%;
  accent-color: var(--color-brand-gold-light);
  cursor: pointer;
}

.music-dock__utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

.music-dock__volume {
  min-width: 110px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.music-dock__volume svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-secondary);
}

.music-dock__mute-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  place-items: center;
}

.music-dock__mute-toggle:hover {
  color: var(--color-accent);
}

.album-card__play {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: white;
  background: linear-gradient(
      135deg,
      var(--color-brand-gold),
      #b43faa
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.album-card__play:hover {
  transform: scale(1.07);
}



.album-card__progress {
  height: 3px;
  margin-top: var(--space-3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.album-card__progress span {
  display: block;
  height: 100%;
  background: linear-gradient(
      90deg,
      var(--color-brand-gold),
      #c04bb1
    );
  border-radius: inherit;
}

.home-section--raga-feature {
  min-width: 0;
}

.raga-feature {
  position: relative;
  min-height: 267px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  background: linear-gradient(
      145deg,
      rgba(54, 22, 65, 0.82),
      rgba(15, 15, 27, 0.86)
    );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.raga-feature__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.raga-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /*background: linear-gradient(*/
  /*    180deg,*/
  /*    rgba(10, 9, 18, 0.08),*/
  /*    rgba(10, 9, 18, 0.92)*/
  /*  );*/
}

.raga-feature__content {
  position: relative;
  z-index: 3;
  max-width: 34rem;
}

.raga-feature__eyebrow {
  margin: 0;
  color: var(--color-brand-gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.raga-feature__title {
  margin: 0;
  color: var(--color-brand-gold-light);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 500;
}

.raga-feature__metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--space-2);
}

.raga-feature__metadata span {
    padding: 7px 11px;
    border: 0;
    border-left: 1px solid rgba(230, 181, 84, 0.32);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 232, 182, 0.76);
    font-size: 0.88rem;
    line-height: 1;
}
.raga-feature__metadata span:first-child{
  border-left: 0;
  padding-left:0;
}

.raga-feature__description {
  max-width: 32rem;
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
  font-size: 0.83rem;
}

.raga-feature__artwork {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
}

.raga-feature__moon {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(240, 205, 130, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(214, 168, 79, 0.14),
    inset 16px -8px 0 rgba(8, 9, 15, 0.5);
}

.raga-feature__string {
  position: absolute;
  right: 3%;
  width: 44%;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(240, 205, 130, 0.28),
      transparent
    );
  transform: rotate(-62deg);
}

.raga-feature__string--one {
  top: 30%;
}

.raga-feature__string--two {
  top: 46%;
}

.raga-feature__string--three {
  top: 62%;
}

.artist-rail {
  align-items: stretch;
}

.artist-card {
  flex: 0 0 154px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  transition: transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  color: inherit;
  text-decoration: none;
}

.artist-card:hover {
  transform: translateY(0px);
  border-color: rgba(229, 177, 78, 0.3);
  background: rgba(229, 177, 78, 0.055);
}

.artist-card__portrait {
  position: relative;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: #100c18;
}
.artist-card__portrait:after{
    content:"";
    display: block;
    width:100%;
    padding-bottom: 100%;
}

.artist-card__portrait img, .artist-card__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.artist-card__portrait img {
  z-index: 2;
  display: block;
  object-fit: cover;
}

.artist-card__fallback {
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle at 50% 38%,
      rgba(216, 151, 61, 0.3),
      transparent 34%
    ),
    linear-gradient(145deg, #24152d, #0c0a12);
}

.artist-card__fallback-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(230, 181, 84, 0.3);
  border-radius: 50%;
}

.artist-card__initial {
  position: relative;
  z-index: 1;
  color: #ebc56e;
  font-size: 2rem;
  font-weight: 500;
}

.artist-card__content {
  padding: var(--space-3) 0.75rem;
}

.artist-card__name, .artist-card__type {
  margin: 0;
}

.artist-card__name {
    margin: 0;
    overflow: hidden;
    color: var(--color-text-primary);
    font-size: 0.88rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-card__type {
    margin: 0.2rem 0 0;
    overflow: hidden;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.raga-journey-card {
  position: relative;
  flex: 0 0 clamp(290px, 32vw, 420px);
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(229, 177, 78, 0.2);
  border-radius: 18px;
  background: #100b18;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.raga-journey-card__image, .raga-journey-card__fallback, .raga-journey-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.raga-journey-card__image {
  z-index: 1;
  object-fit: cover;
}

.raga-journey-card__fallback {
  background: radial-gradient(
      circle at 78% 35%,
      rgba(220, 143, 48, 0.3),
      transparent 27%
    ),
    linear-gradient(135deg, #2a1533, #100b18 58%, #1c100c);
}

.raga-journey-card__ring {
  position: absolute;
  top: 28px;
  right: 42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(237, 192, 101, 0.25);
  border-radius: 50%;
}

.raga-journey-card__line {
  position: absolute;
  right: -20px;
  bottom: 46px;
  width: 210px;
  height: 1px;
  background: rgba(237, 192, 101, 0.25);
  transform: rotate(-18deg);
}

.raga-journey-card__overlay {
  z-index: 2;
  background: linear-gradient(
      90deg,
      rgba(10, 8, 15, 0.96),
      rgba(10, 8, 15, 0.68) 62%,
      rgba(10, 8, 15, 0.2)
    );
}

.raga-journey-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 210px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

.raga-journey-card__eyebrow, .raga-journey-card__title, .raga-journey-card__mood {
  margin: 0;
}

.raga-journey-card__eyebrow {
  color: #e8bd65;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.raga-journey-card__title {
  margin-top: 0.35rem;
  color: #fff9ee;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

.raga-journey-card__mood {
  margin-top: 0.35rem;
  color: rgba(245, 239, 247, 0.72);
  font-size: 0.75rem;
}

.raga-journey-card__play {
    position: absolute;
    right: var(--space-3);
    bottom: var(--space-3);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: white;
    background: linear-gradient(135deg, var(--color-brand-gold), #b43faa);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-standard);
}
.raga-journey-card__play:hover{
    transform: scale(1.07);
}

.raga-journey-card__play.is-current-track {
    color: #130d18;
    background: linear-gradient(135deg, #f3c762, #d85eb4);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(239, 198, 110, 0.24),
        0 0 28px rgba(216, 94, 180, 0.35),
        0 14px 32px rgba(0, 0, 0, 0.42);
}

.raga-journey-card__play.is-playing {
    animation: raganxt-active-pulse 1.7s ease-in-out infinite;
}

.raga-journey-card:has(.raga-journey-card__play.is-current-track) {
    border-color: rgba(239, 198, 110, 0.76);
    box-shadow:
        0 0 0 1px rgba(239, 198, 110, 0.22),
        0 20px 46px rgba(0, 0, 0, 0.42);
}

.raga-journey-card:has(.raga-journey-card__play.is-current-track)::after {
    opacity: 0.82;
}

@keyframes raganxt-active-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.raga-journey-card--active {
    border-color: rgba(239, 198, 110, 0.76);
    box-shadow:
        0 0 0 1px rgba(239, 198, 110, 0.22),
        0 20px 46px rgba(0, 0, 0, 0.42);
}

.raga-journey-card--playing .raga-journey-card__play {
    animation: raganxt-active-pulse 1.7s ease-in-out infinite;
}

.collection-card {
  position: relative;
  flex: 0 0 clamp(260px, 27vw, 350px);
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #110c18;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease,
    border-color 180ms ease;
  color: inherit;
  text-decoration: none;
}

.collection-card:hover {
  transform: translateY(0px);
  border-color: rgba(230, 181, 84, 0.35);
}

.collection-card__image, .collection-card__fallback, .collection-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-card__image {
  z-index: 1;
  object-fit: cover;
}

.collection-card__fallback {
  background: radial-gradient(
      circle at 75% 30%,
      rgba(214, 129, 45, 0.32),
      transparent 28%
    ),
    linear-gradient(135deg, #30162d, #110c18);
}

.collection-card__circle {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(238, 191, 96, 0.28);
  border-radius: 50%;
}

.collection-card__line {
  position: absolute;
  right: -15px;
  bottom: 34px;
  width: 180px;
  height: 1px;
  background: rgba(238, 191, 96, 0.25);
  transform: rotate(-16deg);
}

.collection-card__overlay {
  z-index: 2;
  background: linear-gradient(
      90deg,
      rgba(8, 7, 13, 0.95),
      rgba(8, 7, 13, 0.62) 66%,
      transparent
    );
}

.collection-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.15rem;
    height: 100%;
}

.collection-card__type, .collection-card__title, .collection-card__count {
  margin: 0;
}

.collection-card__type {
  color: #e6b554;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.collection-card__title {
  margin-top: 0.35rem;
  color: #fff9ee;
  font-size: 1rem;
  line-height: 1.25;
}

.collection-card__count {
  margin-top: 0.35rem;
  color: rgba(245, 239, 247, 0.7);
  font-size: 0.74rem;
  position: absolute;
  bottom: 1.15rem;
  left: 1.15rem;
}

.collection-detail-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.22);
  border-radius: 24px;
  background: #100b18;
}

.collection-detail-hero__image, .collection-detail-hero__fallback, .collection-detail-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-detail-hero__image {
  z-index: 1;
  object-fit: cover;
}

.collection-detail-hero__fallback {
  background: radial-gradient(
      circle at 78% 35%,
      rgba(220, 143, 48, 0.3),
      transparent 26%
    ),
    linear-gradient(135deg, #30162d, #100b18);
}

.collection-detail-hero__fallback span {
  position: absolute;
  top: 60px;
  right: 90px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(238, 191, 96, 0.25);
  border-radius: 50%;
}

.collection-detail-hero__overlay {
  z-index: 2;
  background: linear-gradient(
      90deg,
      rgba(8, 7, 13, 0.98),
      rgba(8, 7, 13, 0.72) 58%,
      rgba(8, 7, 13, 0.2)
    );
}

.collection-detail-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--space-10) var(--space-10);
}

.collection-detail-hero__type, .collection-detail-hero__content h1, .collection-detail-hero__description, .collection-detail-hero__count {
  margin: 0;
}

.collection-detail-hero__type {
    color: var(--color-brand-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
}

.collection-detail-hero__content h1 {
    color: #fffaf1;
    max-width: 760px;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 var(--space-1);
}

.collection-detail-hero__description {
    max-width: 720px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    margin: 0 0 var(--space-6);
}

.collection-detail-hero__count {
    color: rgba(255, 255, 255, 0.48);
    font-size: 80%;
}

.collection-detail-state {
  display: grid;
  min-height: 50vh;
  place-items: center;
  align-content: center;
  gap: 1rem;
  text-align: center;
}

.collection-detail-state a {
  color: #e6b554;
}

.collection-detail-section {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem;
}

.collection-detail-section > h2 {
  margin: 0 0 1rem;
  color: #f0cc79;
  font-size: 1rem;
}

.collection-detail-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 25%), 1fr));
  gap: 0.75rem;
}

.collection-track-list {
  display: grid;
  gap: 0.55rem;
}

.collection-track-row {
  display: grid;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.55rem;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
}

.collection-track-row__artwork {
  display: grid;
  width: 54px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #321629, #120d19);
  color: #e6b554;
}

.collection-track-row__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-track-row__metadata {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.collection-track-row__metadata strong, .collection-track-row__metadata > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-track-row__metadata strong {
  color: #f5f1f7;
  font-size: 0.84rem;
}

.collection-track-row__metadata > span, .collection-track-row__duration {
  color: #918c99;
  font-size: 0.72rem;
}

.collection-track-row__play {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(230, 181, 84, 0.35);
  border-radius: 50%;
  background: rgba(230, 181, 84, 0.1);
  color: #efc66e;
  cursor: pointer;
  place-items: center;
}

.collection-detail-empty {
  margin-top: 1.25rem;
  color: #918c99;
  text-align: center;
}

.artist-detail-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 24px;
  background: radial-gradient(
      circle at 18% 35%,
      rgba(210, 126, 44, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, #17101e, #090810);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.artist-detail-hero__portrait {
  position: relative;
  width: min(100%, 150px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.3);
  border-radius: 50%;
  background: #100b18;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
}

.artist-detail-hero__portrait img, .artist-detail-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.artist-detail-hero__portrait img {
  z-index: 2;
  object-fit: cover;
}

.artist-detail-hero__fallback {
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle,
      rgba(218, 143, 50, 0.28),
      transparent 48%
    ),
    linear-gradient(145deg, #2b1731, #100b18);
  color: #e8bd65;
  font-size: 4rem;
  font-weight: 500;
}

.artist-detail-hero__content > p, .artist-detail-hero__content h1, .artist-detail-hero__content span {
  margin: 0;
}

.artist-detail-hero__content > p {
  color: #e6b554;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-detail-hero__content h1 {
  margin-top: 0.45rem;
  color: #fff9ee;
  font-size: 2rem;
  line-height: 1.05;
}

.artist-detail-hero__biography {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(245, 239, 247, 0.75);
  line-height: 1.75;
}

.artist-detail-hero__content span {
  display: block;
  margin-top: 1rem;
  color: #e8bd65;
  font-size: 0.8rem;
}

[data-track-control].is-current-track {
  border-color: rgba(244, 193, 88, 0.75);
  background: linear-gradient(135deg, #f0c66b, #bf6b36);
  color: #160d08;
  box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.12);
}

.album-card:has([data-track-control].is-current-track), .collection-track-row:has([data-track-control].is-current-track), .raga-journey-card:has([data-track-control].is-current-track) {
  border-color: rgba(230, 181, 84, 0.48);
  background-color: rgba(230, 181, 84, 0.06);
  box-shadow: 0 0 0 1px rgba(230, 181, 84, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

[data-track-control].is-playing {
  animation: raganxt-playing-pulse 1.8s ease-in-out infinite;
}

.album-detail-hero {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 26px;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(191, 107, 54, 0.2),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      rgba(25, 20, 31, 0.94),
      rgba(9, 10, 17, 0.96)
    );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.album-detail-hero__artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.22);
  border-radius: 22px;
  background: #11121a;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.38);
}

.album-detail-hero__artwork > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-detail-hero__content {
  min-width: 0;
  padding-bottom: 8px;
}

.album-detail-hero__content > p {
  margin: 0 0 12px;
  color: var(--color-gold, #e6b554);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-detail-hero__content h1 {
  max-width: 850px;
  margin: 0 0 14px;
  color: #fffaf1;
  font-size: 2.2rem;
  line-height: 0.98;
}

.album-detail-hero__artist {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  text-decoration: none;
}

.album-detail-hero__artist:hover, .album-detail-hero__artist:focus-visible {
  color: #efc86f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.album-detail-hero__metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 22px;
}
.album-detail-hero__metadata span:first-child {
    padding-left: 0;
    border-left: 0;
}

.album-detail-hero__metadata span {
  padding: 7px 11px;
  border: 0;
  border-left: 1px solid rgba(230, 181, 84, 0.32);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 232, 182, 0.76);
  font-size: 0.88rem;
  line-height: 1;
}

.album-card__title a {
  color: inherit;
  text-decoration: none;
}

.album-card__title a:hover, .album-card__title a:focus-visible {
  color: #efc86f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.raga-detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(230, 181, 84, 0.22);
    border-radius: 26px;
    background: radial-gradient(circle at 18% 35%, rgba(111, 40, 118, 0.28), transparent 38%), radial-gradient(circle at 85% 15%, rgba(191, 107, 54, 0.18), transparent 34%), linear-gradient(135deg, rgba(20, 15, 29, 0.96), rgba(8, 9, 15, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.raga-detail-hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.24);
  border-radius: 50%;
  background: rgba(12, 12, 20, 0.75);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4),
    inset 0 0 60px rgba(230, 181, 84, 0.08);
}

.raga-detail-hero__visual > img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.raga-detail-hero__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: repeating-radial-gradient(
      circle,
      transparent 0 28px,
      rgba(230, 181, 84, 0.1) 29px 30px
    );
}

.raga-detail-hero__fallback span {
  width: 32%;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 181, 84, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(230, 181, 84, 0.16);
}

.raga-detail-hero__content {
  min-width: 0;
}

.raga-detail-hero__content > p:first-child {
    color: #e6b554;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.raga-detail-hero__content h1 {
    margin: 0;
    color: #fffaf1;
    font-size: 2rem;
    line-height: 1.05;
    margin-top: 0.45rem;
}

.raga-detail-hero__alternate {
    margin: 0;
    font-size: 1rem;
    margin-top: 1rem;
    color: rgba(245, 239, 247, 0.75);
    line-height: 1.75;
}

.raga-detail-hero__metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 22px;
}

.raga-detail-hero__metadata span {
  padding: 7px 11px;
  border: 0;
  border-left: 1px solid rgba(230, 181, 84, 0.32);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 232, 182, 0.78);
  font-size: 0.88rem;
  line-height: 1;
}
.raga-detail-hero__metadata span:first-child {
    border-left: 0;
    padding-left: 0;
}

.raga-detail-hero__description {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.raga-detail-hero__editorial {
  max-width: 760px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 0;
  border-left: 2px solid #e6b554;
  border-radius: 0 14px 14px 0;
  background: rgba(230, 181, 84, 0.07);
  color: rgba(255, 244, 218, 0.84);
  line-height: 1.65;
}

.raga-feature__title a, .raga-journey-card__title a {
  color: inherit;
  text-decoration: none;
}

.raga-feature__title a:hover, .raga-feature__title a:focus-visible, .raga-journey-card__title a:hover, .raga-journey-card__title a:focus-visible {
  color: #efc86f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-results-page__header {
  padding: var(--space-10) var(--space-10);
  margin-bottom: 18px;
  border: 1px solid rgba(230, 181, 84, 0.18);
  border-radius: 24px;
  background: radial-gradient(
      circle at 85% 15%,
      rgba(191, 107, 54, 0.15),
      transparent 35%
    ),
    rgba(16, 17, 26, 0.78);
}

.search-results-page__header p {
    margin: 0;
    color: var(--color-brand-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
}

.search-results-page__header h1 {
    color: #fffaf1;
    max-width: 760px;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 var(--space-1);
}

.search-results-page__header span {
    max-width: 720px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    margin: 0 0 var(--space-6);
}

.search-results-empty {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(17, 18, 27, 0.72);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
}

.search-entity-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(min(180px, 25%), 1fr)
  );
  gap: 14px;
}

.search-entity-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(17, 18, 27, 0.74);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
    overflow: hidden;
}

.search-entity-card__artwork {
    position: relative;
    display: grid;
    width: calc(100% + 24px);
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle, rgba(230, 181, 84, 0.18), transparent 55%), #11121a;
    color: #e6b554;
    font-size: 2.3rem;
    font-weight: 600;
    margin: -12px;
    margin-bottom: 5px;
}

.search-entity-card__artwork--raga {
  border-radius: 0%;
}

.search-entity-card__artwork img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-entity-card strong {
  overflow: hidden;
  color: #fffaf1;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
}
.search-entity-card--static strong span {
    color: inherit !important;
}
.search-entity-card__artwork-content > span {
    font-size: 0.78rem;
}

.search-entity-card > span,
.settings-card-button > span:last-child{
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.library-page__header {
  display: grid;
  padding: var(--space-10) var(--space-10);
  margin-bottom: 18px;
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 26px;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(111, 40, 118, 0.25),
      transparent 38%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(191, 107, 54, 0.16),
      transparent 35%
    ),
    rgba(15, 16, 25, 0.84);
}

.library-page__header p {
    color: var(--color-brand-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
}

.library-page__header h1 {
    color: #fffaf1;
    max-width: 760px;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 var(--space-1);
}

.library-page__header span {
    max-width: 720px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    margin: 0 0 var(--space-6);
}

.library-page__header small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 80%;
}

.radio-channel-rail {
  grid-auto-columns: min(520px, 88vw);
  gap: 14px;
}

.radio-channel-card {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.18);
  border-radius: 20px;
  background: radial-gradient(
      circle at 15% 50%,
      rgba(191, 107, 54, 0.2),
      transparent 40%
    ),
    rgba(16, 17, 26, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.radio-channel-card--active {
  border-color: rgba(239, 198, 110, 0.78);
  background:
    radial-gradient(circle at 18% 24%, rgba(239, 198, 110, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(230, 181, 84, 0.16), rgba(215, 91, 178, 0.08));
  box-shadow:
    0 0 0 1px rgba(239, 198, 110, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.34);
}

.radio-channel-card--active .radio-channel-card__play {
  background: #e6b554;
  color: #150d08;
}

.home-section--radio-rail .radio-channel-rail .radio-channel-card {
  grid-template-columns: 42px 100px auto;
}

.radio-channel-card__artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.18);
  border-radius: 15px;
  background: #11121a;
}

.radio-channel-card__artwork img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.radio-channel-card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.radio-channel-card__signal {
  width: 3px;
  height: 28px;
  border-radius: 999px;
  background: #e6b554;
}

.radio-channel-card__signal:first-child {
  height: 15px;
}

.radio-channel-card__signal:last-child {
  height: 40px;
}

.radio-channel-card__content {
  min-width: 0;
}

.radio-channel-card__type {
  margin: 0 0 6px;
  color: #e6b554;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.radio-channel-card__title {
  margin: 0;
  overflow: hidden;
  color: #fffaf1;
  font-size: 1.12rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-channel-card__description {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.radio-channel-card__metadata {
  margin: 9px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-channel-card__play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(230, 181, 84, 0.45);
  border-radius: 50%;
  background: rgba(230, 181, 84, 0.1);
  color: #f0c66b;
  cursor: pointer;
}

.radio-channel-card__play:hover, .radio-channel-card__play:focus-visible {
  background: #e6b554;
  color: #150d08;
}

.radio-channel-card:has( [data-track-control].is-current-track ) {
  border-color: rgba(230, 181, 84, 0.52);
  background-color: rgba(230, 181, 84, 0.07);
}

.radio-page__header {
  display: grid;
  padding: var(--space-10) var(--space-10);
  margin-bottom: 18px;
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 26px;
  background: radial-gradient(
      circle at 82% 18%,
      rgba(191, 107, 54, 0.2),
      transparent 38%
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(111, 40, 118, 0.24),
      transparent 36%
    ),
    rgba(15, 16, 25, 0.86);
}

.radio-page__header p {
    margin: 0;
    color: var(--color-brand-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
}

.radio-page__header h1 {
    margin: 0;
    color: #fffaf1;
    max-width: 760px;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 var(--space-1);
}

.radio-page__header span {
    max-width: 720px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    margin: 0 0 var(--space-6);
}

.radio-page__header small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 80%;
}

.radio-page__grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(420px, 100%), 1fr)
  );
  gap: 14px;
}

.radio-page__grid .radio-channel-card {
  width: 100%;
  min-width: 0;
}

.music-dock__controls button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  filter: grayscale(1);
}

.music-dock__loading-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  height: 44px;
}

.music-dock__loading-status:not([hidden]) + .music-dock__controls {
  display: none;
}

.music-dock__loading-status[hidden] {
  display: none;
}

.music-dock__loading-status > span {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(230, 181, 84, 0.25);
  border-top-color: #e6b554;
  border-radius: 50%;
  animation: raganxt-buffering-spin 700ms linear infinite;
}

.music-dock--loading [data-player-play-icon], .music-dock--loading [data-player-pause-icon] {
  visibility: hidden;
}

.music-dock--loading .music-dock__play-toggle {
  position: relative;
}

.music-dock--loading .music-dock__play-toggle::after {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(21, 13, 8, 0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  content: "";
  animation: raganxt-buffering-spin 700ms linear infinite;
}

.music-dock-queue[hidden] {
  display: none;
}

.music-dock-queue {
  position: fixed;
  right: 18px;
  bottom: 108px;
  z-index: 1200;
  display: flex;
  width: min(390px, calc(100vw - 24px));
  max-height: min(520px, 62vh);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.25);
  border-radius: 22px;
  background: linear-gradient(
      145deg,
      rgba(29, 25, 36, 0.96),
      rgba(10, 11, 18, 0.97)
    );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px) saturate(135%);
}

.music-dock-queue__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.music-dock-queue__header > div {
  display: grid;
  gap: 3px;
}

.music-dock-queue__header span {
  color: #e6b554;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.music-dock-queue__header button span {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1;
}

.music-dock-queue__header strong {
  color: #fffaf1;
  font-size: 1rem;
}

.music-dock-queue__header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.music-dock-queue__header button:hover, .music-dock-queue__header button:focus-visible {
  border-color: rgba(230, 181, 84, 0.42);
  color: #efc86f;
}

.music-dock-queue__list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  list-style: none;
}

.music-dock-queue__item button {
  display: grid;
  width: 100%;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.music-dock-queue__item button:hover, .music-dock-queue__item button:focus-visible {
  border-color: rgba(230, 181, 84, 0.25);
  background: rgba(230, 181, 84, 0.06);
}

.music-dock-queue__item--current button {
  border-color: rgba(230, 181, 84, 0.4);
  background: rgba(230, 181, 84, 0.1);
}

.music-dock-queue__position {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.music-dock-queue__item--current .music-dock-queue__position {
  background: #e6b554;
  color: #160d08;
}

.music-dock-queue__metadata {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.music-dock-queue__metadata strong, .music-dock-queue__metadata small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-dock-queue__metadata strong {
  color: #fffaf1;
  font-size: 0.82rem;
}

.music-dock-queue__metadata small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.music-dock-queue__empty {
  margin: 0;
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.music-dock-queue__empty[hidden] {
  display: none;
}

.collection-track-row__download {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 181, 84, 0.26);
  border-radius: 999px;
  color: var(--color-gold);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.collection-track-row__download:hover, .collection-track-row__download:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(230, 181, 84, 0.48);
  background: linear-gradient(
      145deg,
      rgba(230, 181, 84, 0.18),
      rgba(255, 255, 255, 0.05)
    );
}

.collection-track-row__download svg {
  width: 19px;
  height: 19px;
}

.album-card__download {
  position: absolute;
  right: var(--space-3);
  bottom: 64px;
  z-index: 4;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 999px;
  color: var(--color-gold);
  background: linear-gradient(145deg, rgba(16, 17, 26, 0.74), rgba(16, 17, 26, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.album-card__download:hover, .album-card__download:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(230, 181, 84, 0.5);
  background: linear-gradient(
      145deg,
      rgba(230, 181, 84, 0.2),
      rgba(16, 17, 26, 0.5)
    );
}

.album-card__download svg {
  width: 18px;
  height: 18px;
}

.radio-channel-card__download {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 999px;
  color: var(--color-gold);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.radio-channel-card__download:hover, .radio-channel-card__download:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(230, 181, 84, 0.48);
  background: linear-gradient(
      145deg,
      rgba(230, 181, 84, 0.18),
      rgba(255, 255, 255, 0.05)
    );
}

.radio-channel-card__download svg {
  width: 19px;
  height: 19px;
}

.account-auth-page, .account-page {
  min-height: calc(100vh - 92px);
}

.account-auth-page {
  display: grid;
  place-items: start center;
  padding-top: clamp(1.2rem, 4vw, 3.5rem);
}

.account-auth-card, .account-page__hero, .account-page__panel, .account-page__notice {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.account-auth-card {
  width: min(100%, 520px);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.account-auth-card__eyebrow, .account-page__hero p {
    margin: 0 0 12px;
    color: var(--color-gold, #e6b554);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.account-auth-card h1, .account-page__hero h1 {
    max-width: 850px;
    margin: 0 0 14px;
    color: #fffaf1;
    font-size: 2.2rem;
    line-height: 0.98;
}

.account-auth-card__intro, .account-auth-card__switch, .account-page__hero span, .account-page__panel p, .account-page__panel dd {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    text-decoration: none;
    gap: 10px;
    margin: 0;
}
p.account-auth-card__switch {
    margin-top: 15px;
}

.account-auth-card__errors {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 88, 88, 0.28);
  border-radius: 18px;
  background: rgba(255, 88, 88, 0.08);
  padding: 0.9rem 1rem;
  color: #ffb4b4;
}

.account-auth-card__errors p {
  margin: 0;
}

.account-auth-card__notice {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  border: 1px solid rgba(246, 207, 112, 0.36);
  border-radius: 18px;
  background: rgba(246, 207, 112, 0.1);
  padding: 0.9rem 1rem;
  color: #f6cf70;
}

.account-auth-card__notice p {
  margin: 0;
}

.account-auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.account-auth-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--color-text);
  font-weight: 600;
}

.account-auth-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 6, 12, 0.62);
  color: var(--color-text);
  padding: 0.9rem 1rem;
  outline: none;
}

.account-auth-form input:focus {
  border-color: rgba(230, 181, 84, 0.5);
  box-shadow: 0 0 0 4px rgba(230, 181, 84, 0.12);
}

.account-auth-form button, .account-page__panel button, .account-page__actions a {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4cf7b, #c9902e);
  color: #17120a;
  padding: 0.62rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.account-auth-form button {
    margin-top: 10px;
}
button.password-field__toggle {
    padding: 7px;
    color: inherit !important;
    font-weight: normal !important;
    line-height: 1;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    min-height: auto !important;
    margin: 0 !important;
}
.account-auth-card__switch a {
  color: var(--color-gold);
  font-weight: 500;
}

.account-page__hero {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: start;
    gap: clamp(24px, 4vw, 52px);
    padding: clamp(24px, 4vw, 48px);
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(230, 181, 84, 0.2);
    border-radius: 26px;
    background: radial-gradient(circle at 15% 15%, rgba(191, 107, 54, 0.2), transparent 40%), linear-gradient(135deg, rgba(25, 20, 31, 0.94), rgba(9, 10, 17, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.account-page__avatar {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 1px solid rgba(230, 181, 84, 0.4);
  border-radius: 32px;
  background: radial-gradient(
      circle at 35% 20%,
      rgba(230, 181, 84, 0.42),
      rgba(94, 45, 145, 0.2) 44%,
      rgba(8, 9, 15, 0.82)
    );
  color: var(--color-gold);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

.account-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.account-page__chips span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.account-page__notice {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-color: rgba(99, 214, 147, 0.3);
  border-radius: 20px;
  color: #aef1c8;
  padding: 1rem;
}

.account-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.account-page__panel {
  border-radius: 24px;
  padding: 1.15rem;
}

.account-page__panel h2 {
  margin: 0 0 0.85rem;
  color: var(--color-text);
}

.account-page__panel dl {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.account-page__panel dt {
  color: var(--color-gold);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.account-page__panel dd {
  margin: 0.25rem 0 0;
}

.account-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.collection-track-row__favorite {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 181, 84, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.collection-track-row__favorite:hover, .collection-track-row__favorite:focus-visible, .collection-track-row__favorite.is-favorite {
  color: #ff6f9f;
  border-color: rgba(255, 111, 159, 0.5);
  background: linear-gradient(
      145deg,
      rgba(255, 111, 159, 0.2),
      rgba(255, 255, 255, 0.04)
    );
}

.collection-track-row__favorite:hover, .collection-track-row__favorite:focus-visible {
  transform: translateY(-1px);
}

.collection-track-row__favorite svg {
  width: 19px;
  height: 19px;
}

.collection-track-row__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: flex-end;
}

.collection-track-row__actions .collection-track-row__play, .collection-track-row__actions .collection-track-row__favorite, .collection-track-row__actions .collection-track-row__download {
  flex: 0 0 auto;
}

.collection-track-row__download-placeholder, .collection-track-row__favorite-placeholder {
  display: none;
}

.account-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.account-panel h2 {
  margin: 0 0 1rem;
  color: #f6d98b;
  font-size: 1.05rem;
}

.account-form {
  display: grid;
  gap: 1rem;
}

.account-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
}

.account-form input, .account-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(7, 8, 14, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  outline: none;
  padding: 0.85rem 1rem;
}

.account-form textarea {
  resize: vertical;
  min-height: 96px;
}

.account-form input:focus, .account-form textarea:focus {
  border-color: rgba(230, 181, 84, 0.58);
  box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.12);
}

.account-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1c86a, #c98f2d);
  color: #150f08;
  cursor: pointer;
  font-weight: 500;
    padding: 0.62rem 0.85rem;
    font-size: 0.8rem;
}

.account-notice, .account-error {
  border-radius: 16px;
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
}

.account-notice {
  border: 1px solid rgba(129, 230, 164, 0.25);
  background: rgba(57, 181, 104, 0.11);
  color: #a8f0bf;
}

.account-error {
  border: 1px solid rgba(255, 116, 116, 0.25);
  background: rgba(255, 82, 82, 0.1);
  color: #ffb2b2;
}

.playlist-add-menu {
  position: relative;
  display: inline-flex;
}

.playlist-add-menu__list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  display: none;
  min-width: 180px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(13, 14, 22, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  padding: 0.35rem;
}

.playlist-add-menu:focus-within .playlist-add-menu__list {
  display: grid;
}

.playlist-add-menu__list button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.playlist-add-menu__list button:hover, .playlist-add-menu__list button:focus-visible {
  background: rgba(230, 181, 84, 0.14);
  color: #f6d98b;
}

.playlist-add-menu__list button.is-added {
  color: #a8f0bf;
}

.playlist-remove-form {
  display: inline-flex;
  margin: 0;
}

.collection-track-row__remove {
  border-color: rgba(255, 105, 105, 0.32);
  background: rgba(255, 105, 105, 0.08);
  color: #ff9b9b;
}

.collection-track-row__remove:hover, .collection-track-row__remove:focus-visible {
  border-color: rgba(255, 135, 135, 0.58);
  background: rgba(255, 105, 105, 0.16);
  color: #ffd0d0;
}

.playlist-edit-form {
    display: grid;
    max-width: 620px;
    width: 100%;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 1rem;
}

.playlist-edit-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.playlist-edit-form input, .playlist-edit-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(4, 5, 10, 0.58);
  color: #fffaf0;
  font: inherit;
  padding: 0.75rem 0.85rem;
  outline: none;
}

.playlist-edit-form input:focus, .playlist-edit-form textarea:focus {
  border-color: rgba(230, 181, 84, 0.62);
  box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.12);
}

.playlist-edit-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2cd79, #c8832f);
  color: #160f07;
  cursor: pointer;
  font-weight: 500;
  padding: 0.62rem 0.85rem;
  font-size: 0.8rem;
}

.playlist-hero-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.playlist-edit-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 50%;
  background: rgba(230, 181, 84, 0.1);
  color: #efc66e;
  cursor: pointer;
  place-items: center;
}

.playlist-edit-toggle:hover, .playlist-edit-toggle:focus-visible {
  border-color: rgba(230, 181, 84, 0.56);
  background: rgba(230, 181, 84, 0.18);
}

.playlist-edit-form[hidden] {
  display: none;
}

.playlist-edit-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.playlist-edit-form__cancel {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.playlist-delete-form {
    position: absolute;
    top: 10px;
    right: 10px;
}

.playlist-delete-form__button {
    border: 1px solid rgba(255, 105, 105, 0.34);
    border-radius: 999px;
    background: rgba(255, 105, 105, 0.08);
    color: #ffaaaa;
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    padding: 0.62rem 0.85rem;
    font-size: 0.8rem;
}

.playlist-delete-form__button:hover, .playlist-delete-form__button:focus-visible {
  border-color: rgba(255, 135, 135, 0.6);
  background: rgba(255, 105, 105, 0.16);
  color: #ffd0d0;
}

.settings-card-button {
  display: grid;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  gap: 7px;
  padding: 0;
}

.search-entity-card--static {
  pointer-events: none;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  min-height: auto;
  padding: 1rem 1.1rem;
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(
      135deg,
      rgba(230, 181, 84, 0.06),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: none;
}

.search-entity-card--static:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  transform: none;
}

.search-entity-card--tour {
  appearance: none;
  background: rgba(17, 18, 27, 0.74);
  border-color: rgba(255, 255, 255, 0.09);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

.search-entity-card--tour .search-entity-card__artwork {
  opacity: 1;
}

.utility-icon-button--disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.utility-icon-button--disabled:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.music-dock__utility-link, .music-dock__playlist-menu > button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--color-text-primary);
  border: 0;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.music-dock__utility-link:hover, .music-dock__utility-link:focus-visible, .music-dock__playlist-menu > button:hover, .music-dock__playlist-menu > button:focus-visible, .music-dock [data-player-favorite-toggle]:hover, .music-dock [data-player-favorite-toggle]:focus-visible,
.music-dock [data-player-queue-toggle]:hover, .music-dock [data-player-queue-toggle]:focus-visible,
.music-dock [data-player-expand]:hover, .music-dock [data-player-expand]:focus-visible {
  color: var(--color-brand-gold-light);
}

.music-dock [data-player-favorite-toggle].is-favorite {
  color: #ff6f9f;
}

.music-dock__utility-link[hidden] {
  display: none;
}

.music-dock__utility-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.music-dock__playlist-menu {
  position: relative;
  display: inline-grid;
}

.music-dock__playlist-list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 30;
  display: none;
  min-width: 190px;
  max-width: min(260px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(28, 22, 38, 0.96),
    rgba(8, 10, 16, 0.96)
  );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px) saturate(140%);
}

.music-dock__playlist-menu.is-open .music-dock__playlist-list, .music-dock__playlist-menu:focus-within .music-dock__playlist-list {
  display: grid;
  gap: 4px;
}

.music-dock__playlist-list button {
  width: 100%;
  height: auto;
  min-height: 36px;
  justify-content: start;
  padding: 8px 10px;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
}

.music-dock__playlist-list button:hover, .music-dock__playlist-list button:focus-visible {
  color: #f6d98b;
  background: rgba(230, 181, 84, 0.14);
}

.music-dock__playlist-list button.is-added {
  color: #a8f0bf;
}

.now-playing[hidden] {
  display: none !important;
}

.now-playing {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(191, 70, 171, 0.2),
      transparent 34%
    ),
    rgba(5, 6, 12, 0.74);
  backdrop-filter: blur(28px) saturate(145%);
}

.now-playing__panel {
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: linear-gradient(
      145deg,
      rgba(38, 30, 42, 0.88),
      rgba(8, 10, 17, 0.92)
    );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.now-playing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fffaf1;
  font-weight: 600;
}

.now-playing__header button, .now-playing__metadata button, .now-playing__controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fffaf1;
  background: transparent;
  cursor: pointer;
}
.now-playing__header button span {
    font-size: 1.6rem;
}

.now-playing__header button:hover, .now-playing__header button:focus-visible, .now-playing__metadata button:hover, .now-playing__metadata button:focus-visible, .now-playing__controls button:hover, .now-playing__controls button:focus-visible {
  color: #f6d98b;
  background: rgba(230, 181, 84, 0.1);
}

.now-playing__artwork {
  position: relative;
  aspect-ratio: 1;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.18);
  border-radius: 18px;
  background: #171321;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

.now-playing__artwork img, .now-playing__artwork-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.now-playing__artwork img {
  z-index: 2;
  object-fit: cover;
  object-position: top center;
}

.now-playing__artwork-fallback {
  display: grid;
  place-items: center;
  color: #f3ce76;
  font-size: 4rem;
  font-weight: 500;
  background: radial-gradient(
      circle at 60% 30%,
      rgba(230, 181, 84, 0.26),
      transparent 34%
    ),
    linear-gradient(145deg, #231629, #080a12);
}

.now-playing__metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.now-playing__metadata > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.now-playing__metadata strong, .now-playing__metadata span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing__metadata strong {
  color: #fffaf1;
  font-size: 1.15rem;
}

.now-playing__metadata span {
  color: rgba(255, 255, 255, 0.68);
}

.now-playing__metadata button.is-favorite {
  color: #ff6f9f;
  background: rgba(255, 111, 159, 0.12);
}

.now-playing__timeline {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.now-playing__timeline input {
  width: 100%;
  accent-color: #d45cc8;
}

.now-playing__time {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.now-playing__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
}

.now-playing__controls button:disabled {
  cursor: default;
  opacity: 0.4;
}

.now-playing__play-toggle {
  width: 58px !important;
  height: 58px !important;
  color: #fffaf1 !important;
  background: linear-gradient(
      135deg,
      var(--color-brand-gold),
      #c04bb1
    ) !important;
  box-shadow: 0 16px 34px rgba(192, 75, 177, 0.32);
}

body.now-playing-open {
  overflow: hidden;
}

.search-start-panel {
  display: grid;
  min-height: 320px;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: radial-gradient(
      circle at 50% 20%,
      rgba(230, 181, 84, 0.16),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
}

.search-start-panel__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  place-items: center;
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 50%;
  color: #efc66e;
  background: rgba(230, 181, 84, 0.08);
}

.search-start-panel__icon svg {
  width: 32px;
  height: 32px;
}

.search-start-panel h2 {
  margin: 0;
  color: var(--color-text-primary);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.search-start-panel p {
  max-width: 520px;
  margin: 0.7rem 0 1.3rem;
  color: var(--color-text-muted);
}

.search-start-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #17100a;
  font-weight: 500;
  text-decoration: none;
}

.site-search__voice--listening {
  color: #efc66e;
  background: rgba(230, 181, 84, 0.12);
  box-shadow: 0 0 0 6px rgba(230, 181, 84, 0.08);
}

.site-search__voice:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.search-entity-grid:has(.search-entity-card--static) {
  grid-template-columns: 1fr;
}

.search-entity-card--static:hover, .search-entity-card--static:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(
      135deg,
      rgba(230, 181, 84, 0.06),
      rgba(255, 255, 255, 0.018)
    );
}

.search-entity-card--static .search-entity-card__artwork {
  aspect-ratio: 1;
  opacity: 0.78;
  background: radial-gradient(
      circle,
      rgba(230, 181, 84, 0.14),
      rgba(255, 255, 255, 0.025) 64%
    );
}

.search-entity-card--static strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.search-entity-card--static span:not(.search-entity-card__artwork) {
  color: rgba(255, 255, 255, 0.58);
}

.search-entity-card__artwork-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@keyframes raganxt-playing-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.1);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(230, 181, 84, 0.18);
  }
}

@keyframes raganxt-buffering-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes raganxt-dock-marquee {
  0%,
  18% {
    transform: translateX(0);
  }

  82%,
  100% {
    transform: translateX(-28%);
  }
}

/* ==========================================================================
   Videos Page — YouTube-style layout
   ========================================================================== */

.videos-page {
  display: grid;
  gap: var(--space-4);
  padding-bottom: 0;
}

.videos-page__header {
  margin-bottom: 0;
}

.videos-watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: var(--space-3);
  align-items: start;
}

.videos-watch-main {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}

.videos-player {
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.16);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.videos-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-current-info {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );
  padding: 1rem;
}

.videos-current-info h2 {
  margin: 0;
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.videos-current-description {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.videos-youtube-link {
  display: inline-flex;
  margin-top: 1rem;
  border: 1px solid rgba(230, 181, 84, 0.34);
  border-radius: 999px;
  background: rgba(230, 181, 84, 0.1);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
}

.videos-current-playlist {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
}

.videos-current-playlist__header {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem;
}

.videos-current-playlist__header strong {
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.videos-current-playlist__header span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.videos-current-playlist__list {
  display: grid;
  max-height: 520px;
  overflow: auto;
  padding: 0.45rem;
}

.videos-playlist-row {
  display: grid;
  grid-template-columns: 24px 92px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  border-radius: 13px;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.45rem;
}

.videos-playlist-row:hover,
.videos-playlist-row--active {
  background: rgba(230, 181, 84, 0.12);
}

.videos-playlist-row__number {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 500;
  text-align: center;
}

.videos-playlist-row img {
  width: 92px;
  border-radius: 9px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.videos-playlist-row__content {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.videos-playlist-row__content strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 0.78rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.videos-playlist-row__content small {
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.videos-playlist-gallery {
  display: grid;
  gap: var(--space-3);
  border: 1px solid rgba(230, 181, 84, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.018)
    );
  padding: var(--space-3);
}

.videos-playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--space-3);
}

.videos-playlist-card {
  display: grid;
  gap: 0.65rem;
  color: var(--color-text-primary);
  text-decoration: none;
}

.videos-playlist-card__thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 181, 84, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 16 / 9;
}

.videos-playlist-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.videos-playlist-card:hover .videos-playlist-card__thumb img {
  transform: scale(1.04);
}

.videos-playlist-card__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0, 0, 0, 0.72)
    );
}

.videos-playlist-card__thumb span {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 1;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
}

.videos-playlist-card__content {
  display: grid;
  gap: 0.18rem;
  padding: 0 0.15rem;
}

.videos-playlist-card__content strong {
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 0.92rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.videos-playlist-card__content small {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.videos-description-toggle {
  display: inline-flex;
  margin-top: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0;
}

.videos-description-toggle:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Global Toasts
   ========================================================================== */

.app-toast-region {
  position: fixed;
  top: calc(var(--space-4) + env(safe-area-inset-top));
  right: var(--space-4);
  z-index: 1800;
  display: grid;
  width:auto;
  gap: var(--space-2);
  pointer-events: none;
}

.app-toast {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  padding: 0.85rem 0.9rem;
  color: var(--color-text-primary);
  background:
    linear-gradient(
      145deg,
      rgba(31, 29, 43, 0.94),
      rgba(13, 14, 22, 0.94)
    );
  border: 1px solid rgba(230, 181, 84, 0.24);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-10px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.app-toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.app-toast--leaving {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
}

.app-toast__icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand-gold-light);
  box-shadow: 0 0 18px rgba(230, 181, 84, 0.5);
}

.app-toast--success .app-toast__icon {
  background: #76d391;
  box-shadow: 0 0 18px rgba(118, 211, 145, 0.45);
}

.app-toast--error .app-toast__icon {
  background: #ff7a90;
  box-shadow: 0 0 18px rgba(255, 122, 144, 0.45);
}

.app-toast--info .app-toast__icon {
  background: var(--color-brand-gold-light);
}

.app-toast__message {
  min-width: 0;
  color: var(--color-text-primary);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.app-toast__close {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  place-items: center;
}

.app-toast__close:hover,
.app-toast__close:focus-visible {
  color: var(--color-text-primary);
  border-color: rgba(230, 181, 84, 0.35);
}

button.is-loading,
a.is-loading {
  cursor: wait;
  opacity: 0.75;
  pointer-events: none;
  position: relative;
}

button.is-loading svg,
a.is-loading svg {
    display: none;    
}

button.is-loading::after,
a.is-loading::after {
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.5rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  display: inline-block;
  vertical-align: -0.12em;
  animation: raganxt-button-spin 700ms linear infinite;
  transform: rotate(0deg);
}

@keyframes raganxt-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
    position: relative;
    z-index: 2;
    margin-left: var(--sidebar-width);
    padding: var(--space-4) var(--space-5) calc(var(--space-4) + 0px);
    color: var(--color-text-muted);
}
body.player-active .site-footer {
    padding-bottom: calc(var(--space-4) + 110px);
}

.site-footer__inner {
    display: grid;
    gap: var(--space-4);
    max-width: 100%;
    margin: 0 auto;
    padding: var(--space-5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 10% 0%, rgba(230, 181, 84, 0.12), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(180, 63, 170, 0.12), transparent 34%),
        rgba(16, 17, 26, 0.78);
    box-shadow: var(--shadow-soft);
}

.site-footer__brand {
    display: grid;
    gap: 0.35rem;
}

.site-footer__brand strong {
    color: var(--color-text-primary);
    font-size: 1.12rem;
}

.site-footer__brand span,
.site-footer__copyright {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
}

.site-footer__social,
.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.site-footer__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(230, 181, 84, 0.22);
    border-radius: 50%;
    color: var(--color-brand-gold);
    background: rgba(230, 181, 84, 0.08);
    transition:
        transform var(--duration-fast) var(--ease-standard),
        border-color var(--duration-fast) var(--ease-standard),
        background var(--duration-fast) var(--ease-standard);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(230, 181, 84, 0.55);
    background: rgba(230, 181, 84, 0.14);
}

.site-footer__social svg {
    width: 19px;
    height: 19px;
}

.site-footer__links a {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-standard);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--color-brand-gold);
}

/* ==========================================================================
   Legal / Static Content Pages
   ========================================================================== */

.legal-page {
    display: grid;
    gap: var(--space-5);
}

.legal-page__hero,
.legal-page__content {
    border: 1px solid rgba(230, 181, 84, 0.2);
    border-radius: 26px;
    background: radial-gradient(circle at 82% 18%, rgba(191, 107, 54, 0.2), transparent 38%), radial-gradient(circle at 12% 80%, rgba(111, 40, 118, 0.24), transparent 36%), rgba(15, 16, 25, 0.86);
}

.legal-page__hero {
    display: grid;
    padding: var(--space-10) var(--space-10);
    border: 1px solid rgba(230, 181, 84, 0.2);
    border-radius: 26px;
    background: radial-gradient(circle at 82% 18%, rgba(191, 107, 54, 0.2), transparent 38%), radial-gradient(circle at 12% 80%, rgba(111, 40, 118, 0.24), transparent 36%), rgba(15, 16, 25, 0.86);
}

.legal-page__hero p {
    margin: 0;
    color: var(--color-brand-gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
}

.legal-page__hero h1 {
    margin: 0;
    color: #fffaf1;
    max-width: 760px;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 var(--space-1);
}

.legal-page__hero span {
    max-width: 720px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    margin: 0;
}

.legal-page__content {
    display: grid;
    gap: var(--space-4);
    max-width: 100%;
    padding: clamp(1.3rem, 3vw, 2.2rem);
}

.legal-page__content h2 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.5rem;
}

.legal-page__content p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: normal;
}

.contact-form {
    display: grid;
    gap: var(--space-4);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.contact-form label {
    display: grid;
    gap: 0.55rem;
}

.contact-form label span {
    color: var(--color-brand-gold);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
    color: var(--color-text-primary);
    font: inherit;
    outline: none;
    padding: 0.9rem 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(230, 181, 84, 0.5);
    box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.12);
}

.contact-form__submit {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-brand-gold), #f7d88c);
    color: #18110a;
    cursor: pointer;
    font-weight: 500;
    padding: 0.9rem 1.35rem;
}

.contact-form__notice {
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    font-weight: 700;
}

.contact-form__notice--success {
    border: 1px solid rgba(99, 211, 140, 0.35);
    background: rgba(99, 211, 140, 0.12);
    color: #9ff0ba;
}

.contact-form__notice--error {
    border: 1px solid rgba(255, 111, 111, 0.35);
    background: rgba(255, 111, 111, 0.12);
    color: #ffb4b4;
}

@media (max-width: 700px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__submit {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .legal-page {
        gap: var(--space-4);
    }

    .legal-page__hero {
        padding: var(--space-5);
        border-radius: var(--radius-lg);
    }

    .legal-page__content {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
    }
    .legal-page__content h2{
        font-size: 1.2rem;
    }
    .legal-page__content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .site-footer {
        margin-left: 0;
        padding: var(--space-4) var(--space-6) 95px;
    }
    body.player-active .site-footer {
        padding-bottom: 180px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-right: var(--space-4);
        padding-left: var(--space-4);
    }

    .site-footer__inner {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
        gap: var(--space-2);
    }

    .site-footer__links {
        gap: 0.5rem;
    }
    .site-footer__social a {
        width: 30px;
        height: 30px;
    }
    .site-footer__social svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 640px) {
  .app-toast-region {
    top: calc(var(--space-3) + env(safe-area-inset-top));
    right: var(--space-3);
    left: var(--space-3);
    width: auto;
  }

  .app-toast {
    border-radius: 14px;
  }
}

@media (max-width: 1180px) {
  .videos-watch-layout {
    grid-template-columns: 1fr;
  }

  .videos-current-playlist {
    position: static;
  }

  .videos-current-playlist__list {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .videos-watch-layout {
    gap: var(--space-2);
  }

  .videos-current-info,
  .videos-current-playlist,
  .videos-playlist-gallery {
    border-radius: 16px;
  }

  .videos-playlist-row {
    grid-template-columns: 22px 86px minmax(0, 1fr);
  }

  .videos-playlist-row img {
    width: 86px;
  }

  .videos-playlist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px){
    .hero-stage__slide {
      min-height: 250px;
    }
}

@media (max-width: 1280px) {
  .top-utility-bar {
    grid-template-columns: minmax(180px, 0.6fr) minmax(280px, 1fr) auto;
    gap: var(--space-4);
  }

  .language-switcher {
    display: none;
  }

}

@media (max-width: 1024px) {
  .desktop-sidebar {
    transform: translateX(-100%);
    z-index: 120;
    transition: transform var(--duration-normal) var(--ease-standard);
  }

  .app-workspace {
    margin-left: 0;
  }

  .top-utility-bar {
    grid-template-columns: auto minmax(185px, 1fr) auto;
  }

  .top-utility-bar__menu {
    display: grid;
  }

  .top-utility-bar__greeting {
    display: none;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  body.sidebar-open .desktop-sidebar {
    transform: translateX(0);
  }
  
  body.sidebar-open .music-dock{
      display: none;
  }
  
  body.player-active .desktop-sidebar {
      height: calc(100% - 0px);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.68);
    border: 0;
    backdrop-filter: blur(4px);
    transition: opacity var(--duration-normal) var(--ease-standard),
      visibility var(--duration-normal) var(--ease-standard);
  }

  body.sidebar-open .sidebar-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 100;
    padding: var(--space-2)
      max(var(--space-2), env(safe-area-inset-right))
      calc(var(--space-2) + env(safe-area-inset-bottom))
      max(var(--space-2), env(safe-area-inset-left));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    border-top: 1px solid var(--color-border-gold);
    inset: auto
      var(--space-3)
      calc(var(--space-3) + env(safe-area-inset-bottom))
      var(--space-3);
    min-height: 68px;
    background: linear-gradient(
        145deg,
        rgba(27, 25, 40, 0.86),
        rgba(12, 13, 21, 0.88)
      );
    border: 1px solid var(--glass-border);
    border-radius: 1.4rem;
    box-shadow: var(--glass-shadow-floating);
    -webkit-backdrop-filter: blur(28px)
      saturate(145%);
    backdrop-filter: blur(28px)
      saturate(145%);
  }

  .mobile-bottom-nav__link {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    color: var(--color-text-muted);
    font-size: 0.6rem;
  }

  .mobile-bottom-nav__link svg {
    width: 21px;
    height: 21px;
  }

  .mobile-bottom-nav__link:hover, .mobile-bottom-nav__link--active {
    color: var(--color-brand-gold-light);
  }

  .music-dock {
    inset: auto
      var(--space-3)
      calc(94px + env(safe-area-inset-bottom))
      var(--space-3);
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr)
      auto
      auto;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.75rem;
  }

  .music-dock__playback {
    display: grid;
    min-width: 140px;
    justify-self: center;
  }

  .music-dock__controls button:not(.music-dock__play-toggle), .music-dock__timeline span, .music-dock__utilities {
    display: none;
  }

  .music-dock__timeline {
    position: absolute;
    inset: auto var(--space-4) 6px;
    display: none !important;
  }

  .music-dock__timeline input {
    display: block;
    margin: 0;
  }



  .music-dock__artwork {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .music-dock__metadata {
    max-width: min(48vw, 280px);
  }

  .music-dock__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .music-dock__controls button:not(.music-dock__play-toggle) {
    display: grid;
  }

  .music-dock__utilities {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .music-dock__volume {
    display: none !important;
  }
    .radio-channel-rail {
        grid-auto-columns: min(400px, 88vw);
    }
}

@media (max-width: 640px) {
  .top-utility-bar {
    min-height: 68px;
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .top-utility-bar__actions {
    gap: var(--space-2);
  }

  .utility-icon-button, .account-access__name, .account-access__chevron {
    display: none;
  }

  .account-access__avatar {
    width: 36px;
    height: 36px;
  }

  .main-workspace {
    padding: var(--space-3) var(--space-4) 0rem;
  }

  .homepage-state {
    min-height: 240px;
    padding: var(--space-6);
    text-align: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-track-control].is-playing {
    animation: none;
  }

  .music-dock__loading-status > span, .music-dock--loading .music-dock__play-toggle::after {
    animation-duration: 1.5s;
  }

}

@media (max-width: 767px) {
  .hero-stage {
    min-height: 0;
  }

  .hero-stage__slide {
    padding: var(--space-6) var(--space-6) var(--space-12);
    min-height: 220px;
  }

  .hero-stage__fallback-art {
    opacity: 0.65;
  }

  .hero-stage__ring--outer {
    right: -22%;
  }

  .hero-stage__ring--inner {
    right: -4%;
  }

.hero-stage__eyebrow {
    margin: 0 0 var(--space-1);
}
.hero-stage__title {
    margin: 0 0 var(--space-2);
}
.hero-stage__subtitle {
    margin: 0 0 var(--space-3);
}
.hero-stage__cta {
    min-height: 30px;
    padding: 0 var(--space-3);
}

  .home-section {
    padding: var(--space-3);
  }

    .media-rail {
          touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
grid-auto-columns: 150px;
    }
    .album-card__play {
        right: var(--space-1);
        bottom: var(--space-1);
    }
    .album-card__download {
        right: 40px;
        bottom: var(--space-1);
    }
    .album-card__play,
    .radio-channel-card__download,
    .album-card__download,
    .collection-track-row__download, 
    .collection-track-row__favorite, 
    .collection-track-row__play,
    .playlist-edit-toggle{
        width: 30px;
        height: 30px;
    }
    .album-card__play svg,
    .radio-channel-card__download svg,
    .album-card__download svg,
    .collection-track-row__download svg, 
    .collection-track-row__favorite svg, 
    .collection-track-row__play svg,
    .playlist-edit-toggle svg{
        width: 16px;
        height: 16px;
    }
    .collection-track-row__artwork {
        width: 40px;
        height: 40px;
    }
    .collection-track-row {
        grid-template-columns: 40px minmax(0, 1fr) auto;
    }
    .collection-track-row__duration {
        display: none;
      }

    .album-card__content {
        padding: var(--space-2);
    }
    .album-card__title {
        font-size: 0.68rem;
    }
    .album-card__artist {
        font-size: 0.58rem;
    }
    .album-card__progress {
        margin-top: var(--space-1);
    }
.raga-feature {
    min-height: 200px;
}
.raga-feature__content {
    max-width: 100%;
}
.collection-card {
    min-height: 130px;
}
.collection-card__content {
    padding: var(--space-3);
}
.collection-card__type {
    font-size: 0.54rem;
}
.collection-card__title {
    font-size: 0.8rem;
}
.collection-card__count {
    font-size: 0.54rem;
    bottom: var(--space-3);
    left: var(--space-3);
}
    .radio-channel-rail {
        grid-auto-columns: min(400px, 70vw);
    }
  .artist-card {
    flex-basis: 138px;
  }

.artist-card__content {
    padding: var(--space-2);
}
.artist-card__name {
    font-size: 0.68rem;
}
.artist-card__type {
    font-size: 0.58rem;
}

.raga-journey-card__eyebrow {
    font-size: 0.54rem;
}
.raga-journey-card__title {
    font-size: 0.8rem;
}
.raga-journey-card__mood {
    font-size: 0.58rem;
}
.raga-journey-card__play {
    width: 30px;
    height: 30px;
}
.raga-journey-card__play svg {
    width: 16px;
    height: 16px;
}

.raga-journey-card {
    min-height: 160px;
}
.raga-journey-card__content {
    min-height: 160px;
    padding-bottom: 50px;
}

.radio-channel-card__type {
    font-size: 0.54rem;
}
.radio-channel-card__title {
    font-size: 0.8rem;
}
.radio-channel-card__description {
    font-size: 0.68rem;
}
.radio-channel-card__metadata {
    font-size: 0.58rem;
    margin: 6px 0 0;
}
.radio-channel-card__play,
.video-card__play{
    width: 30px;
    height: 30px;
}
.video-card__play{
    right: var(--space-1);
    bottom: var(--space-1);
}
.radio-channel-card__play svg,
.video-card__play svg{
    width: 16px;
    height: 16px;
}
.home-section--radio-rail .radio-channel-rail .radio-channel-card {
    grid-template-columns: 30px 100px auto auto;
    gap: 10px;
    min-height: 120px;
}

  .music-dock-queue {
    right: 12px;
    bottom: 154px;
    left: 12px;
    width: auto;
    max-height: 52vh;
  }
    .radio-page__header,
    .library-page__header,
    .collection-detail-hero__content,
    .search-results-page__header{
        padding: var(--space-6);
    }
    .radio-page__header p,
    .library-page__header p,
    .collection-detail-hero__type,
    .search-results-page__header p{
        margin: 0 0 var(--space-1);
    }
    .radio-page__header h1,
    .library-page__header h1,
    .collection-detail-hero__content h1,
    .search-results-page__header h1{
        margin: 0 0 var(--space-2);
    }
    .radio-page__header span,
    .library-page__header span,
    .collection-detail-hero__description,
    .search-results-page__header span{
        margin: 0 0 var(--space-3);
    }
    .search-entity-card strong {
        font-size: 0.68rem;
    }
    .search-entity-card > span,
    .settings-card-button > span:last-child{
        font-size: 0.58rem;
    }
    
  .artist-detail-hero,
  .album-detail-hero,
  .raga-detail-hero,
  .account-page__hero{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .artist-detail-hero__portrait,
  .album-detail-hero__artwork,
  .raga-detail-hero__visual,
  .account-page__avatar{
    width: 100px;
    height: 100px;
    margin-inline: auto;
  }
    .album-detail-hero__content > p,
    .account-auth-card__eyebrow, 
    .account-page__hero p{
        margin: 0 0 0.45rem;
    }
    .artist-detail-hero__content h1,
    .album-detail-hero__content h1,
    .raga-detail-hero__content h1,
    .account-auth-card h1, 
    .account-page__hero h1{
        font-size: 1.5rem;
    }
    .album-detail-hero__content h1 {
        margin-bottom: 0.5rem;
    }
    .artist-detail-hero__biography {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        line-height: normal;
    }
  .artist-detail-hero__content > p {
    text-align: center;
  }
  .artist-detail-hero__content span {
        margin-top: 0.5rem;
    }
    .album-detail-hero__artist,
    .account-auth-card__intro, 
    .account-auth-card__switch, 
    .account-page__hero span, 
    .account-page__panel p, 
    .account-page__panel dd{
        font-size: 0.8rem;
        line-height: normal;
    }
    .album-detail-hero__metadata,
    .raga-detail-hero__metadata,
    .account-page__chips{
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }
    .album-detail-hero__metadata span,
    .raga-detail-hero__metadata span,
    .album-detail-hero__artist, 
    .account-auth-card__intro, 
    .account-auth-card__switch, 
    .account-page__hero span, 
    .account-page__panel p, 
    .account-page__panel dd{
        padding: 5px 10px;
        font-size: 0.68rem;
    }
    .album-detail-hero__metadata span,
    .raga-detail-hero__metadata span {
        border-radius: 0;
        background: transparent;
    }
    .raga-detail-hero__alternate {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        line-height: normal;
    }
    .raga-detail-hero__description {
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: normal;
    }
    .raga-detail-hero__editorial {
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: normal;
        padding: 10px 15px;
    }
    .search-entity-card__artwork {
        font-size: 1.5rem;
    }
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
  
    .account-page__grid {
        grid-template-columns: 1fr;
    }
.account-auth-form button, .account-page__panel button, .account-page__actions a,
.account-form button,
.playlist-edit-form button{
    min-height: 0;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
}
  .account-profile-form__grid {
    grid-template-columns: 1fr;
  }

  .account-profile-form button {
    width: 100%;
  }
  .account-profile-edit-toggle,
  .account-profile-form__actions button {
    width: 100%;
  }
  
  .account-auth-card__intro{
      padding:0 !important;
  }
    .account-auth-form {
        margin-top: 0.65rem;
    }
    
    .video-card__title {
        font-size: 0.8rem;
    }
    .video-card__meta {
        font-size: 0.72rem;
    }
    .video-card__content {
        padding: 0.5rem;
    }
    
    
    .search-entity-card__artwork svg {
        width: 24px;
        height: 24px;
        stroke-width: 3px;
    }
    
    
    a.search-entity-card {
        padding: 8px;
        gap: 3px;
    }
    .search-entity-card__artwork {
        width: calc(100% + 16px);
        margin: -8px;
        margin-bottom: 3px;
    }
    .site-footer__brand strong{
        font-size: 0.8rem;
    }
    .site-footer__brand span, .site-footer__copyright,
    .site-footer__links a{
        font-size: 0.6rem;
    }
    .legal-page__hero {
        padding: var(--space-6);
    }
    .legal-page__hero p {
        margin: 0 0 var(--space-1);
    }
    .legal-page__hero h1 {
        margin: 0 0 var(--space-2);
    }
}

@supports not (
  (backdrop-filter: blur(1px))
  or (-webkit-backdrop-filter: blur(1px))
) {
  .desktop-sidebar, .top-utility-bar, .mobile-bottom-nav, .homepage-state {
    background: #10121c;
  }

  .site-search, .language-switcher, .utility-icon-button, .account-access__avatar, .top-utility-bar__menu {
    background: #171925;
  }

}

@media (min-width: 1180px) {
  .homepage-sections {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .homepage-sections > * {
    grid-column: 1 / -1;
  }

  .homepage-sections--has-feature-pair .home-section--progress-rail {
    grid-column: span 8;
  }

  .homepage-sections--has-feature-pair .home-section--raga-feature {
    grid-column: span 4;
  }

}

@media (max-width: 600px) {

  
}





@media (max-width: 560px) {
    .hero-stage__title {
        font-size: 1.5rem;
    }
  .radio-channel-card {
    gap: 12px;
    min-height: 120px;
  }

  .radio-channel-card__description {
    display: none;
  }
  .music-dock {
    padding: 10px 12px;
    border-radius: 22px;
  }

  .music-dock__metadata {
    max-width: 34vw;
  }

  .music-dock__metadata strong {
    font-size: 0.76rem;
  }

  .music-dock__metadata > span {
    font-size: 0.64rem;
    display: none;
  }

  .music-dock__playback {
    min-width: 126px;
  }

  .music-dock__artwork {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .music-dock button {
    width: 34px;
    height: 34px;
  }

  .music-dock .music-dock__play-toggle {
    width: 40px;
    height: 40px;
  }

    .now-playing {
        padding: 70px 10px 95px;
        backdrop-filter: blur(0px) saturate(107.1%);
    }

  .now-playing__panel {
    width: 100%;
    border-radius: 26px;
    padding: 18px;
    height: 100%;
  }
    .now-playing__artwork {
        height: calc(100% - 270px);
        width: 100%;
    }

}

@media (max-width: 420px) {
    .music-dock {
        gap: 10px;
        grid-template-columns: auto 95px 20px;
    }
    .music-dock button svg {
        width: 14px;
        height: 14px;
    }
    .music-dock .music-dock__play-toggle {
        width: 30px;
        height: 30px;
    }
    .music-dock__utilities button:not([data-player-expand]) {
        display: none;
    }
    .music-dock__artwork {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
    }
    .music-dock__controls {
        gap: 4px;
    }
    .music-dock__metadata {
        max-width: 44vw;
    }
}

/* ==========================================================================
   Safe Auto Marquee
   ========================================================================== */

.raganxt-marquee {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.raganxt-marquee__inner {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
  will-change: transform;
}
.now-playing__metadata .raganxt-marquee.is-overflowing .raganxt-marquee__inner,
.music-dock .raganxt-marquee.is-overflowing .raganxt-marquee__inner,
.radio-channel-card:has( [data-track-control].is-current-track ) .raganxt-marquee.is-overflowing .raganxt-marquee__inner,
.album-card:has([data-track-control].is-current-track) .raganxt-marquee.is-overflowing .raganxt-marquee__inner,
.raganxt-marquee.is-overflowing:hover .raganxt-marquee__inner,
.raganxt-marquee.is-overflowing:focus-within .raganxt-marquee__inner {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  animation: raganxt-text-marquee var(--marquee-duration, 7s) linear infinite;
}

@keyframes raganxt-text-marquee {
  0%,
  14% {
    transform: translateX(0);
  }

  86%,
  100% {
    transform: translateX(var(--marquee-distance, -40px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .raganxt-marquee.is-overflowing:hover .raganxt-marquee__inner,
  .raganxt-marquee.is-overflowing:focus-within .raganxt-marquee__inner {
    animation: none;
  }
}
.password-field {
  display: block;
  position: relative;
}

.password-field input {
  padding-right: 4.5rem !important;
}

.password-field__toggle {
  background: transparent;
  border: 0;
  color: #e6b554;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem;
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* App intro tour */
.app-tour-open {
  overflow: hidden;
}

.app-tour {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 10000;
}

.app-tour__backdrop {
  background:
    radial-gradient(circle at 50% 12%, rgba(230, 181, 84, 0.08), transparent 34%),
    rgba(5, 5, 10, 0.22);
  inset: 0;
  position: absolute;
}

.app-tour__spotlight {
  background: rgba(230, 181, 84, 0.08);
  border: 2px solid rgba(244, 209, 122, 0.92);
  border-radius: 8px;
  box-shadow:
    0 0 0 9999px rgba(5, 5, 10, 0.18),
    0 0 0 8px rgba(230, 181, 84, 0.12),
    0 18px 48px rgba(230, 181, 84, 0.24);
  cursor: pointer;
  padding: 0;
  position: fixed;
  z-index: 10001;
}

.app-tour__panel {
  background:
    linear-gradient(145deg, rgba(32, 25, 34, 0.96), rgba(11, 11, 18, 0.98));
  border: 1px solid rgba(230, 181, 84, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  color: #fff8e8;
  max-height: min(82vh, 620px);
  max-width: 480px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  width: min(100%, 480px);
  z-index: 10002;
}

.app-tour__panel--callout {
  max-height: none;
  max-width: min(380px, calc(100vw - 24px));
  padding: 19px;
  position: fixed;
}

.app-tour__panel--positioning {
  opacity: 0;
  pointer-events: none;
}

.app-tour__panel--callout::before {
  background: inherit;
  border-left: 1px solid rgba(230, 181, 84, 0.28);
  border-top: 1px solid rgba(230, 181, 84, 0.28);
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  width: 18px;
}

.app-tour__panel--below::before {
  top: -10px;
  transform: translateX(-50%) rotate(45deg);
}

.app-tour__panel--above::before {
  bottom: -10px;
  transform: translateX(-50%) rotate(225deg);
}

.app-tour__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff8e8;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.app-tour__counter,
.app-tour__eyebrow {
  color: #e6b554;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-tour__counter {
  margin-bottom: 14px;
}

.app-tour__eyebrow {
  margin: 0 0 8px;
}

.app-tour h2 {
  font-size: clamp(1.3rem, 4vw, 1.72rem);
  line-height: 1.08;
  margin: 0 42px 10px 0;
}

.app-tour__copy {
  color: rgba(255, 248, 232, 0.78);
  font-size: 0.86rem;
  line-height: 1.48;
  margin: 0;
}

.app-tour__hint {
  background: rgba(230, 181, 84, 0.1);
  border: 1px solid rgba(230, 181, 84, 0.2);
  border-radius: 8px;
  color: #f4d17a;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0 0;
  padding: 0.62rem 0.72rem;
}

.app-tour__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0;
}

.app-tour__dot {
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  width: 8px;
}

.app-tour__dot[aria-current="step"] {
  background: #e6b554;
  width: 28px;
}

.app-tour__actions,
.app-tour__step-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.app-tour__actions {
  justify-content: space-between;
}

.app-tour__primary,
.app-tour__secondary {
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  min-height: 38px;
  padding: 0.58rem 0.9rem;
}

.app-tour__primary {
  background: linear-gradient(135deg, #f4d17a, #d89d33);
  border: 0;
  color: #170f08;
}

.app-tour__secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff8e8;
}

.app-tour__secondary:disabled {
  cursor: default;
  opacity: 0.45;
}

.settings-card-button--compact {
  align-self: flex-start;
  margin-top: 14px;
  width: auto;
}

@media (max-width: 640px) {
  .app-tour {
    align-items: center;
    padding: max(10px, env(safe-area-inset-top)) 12px max(10px, env(safe-area-inset-bottom));
  }

  .app-tour__panel {
    max-height: min(44svh, 330px);
    overflow-y: auto;
    padding: 12px 12px 10px;
    width: calc(100vw - 24px);
  }

  .app-tour__panel--callout {
    max-height: min(44svh, 330px);
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }

  .app-tour__panel--callout::before {
    display: none;
  }

  .app-tour__close {
    height: 30px;
    right: 12px;
    top: 12px;
    width: 30px;
  }

  .app-tour__counter {
    margin-bottom: 7px;
  }

  .app-tour__eyebrow {
    margin-bottom: 5px;
  }

  .app-tour h2 {
    font-size: clamp(1.02rem, 5vw, 1.28rem);
    line-height: 1.05;
    margin: 0 36px 8px 0;
  }

  .app-tour__copy {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .app-tour__hint {
    font-size: 0.68rem;
    line-height: 1.25;
    margin-top: 8px;
    padding: 0.48rem 0.58rem;
  }

  .app-tour__dots {
    gap: 6px;
    margin: 9px 0;
  }

  .app-tour__dot {
    height: 7px;
    width: 7px;
  }

  .app-tour__dot[aria-current="step"] {
    width: 22px;
  }

  .app-tour__primary,
  .app-tour__secondary {
    font-size: 0.78rem;
    min-height: 32px;
    padding: 0.45rem 0.72rem;
  }

  .app-tour__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-tour__step-actions {
    width: 100%;
  }

  .app-tour__primary,
  .app-tour__secondary {
    flex: 1;
  }
}

/* Android WebView performance profile. Activated by the app wrapper only. */
html.raganxt-android-app {
  scroll-behavior: auto !important;
}

.raganxt-android-app .media-rail,
.raganxt-android-app [data-horizontal-rail] {
  scroll-snap-type: none !important;
  -webkit-overflow-scrolling: touch;
}

.raganxt-android-app .home-section {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.raganxt-android-app .desktop-sidebar,
.raganxt-android-app .top-utility-bar,
.raganxt-android-app .mobile-bottom-nav,
.raganxt-android-app .homepage-state,
.raganxt-android-app .music-dock,
.raganxt-android-app .hero-stage,
.raganxt-android-app .album-card,
.raganxt-android-app .artist-card,
.raganxt-android-app .collection-card,
.raganxt-android-app .raga-journey-card,
.raganxt-android-app .radio-channel-card {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.raganxt-android-app .hero-stage,
.raganxt-android-app .album-card,
.raganxt-android-app .artist-card,
.raganxt-android-app .collection-card,
.raganxt-android-app .raga-journey-card,
.raganxt-android-app .radio-channel-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
}

.raganxt-android-app .album-card,
.raganxt-android-app .artist-card,
.raganxt-android-app .collection-card,
.raganxt-android-app .raga-journey-card,
.raganxt-android-app .radio-channel-card {
  transition: none !important;
}
