


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #050505;
  --bg-secondary: #070707;
  --bg-surface: #0a0a0a;
  --bg-surface-elevated: #121212;
  --bg-surface-hover: rgba(255, 255, 255, 0.06);
  --bg-surface-active: rgba(255, 255, 255, 0.09);
  
  --text-primary: #ffffff;
  --text-secondary: #7f8797;
  --text-muted: #4e5564;
  
  --accent: #ffffff;
  --accent-hover: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.06);
  --sidebar-width-collapsed: 72px;
  --sidebar-width-expanded: 180px;
  --player-height: 90px;
  --header-height: 72px;
  
  --transition-smooth: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-text-decoration-line: none !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-text-emphasis: none !important;
  text-emphasis: none !important;
  spellcheck: false;
}

svg, svg path, svg polyline, svg line, svg circle {
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none !important;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}


.app {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-width-collapsed);
  background-color: transparent;
  border-right: none !important;
  z-index: 1000;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.55s ease, box-shadow 0.55s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}

.sidebar:hover {
  width: var(--sidebar-width-expanded);
  background-color: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(20px);
  border-right: none !important;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 12px !important;
  margin-top: calc(50vh - 180px);
  width: 100%;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  padding: 0 12px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.sidebar-link i, .sidebar-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

.sidebar-text {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
  color: inherit;
}

.sidebar:hover .sidebar-text {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.12s;
}


.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.sidebar-link:hover i, .sidebar-link:hover svg {
  transform: translateY(-2px) scale(1.15);
  color: var(--text-primary);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.sidebar-link.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.sidebar-link.active i, .sidebar-link.active svg {
  color: var(--text-primary);
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
}


.content {
  margin-left: var(--sidebar-width-collapsed);
  flex: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}


.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 99;
  flex-shrink: 0;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo i {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.share-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
}

.share-btn:hover {
  background-color: var(--bg-surface-hover);
  color: var(--text-primary);
}

.share-btn::after {
  content: "!! Watch movies there !!";
  position: absolute;
  bottom: -38px;
  left: 50%;
  height: 40px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) scale(0.85);
  background: #000000;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.share-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.login-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}


#main-viewport {
  flex: 1;
  overflow-y: visible;
  padding: 32px 48px 120px 48px;
}


.content::-webkit-scrollbar {
  width: 8px;
}
.content::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
.content::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 4px;
}
.content::-webkit-scrollbar-thumb:hover {
  background: #252525;
}


