:root {
  --cream: #fff2cb;
  --muted: rgba(255, 241, 211, 0.7);
  --line: rgba(255, 237, 200, 0.18);
  --deep: #07101b;
  --sindoor: #d8652f;
  --gold: #ffc369;
  --gold-glow: rgba(255, 195, 105, 0.45);
  --green-glow: rgba(80, 220, 140, 0.4);
  --red-glow: rgba(255, 90, 90, 0.4);
  --font-serif: "Noto Serif Devanagari", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--deep);
  color: var(--cream);
  font-family: var(--font-sans);
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

button, a, input {
  font: inherit;
  color: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.experience {
  isolation: isolate;
  background: #07101b;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

/* Background Scene Video */
.scene {
  z-index: -4;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.scene-wash {
  z-index: -3;
  pointer-events: none;
  background: 
    linear-gradient(#02081175 0%, #04090f05 36%, #0105092e 60%, #020508bd 100%),
    linear-gradient(90deg, #030a131a, #0000 60%);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Hidden YouTube Stage */
.youtube-stage {
  opacity: 0.001;
  pointer-events: none;
  width: 2px;
  height: 2px;
  position: fixed;
  bottom: -10px;
  left: -10px;
  overflow: hidden;
}

/* =========================================
   GLASSMORPHISM UTILITIES
   ========================================= */
.glass-chip {
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(10, 20, 30, 0.38);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  display: flex;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.glass-btn {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(10, 20, 30, 0.38);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.glass-btn:hover, .glass-chip:hover {
  background: rgba(255, 195, 105, 0.18);
  border-color: rgba(255, 195, 105, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--gold-glow);
  color: #fff;
}

.icon-svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
}

/* =========================================
   TOPBAR HEADER & CENTER DEVELOPER BADGE
   ========================================= */
.topbar {
  z-index: 4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 11px;
  font-weight: 650;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  gap: 12px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.countdown-chip {
  cursor: pointer;
  border-color: rgba(255, 195, 105, 0.3);
}

.diya-icon { font-size: 14px; }

.sun-dot {
  background: var(--gold);
  width: 7px;
  height: 7px;
  box-shadow: 0 0 12px var(--gold);
  border-radius: 50%;
  animation: pulse-sun 3s ease-in-out infinite alternate;
}

@keyframes pulse-sun {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 8px var(--gold); }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 15px var(--gold); }
}

/* Top Center Developer Name */
.topbar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.dev-badge {
  background: linear-gradient(135deg, rgba(255, 195, 105, 0.16), rgba(216, 101, 47, 0.22));
  border: 1px solid rgba(255, 195, 105, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 195, 105, 0.15);
  padding: 0 16px;
  gap: 6px;
}

.dev-sparkle {
  font-size: 12px;
  animation: spin-sparkle 4s ease-in-out infinite;
}

@keyframes spin-sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.2); }
}

.dev-title {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.dev-name {
  color: #fff9e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px var(--gold-glow);
}

.topbar nav {
  align-items: center;
  gap: 12px;
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

/* =========================================
   HERO TITLE
   ========================================= */
.mobile-title {
  z-index: 2;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.75);
  max-width: 620px;
  display: block;
  position: absolute;
  top: clamp(126px, 20vh, 208px);
  left: clamp(34px, 7vw, 118px);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
}

.mobile-title h1 {
  color: #ffebbd;
  letter-spacing: -0.04em;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 700;
  line-height: 0.94;
}

.mobile-title > p:last-child {
  color: rgba(255, 240, 210, 0.88);
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: 0.02em;
}

/* =========================================
   SPINNING CASSETTE / VINYL DISC
   ========================================= */
.track-art {
  background: #17120e;
  border: 2px solid rgba(255, 238, 203, 0.45);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(0,0,0,0.8);
  transition: transform 0.3s ease;
}

.track-art::after {
  content: "";
  background: radial-gradient(circle, #221a14 0%, #0d0907 100%);
  border: 4px solid rgba(255, 247, 223, 0.85);
  border-radius: 50%;
  position: absolute;
  inset: 25px;
  box-shadow: 0 0 4px rgba(0,0,0,0.8);
}

.track-art img {
  object-fit: cover;
  filter: sepia(0.2) saturate(0.85) contrast(1.05) brightness(0.85);
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

/* Continuous 360 Spin Animation on Play, Pauses on Stop */
.track-art.spinning img {
  animation: rotate-vinyl 7s linear infinite;
}

.track-art.paused img {
  animation-play-state: paused;
}

@keyframes rotate-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =========================================
   TRANSPARENT GLASSMORPHISM PLAYER SHELL
   ========================================= */
.player-shell {
  z-index: 3;
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  background: linear-gradient(135deg, rgba(30, 18, 14, 0.38), rgba(8, 16, 26, 0.35)), rgba(5, 10, 18, 0.28);
  border: 1px solid rgba(255, 235, 200, 0.22);
  border-radius: 28px;
  grid-template-columns: 64px minmax(280px, 540px) auto;
  align-items: center;
  gap: 16px;
  width: min(940px, calc(100vw - 44px));
  min-height: 114px;
  padding: 14px 20px;
  display: grid;
  position: absolute;
  bottom: clamp(32px, 5.2vh, 60px);
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.equalizer {
  z-index: 2;
  background: var(--sindoor);
  border-radius: 10px;
  align-items: flex-end;
  gap: 2px;
  height: 17px;
  padding: 4px 5px;
  display: flex;
  position: absolute;
  bottom: 3px;
  right: 4px;
}

.equalizer i {
  background: #fff;
  border-radius: 2px;
  width: 2px;
  height: 4px;
}

.equalizer.playing i:first-child { animation: 0.65s ease-in-out infinite alternate eq; }
.equalizer.playing i:nth-child(2) { animation: 0.45s ease-in-out 0.1s infinite alternate-reverse eq; }
.equalizer.playing i:nth-child(3) { animation: 0.7s ease-in-out 0.2s infinite alternate eq; }

@keyframes eq {
  0% { height: 3px; }
  100% { height: 9px; }
}

.track-copy { min-width: 0; }

.track-heading {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.track-info-wrap {
  min-width: 0;
  flex: 1;
}

.track-title {
  color: #fff7e3;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
}

.track-artist {
  color: var(--muted);
  margin: 3px 0 0;
  font-size: 12px;
}

/* Like / Dislike */
.feedback-commands {
  display: flex;
  align-items: center;
  gap: 6px;
}

.glass-mini-btn {
  appearance: none;
  cursor: pointer;
  border: 1px solid rgba(255, 237, 200, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 20, 30, 0.35);
  border-radius: 999px;
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 240, 211, 0.65);
  font-size: 10px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.glass-mini-btn:hover {
  background: rgba(255, 195, 105, 0.2);
  color: #fff;
  border-color: rgba(255, 195, 105, 0.5);
  transform: scale(1.06);
}

.glass-mini-btn.liked {
  background: rgba(80, 220, 140, 0.22);
  border-color: #50dc8c;
  color: #50dc8c;
  box-shadow: 0 0 16px var(--green-glow);
}

.glass-mini-btn.disliked {
  background: rgba(255, 90, 90, 0.22);
  border-color: #ff5a5a;
  color: #ff5a5a;
  box-shadow: 0 0 16px var(--red-glow);
}

.mini-icon {
  width: 13px;
  height: 13px;
}

.mini-count {
  font-variant-numeric: tabular-nums;
  font-size: 10px;
}

.track-count {
  color: rgba(255, 242, 216, 0.58);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 600;
}

.progress-row {
  color: rgba(255, 240, 211, 0.58);
  font-variant-numeric: tabular-nums;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 10px;
  display: grid;
}

.progress-row span:last-child { text-align: right; }

input[type="range"] {
  appearance: none;
  cursor: pointer;
  background: rgba(255, 242, 215, 0.28);
  border: 0;
  border-radius: 999px;
  width: 100%;
  height: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(255, 195, 105, 0.2);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }

.track-note {
  color: rgba(255, 241, 211, 0.55);
  letter-spacing: 0.01em;
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: 11px;
}

/* =========================================
   TRANSPARENT CONTROLS WITH SVG ICONS
   ========================================= */
.controls {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  display: flex;
}

.glass-control, .glass-play-btn {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(10, 20, 30, 0.35);
  border-radius: 50%;
  place-items: center;
  display: grid;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: rgba(255, 243, 217, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.glass-control {
  width: 40px;
  height: 40px;
  padding: 0;
}

.glass-control:hover {
  background: rgba(255, 195, 105, 0.2);
  border-color: rgba(255, 195, 105, 0.6);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.control-svg {
  width: 18px;
  height: 18px;
}

.glass-play-btn {
  width: 58px;
  height: 58px;
  background: rgba(255, 242, 203, 0.2);
  border: 1.5px solid rgba(255, 242, 203, 0.5);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 195, 105, 0.2);
}

.glass-play-btn:hover:not(:disabled) {
  background: rgba(255, 242, 203, 0.35);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 10px 35px var(--gold-glow);
}

.glass-play-btn:disabled {
  cursor: wait;
  opacity: 0.5;
}

.play-svg {
  width: 24px;
  height: 24px;
  transform: translate(1px);
}

.ritual-note {
  z-index: 2;
  color: rgba(255, 237, 205, 0.55);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  font-family: var(--font-serif);
  font-size: 11px;
  position: absolute;
  bottom: 20px;
  left: 28px;
}

/* =========================================
   MODALS (GLASSMORPHISM)
   ========================================= */
.playlist-backdrop {
  z-index: 20;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(2, 6, 11, 0.68);
  place-items: center;
  padding: 20px;
  animation: 0.18s ease-out fade-in;
  display: grid;
  position: fixed;
  inset: 0;
}

.backdrop-close {
  cursor: default;
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.playlist-card {
  background: linear-gradient(145deg, rgba(24, 34, 41, 0.92), rgba(21, 11, 9, 0.92));
  border: 1px solid rgba(255, 234, 197, 0.24);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 30px;
  width: min(680px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.playlist-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 2px 2px 16px;
  display: flex;
  border-bottom: 1px solid rgba(255, 239, 211, 0.1);
}

.playlist-header h2 {
  color: #fff3d2;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
}

.close-button {
  width: 38px;
  height: 38px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: none;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.15s;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.song-list {
  scrollbar-color: rgba(255, 196, 105, 0.35) transparent;
  scrollbar-width: thin;
  max-height: min(470px, calc(100vh - 215px));
  padding-right: 4px;
  overflow-y: auto;
  margin-top: 10px;
}

.song-row {
  color: rgba(255, 244, 222, 0.78);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 239, 211, 0.08);
  grid-template-columns: 38px 1fr auto 34px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 12px;
  transition: color 0.15s, background 0.15s;
  display: grid;
}

.song-row:hover, .song-row.active {
  color: #fff;
  background: rgba(255, 190, 93, 0.09);
}

.song-row.active {
  border-radius: 15px;
  background: rgba(255, 190, 93, 0.16);
  border-color: transparent;
}

.song-number {
  color: rgba(255, 238, 207, 0.4);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.song-name {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.song-name strong {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
}

.song-name small {
  color: rgba(255, 239, 210, 0.48);
  font-size: 11px;
}

.song-row-stats {
  font-size: 10px;
  color: rgba(255, 237, 200, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.row-play {
  color: var(--gold);
  justify-self: center;
  font-size: 12px;
}

.playlist-credit {
  color: rgba(255, 239, 213, 0.36);
  margin: 16px 2px 0;
  font-size: 10px;
  line-height: 1.5;
}

/* =========================================
   COUNTDOWN MODAL
   ========================================= */
.countdown-hero-box {
  background: linear-gradient(135deg, rgba(216, 101, 47, 0.25), rgba(255, 195, 105, 0.1));
  border: 1px solid rgba(255, 195, 105, 0.3);
  border-radius: 20px;
  padding: 18px;
  margin: 16px 0;
  text-align: center;
}

.countdown-hero-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.countdown-timer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.time-box {
  background: rgba(7, 16, 27, 0.7);
  border: 1px solid rgba(255, 237, 200, 0.2);
  border-radius: 14px;
  padding: 8px 12px;
  min-width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-val {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff5dd;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 195, 105, 0.4);
}

.time-lbl {
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-colon {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 14px;
}

.chhath-days-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  overflow-y: auto;
  max-height: 260px;
  padding-right: 4px;
  scrollbar-width: thin;
}

.day-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 237, 200, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.day-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-card-header strong {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff2d0;
}

.day-tag {
  background: rgba(216, 101, 47, 0.25);
  border: 1px solid var(--sindoor);
  color: #ffbc85;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.day-desc {
  font-size: 11px;
  color: rgba(255, 240, 211, 0.65);
  line-height: 1.4;
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .topbar-center {
    order: 3;
    width: 100%;
    margin-top: 6px;
    justify-content: flex-start;
  }
  .topbar {
    flex-wrap: wrap;
    padding: 16px 20px;
  }
}

@media (max-width: 920px) {
  .scene {
    object-position: 68% center;
  }
  .scene-wash {
    background: 
      linear-gradient(#0208119e 0%, #02081114 36%, #02060a52 62%, #020508d1 100%),
      linear-gradient(90deg, #030a132e, #0000);
  }
  .topbar nav .ext-link {
    display: none;
  }
  .mobile-title {
    max-width: 420px;
    top: 18%;
    left: 22px;
  }
  .mobile-title h1 {
    font-size: clamp(54px, 12vw, 82px);
  }
  .player-shell {
    border-radius: 24px;
    grid-template-columns: 54px 1fr auto;
    width: calc(100vw - 32px);
    min-height: 104px;
  }
  .track-art {
    width: 54px;
    height: 54px;
  }
  .track-art::after {
    inset: 21px;
  }
  .track-note {
    display: none;
  }
  .controls {
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .experience {
    min-height: 500px;
  }
  .scene {
    object-position: 66% center;
  }
  .time-chip {
    padding: 0 11px;
  }
  .countdown-chip {
    padding: 0 10px;
    font-size: 9px;
  }
  .topbar {
    font-size: 10px;
    padding: 12px 14px;
  }
  .topbar-center {
    order: 3;
    width: 100%;
    margin-top: 4px;
    justify-content: center;
  }
  .mobile-title {
    top: 16%;
    left: 18px;
    right: 18px;
  }
  .mobile-title .eyebrow {
    font-size: 9px;
  }
  .player-shell {
    border-radius: 22px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100vw - 20px);
    min-height: 94px;
    padding: 10px 12px;
    bottom: 24px;
  }
  .track-art {
    width: 44px;
    height: 44px;
  }
  .track-art::after {
    border-width: 3px;
    inset: 17px;
  }
  .equalizer {
    display: none;
  }
  .track-title {
    font-size: 14px;
  }
  .track-artist {
    font-size: 10px;
  }
  .track-count {
    display: none;
  }
  .feedback-commands {
    gap: 4px;
  }
  .glass-mini-btn {
    padding: 3px 6px;
    font-size: 9px;
  }
  .mini-icon {
    width: 11px;
    height: 11px;
  }
  .progress-row {
    grid-template-columns: 28px 1fr 28px;
    gap: 5px;
    margin-top: 6px;
    font-size: 8px;
  }
  .glass-play-btn {
    width: 46px;
    height: 46px;
  }
  .glass-control {
    width: 34px;
    height: 34px;
  }
  .play-svg {
    width: 20px;
    height: 20px;
  }
  .control-svg {
    width: 15px;
    height: 15px;
  }
  .side-control {
    display: none;
  }
  .ritual-note {
    display: none;
  }
  .playlist-card {
    border-radius: 24px;
    padding: 20px 16px;
  }
  .song-row {
    grid-template-columns: 28px 1fr 28px;
    gap: 8px;
    padding: 13px 8px;
  }
  .song-row-stats {
    display: none;
  }
}