.page {
  animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.home-suggestions-bar {
  margin-bottom: 24px;
}

.suggestions-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.language-pills {
  display: flex;
  gap: 12px;
}

.pill-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pill-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

.pill-btn.active {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  font-weight: 600;
}


.hero-section {
  position: relative;
  height: 380px;
  background-color: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
  padding: 48px 0;
  margin-bottom: 48px;
  border: none;
}

.hero-content {
  width: 50%;
  margin-top: 150px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 90%;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-cta {
  align-self: flex-start;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  height: 60px;
  width: fit-content;
  white-space: nowrap;
  padding: 12px 28px;
  border-radius: 35px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.hero-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(5, 5, 5, 0.45) 15%, rgba(5, 5, 5, 0) 40%),
              linear-gradient(to top, var(--bg-primary) 0%, transparent 15%);
}


.section-wrapper {
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

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

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.show-more-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.show-more-btn:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}


.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-row {
  display: flex;
  overflow-x: auto;
  scroll-bezier: smooth;
  gap: 24px;
  width: 100%;
  padding: 8px 0 20px 0;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

.carousel-row::-webkit-scrollbar {
  display: none; 
}


.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  opacity: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.left {
  left: -22px;
}

.carousel-btn.right {
  right: -22px;
}


.music-card {
  width: 180px;
  flex-shrink: 0;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.music-card-artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.music-card-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hover-play-btn i {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.music-card:hover .music-card-artwork img {
  transform: scale(1.05);
}

.music-card:hover .card-play-overlay {
  opacity: 1;
}

.music-card:hover .hover-play-btn {
  opacity: 1;
  transform: scale(1);
}

.hover-play-btn:hover {
  transform: scale(1.1) !important;
  background-color: var(--text-primary);
}

.music-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-right: 20px;
}

.music-card-artist {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-card-menu-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.music-card:hover .music-card-menu-btn {
  opacity: 1;
}

.music-card-menu-btn:hover {
  color: var(--text-primary);
}


.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.suggestion-item:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--border-color);
}

.suggestion-item.active {
  background-color: var(--bg-surface-active);
}

.suggestion-artwork {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
  background-color: var(--bg-surface);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.suggestion-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suggestion-artist {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.suggestion-menu-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}


.artist-card {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.artist-card-artwork {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.artist-card-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.artist-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.artist-card:hover .artist-card-artwork {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.artist-card:hover .artist-card-artwork img {
  transform: scale(1.06);
}


.search-header-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.search-input-wrapper i,
.search-input-wrapper svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.search-bar-input {
  width: 100%;
  height: 56px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 0 24px 0 56px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.search-bar-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: var(--bg-surface);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.search-filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.quick-search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.quick-card {
  height: 180px;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quick-card.pink { background: linear-gradient(135deg, #ec008c, #fc6767); }
.quick-card.teal { background: linear-gradient(135deg, #11998e, #38ef7d); }
.quick-card.orange { background: linear-gradient(135deg, #ff8c00, #e52d27); }
.quick-card.blue { background: linear-gradient(135deg, #00c6ff, #0072ff); }

.quick-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.quick-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.quick-card-query {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
}

.quick-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}


.search-results-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.detail-header {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.detail-artwork {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.detail-artwork.circle {
  border-radius: 50%;
}

.detail-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
}

.detail-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.detail-metadata {
  font-size: 14px;
  color: var(--text-secondary);
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}


.tracks-list-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tracks-list-table th, 
.tracks-list-table td {
  padding: 12px 16px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.tracks-list-table th {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tracks-list-table tr {
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.tracks-list-table tr:hover {
  background-color: var(--bg-surface-hover);
}

.tracks-list-table tr.active {
  background-color: var(--bg-surface-active);
}

.track-row-num {
  color: var(--text-secondary);
  width: 40px;
}

.track-row-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-row-art {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.track-row-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-row-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.track-row-artist {
  font-size: 12px;
  color: var(--text-secondary);
}

.track-row-album {
  font-size: 14px;
  color: var(--text-secondary);
}

.track-row-duration {
  color: var(--text-secondary);
  font-size: 14px;
  width: 80px;
}

.track-row-actions {
  text-align: right;
  width: 100px;
}

.track-row-action-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 6px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.track-row-action-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}


.library-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.library-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.library-box:hover {
  background-color: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.library-box-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.library-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.library-box-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.library-box-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.library-box:hover .library-box-btn {
  transform: scale(1.08);
}


.library-box.purple {
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.15), rgba(81, 45, 168, 0.05));
  border-color: rgba(149, 117, 205, 0.15);
}
.library-box.purple:hover {
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.25), rgba(81, 45, 168, 0.1));
  border-color: rgba(149, 117, 205, 0.3);
}

.library-box.purple .library-box-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}


.user-playlists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}


.socials-split {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
}

.party-room-panel {
  background: linear-gradient(135deg, #1a103c 0%, #0c071d 100%);
  border: 1px solid rgba(138, 75, 235, 0.2);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.party-room-badge {
  background: rgba(138, 75, 235, 0.2);
  color: #c09bf8;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 12px;
  width: fit-content;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(138, 75, 235, 0.3);
}

.party-room-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.party-room-desc {
  color: #a49fc4;
  font-size: 14px;
  line-height: 1.6;
  max-width: 80%;
}

.party-room-enter {
  align-self: flex-start;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.party-room-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(138, 75, 235, 0.4);
}

.friends-activity-panel {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.friend-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.friend-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.friend-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.friend-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #38ef7d;
  border: 2px solid var(--bg-surface);
}

.friend-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.friend-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.friend-listening {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.profile-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-username {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.profile-stat-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.profile-stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}

.profile-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}


.player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: var(--player-height);
  background-color: #080808;
  border-top: 1px solid var(--border-color);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.player.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


.now {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 25%;
  min-width: 200px;
  transition: opacity 0.2s ease;
}

#player-art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.now div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

#player-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#player-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#player-like-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

#player-like-btn.liked {
  color: #ff3366;
}

#player-like-btn.liked i {
  fill: currentColor;
}


.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 45%;

  margin-left: 50px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 20px;

}

.controls button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.controls button:hover {
  color: var(--text-primary);
}

.controls button.active {
  color: #38ef7d;
}

.controls button.main-play {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  width: 40px;
  height: 40px;
}

.controls button.main-play:hover {
  transform: scale(1.06);
  background-color: var(--text-primary);
}

.controls button.main-play i {
  width: 18px;
  height: 18px;
}


.progress {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.progress small {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  width: 36px;
  text-align: center;
}

.progress input[type="range"],
.player-volume-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #ffffff 80%, rgba(255, 255, 255, 0.2) 80%);
  outline: none;
  cursor: pointer;
}

.progress input[type="range"]::-webkit-slider-thumb,
.player-volume-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  opacity: 1;
  transition: transform 0.1s ease;
}

.progress input[type="range"]:hover::-webkit-slider-thumb,
.player-volume-control input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.3);
}


.player-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  width: 25%;
  min-width: 180px;
}

.player-tools button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.player-tools button:hover,
.player-tools button.active {
  color: var(--text-primary);
}

.player-volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 120px;
}

.player-volume-control input[type="range"] {
  width: 80px;
}


.lyrics-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: calc(100vh - var(--player-height));
  background-color: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-color);
  z-index: 1500;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0,0,0,0.8);
}

.lyrics-panel.active {
  right: 0;
}

.lyrics-panel header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lyrics-panel header p {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

#lyrics-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

#lyrics-artist {
  font-size: 13px;
  color: var(--text-secondary);
}

#lyrics-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

#lyrics-close-btn:hover {
  color: var(--text-primary);
}

.lyrics-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-secondary);
}

.lyrics-body::-webkit-scrollbar {
  width: 6px;
}
.lyrics-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}

.lyrics-body p {
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.lyrics-placeholder {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}


.lyrics-body .fs-lyric-line {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
  margin-bottom: 14px !important;
  line-height: 1.4 !important;
}

.lyrics-body .fs-lyric-line:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.lyrics-body .fs-lyric-line.active {
  color: #38ef7d !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(56, 239, 125, 0.3);
}

.lyrics-body .fs-lyric-line.placeholder {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  text-align: center;
  cursor: default !important;
}



.context-menu {
  position: absolute;
  z-index: 3000;
  background-color: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 240px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
  padding: 8px 0;
  display: none;
}

.context-menu-section-header {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: capitalize;
  padding: 6px 16px 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
}

.context-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.context-menu-item span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.context-menu-item svg, .context-menu-item i {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.context-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.context-menu-item:hover svg, .context-menu-item:hover i {
  color: #ffffff;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 400px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-premium);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.modal-input {
  width: 100%;
  height: 48px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0 16px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}

.modal-input:focus {
  border-color: rgba(255, 255, 255, 0.25);
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.modal-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.modal-btn.cancel {
  background: transparent;
  color: var(--text-secondary);
}

.modal-btn.cancel:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-btn.action {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.modal-btn.action:hover {
  background-color: var(--accent-hover);
}


.skeleton-shimmer {
  background: linear-gradient(90deg, #101010 25%, #181818 50%, #101010 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}


.sponsored-banner {
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 16px 24px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 48px;
}


.submenu-list {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #0d0d0d;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  padding: 6px 0;
}

.context-menu-item:hover .submenu-list {
  display: block;
}


button:focus, button:active, button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}


.fullscreen-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.fullscreen-player::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 8, 8, 0.3) 0%, rgba(5, 5, 5, 0.88) 100%);
  z-index: 0;
  pointer-events: none;
}

.fullscreen-player.active {
  transform: translateY(0);
}


.fs-bg-blur {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: #080808;
}

.fs-bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(80px) saturate(180%);
  opacity: 0.35;
  transition: opacity 1s ease-in-out;
}

.fs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.fs-close-btn, .fs-header-tools button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
}

.fs-close-btn *, .fs-header-tools button * {
  pointer-events: none;
}

.fs-close-btn:hover, .fs-header-tools button:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.fs-close-btn i, .fs-header-tools button i, .fs-close-btn svg, .fs-header-tools button svg {
  width: 24px;
  height: 24px;
}

.fs-pill-switch {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fs-pill {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.fs-pill i,
.fs-pill svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.fs-pill.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.fs-header-tools {
  display: flex;
  gap: 8px;
}

.fs-header-tools button.active {
  color: var(--text-primary);
}

.fs-body {
  flex: 1;
  display: flex;
  margin-top: 40px;
  gap: 120px;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.fs-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  padding-bottom: 24px;
  overflow-y: auto;
  scrollbar-width: none;
}

.fs-left::-webkit-scrollbar {
  display: none;
}

.fs-art-wrapper {
  width: min(380px, 36vh);
  height: min(380px, 36vh);
  flex-shrink: 0;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.3s ease;
}

.fs-art-wrapper.video-mode {
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
  max-width: 480px !important;
  height: auto !important;
  max-height: 270px !important;
  border-radius: 16px !important;
}

.fs-art-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.fs-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  width: min(380px, 100%);
  margin: 0 auto;
  flex-shrink: 0;
}

#fs-artist {
  font-size: 13px;
  margin: 0 auto;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
}

#fs-title {
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: block;
  text-align: center;
  width: 100%;
}

.title-arrow {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.fs-action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(380px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
  flex-shrink: 0;
}

.fs-action-row::-webkit-scrollbar {
  display: none;
}

.fs-action-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fs-action-pill:hover,
.fs-action-pill.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.fs-action-pill svg,
.fs-action-pill i {
  width: 16px;
  height: 16px;
}

.fs-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(380px, 100%);
  margin: 0 auto;
  flex-shrink: 0;
}

.fs-progress-time {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.fs-progress-time small {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.fs-progress-wrapper input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.15) 0%);
  outline: none;
  cursor: pointer;
}

.fs-progress-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-primary);
  border: none;
}

.fs-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(380px, 100%);
  margin: 0 auto;
  flex-shrink: 0;
}

.fs-controls button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.fs-controls button i {
  width: 24px;
  height: 24px;
}

.fs-controls button:hover {
  color: var(--text-primary);
}

.fs-controls button.fs-play-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  border: none;
  outline: none;
  box-shadow: none;
}

.fs-controls button.fs-play-btn:hover {
  transform: scale(1.06);
  background-color: var(--text-primary);
}

.fs-controls button.fs-play-btn svg.lucide-play {
  transform: translateX(1.5px);
}

.fs-controls button.fs-play-btn i {
  width: 24px;
  height: 24px;
}

.mobile-lyrics-header,
.mobile-lyrics-screen,
.fs-bottom-bar-indicator {
  display: none !important;
}

.fs-right {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-left: 30px;
  border: none !important;
  outline: none !important;
}

.fs-lyrics-container {
  width: 100%;
  height: 95%;
  overflow-y: auto;
  padding-left: 24px;
  padding-right: 20px;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
  padding-top: 40px;
  padding-bottom: 40px;
  scrollbar-width: none !important;
  border: none !important;
  outline: none !important;
}

.fullscreen-player::-webkit-scrollbar,
.fs-body::-webkit-scrollbar,
.fs-right::-webkit-scrollbar,
.fs-lyrics-container::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.fs-lyrics-container::-webkit-scrollbar-thumb {
  display: none !important;
}

.fs-lyric-line {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.fs-lyric-line.active {
  color: #ffffff !important;
  transform: scale(1.04);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
}

.fs-lyric-line:hover {
  opacity: 0.9;
}

.fs-lyric-line.placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
}


@media (max-width: 992px) {
  .fs-body {
    gap: 32px;
  }
  .fs-left {
    width: 45%;
  }
  .fs-right {
    width: 50%;
  }
  .fs-lyric-line {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .fullscreen-player {
    padding: 20px 16px;
  }

  .fs-header {
    margin-bottom: 12px;
  }

  .fs-body {
    flex-direction: column;
    overflow-y: auto;
    gap: 24px;
    margin-top: 12px;
    padding-bottom: 40px;
    align-items: center;
  }
  
  .fs-left, .fs-right {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .fs-left {
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .fs-art-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .fs-meta {
    text-align: center;
   
  }

  .fs-meta h2 {
    font-size: 22px !important;
    line-height: 1.3;

  }

  .fs-progress-wrapper {
    width: 100%;
  }
  
  .fs-right {
    height: 350px;
    max-height: 45vh;
  }
  
  .fs-lyrics-container {
    height: 100%;
  }
  
  .fs-lyric-line {
    font-size: 19px;
    text-align: center;
    transform-origin: center center;
  }
}

@media (max-width: 480px) {
  .fs-art-wrapper {
    width: 140px;
    height: 140px;
  }

  .fs-meta h2 {
    font-size: 18px !important;
     
  }

  .fs-lyric-line {
    font-size: 17px;
    line-height: 1.5;
  }

  .fs-controls {
    gap: 16px;
  }
}


.show-more-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  padding: 64px 80px;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(0.98);
}

.show-more-modal.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.show-more-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
}

.show-more-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.show-more-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.show-more-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.show-more-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.show-more-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.show-more-close-btn i {
  width: 20px;
  height: 20px;
}

.show-more-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 80px;
  justify-content: center;
  justify-items: center;
}


.home-footer {
  font-size: 80px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -3px;
  margin-top: 40px;
  padding-top: 100px;
  padding-left: 20px;
  user-select: none;
  line-height: 1;
  text-align: left;
  text-transform: capitalize;
  opacity: 0.8;
  margin-left: -20px;
  font-family: 'Outfit', sans-serif;
}


.spotify-connect-btn {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  background-color: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.3);
  padding: 8px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.spotify-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: grayscale(100%) opacity(0.6);
  transition: var(--transition-smooth);
}

.spotify-connect-btn.connected .spotify-logo-img {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 6px #1db954) brightness(1.2);
}

.spotify-connect-btn:hover {
  background-color: rgba(29, 185, 84, 0.25);
  border-color: rgba(29, 185, 84, 0.6);
  transform: translateY(-1px);
}

.spotify-connect-btn:hover .spotify-logo-img {
  filter: grayscale(0%) opacity(0.9);
}

.spotify-connect-btn.connected {
  background-color: rgba(29, 185, 84, 0.2);
  border-color: #1db954;
}


.spotify-setup-card {
  max-width: 480px;
  width: 90%;
  padding: 32px;
  background: #121214;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


.spotify-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid rgba(29, 185, 84, 0.35);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}


.spotify-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 24px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(29, 185, 84, 0.35) transparent;
}


.spotify-btn-container:hover .spotify-tooltip {
  opacity: 1;
  transform: translateY(0);
}


.sidebar-link.blocked-link {
  cursor: not-allowed !important;
  opacity: 0.8;
  position: relative;
}

.sidebar-link.blocked-link .block-icon {
  display: none !important;
}

.sidebar-link.blocked-link .normal-icon {
  display: inline-block !important;
}

.sidebar-link.blocked-link:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  color: var(--text-secondary) !important;
}

.sidebar-link.blocked-link:hover .normal-icon {
  display: none !important;
}

.sidebar-link.blocked-link:hover .block-icon {
  display: inline-block !important;
}

.coming-soon-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(255, 51, 102, 0.15);
  color: #ff3366;
  border: 1px solid rgba(255, 51, 102, 0.4);
  margin-left: auto;
  box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
  animation: badge-glow 2s infinite ease-in-out;
  pointer-events: none;
  
  
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-link.blocked-link:hover .coming-soon-badge {
  opacity: 1;
  transform: translateX(0);
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 51, 102, 0.2), inset 0 0 2px rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.7), inset 0 0 5px rgba(255, 51, 102, 0.3);
    border-color: rgba(255, 51, 102, 0.8);
  }
}


.library-box.blocked-party-room {
  cursor: not-allowed !important;
}

.library-box.blocked-party-room .party-blocked-btn {
  display: none !important;
}

.library-box.blocked-party-room .party-normal-btn {
  display: flex !important;
}

.library-box.blocked-party-room .coming-soon-badge {
  opacity: 0;
  transform: translateX(10px);
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.library-box.blocked-party-room:hover .party-normal-btn {
  display: none !important;
}

.library-box.blocked-party-room:hover .party-blocked-btn {
  display: flex !important;
  background-color: rgba(255, 51, 102, 0.15) !important;
  border: 1px solid rgba(255, 51, 102, 0.5) !important;
  color: #ff3366 !important;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
  animation: badge-glow 2s infinite ease-in-out;
}

.library-box.blocked-party-room:hover .coming-soon-badge {
  opacity: 1;
  transform: translateX(0);
}




