* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #121212;
  --bg-secondary: #181818;
  --bg-elevated: #282828;
  --bg-hover: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent: #1DB954;
  --accent-hover: #1ed760;
  --sidebar-width: 240px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.app {
  display: flex;
  min-height: 100vh;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: #000;
  padding: 24px 12px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 200;
  transition: transform 0.3s ease;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 24px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 28px;
}

.close-sidebar {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.close-sidebar:hover {
  color: var(--text-primary);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
}

.nav-item:hover {
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--bg-hover);
  color: var(--text-primary);
  font-weight: 600;
}

.nav-item i {
  width: 24px;
  font-size: 18px;
  text-align: center;
}

.sidebar-section {
  margin-top: 32px;
  padding: 0 12px;
}

.sidebar-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.playlist-item {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  display: block;
}

.playlist-item:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* Main Content */
.main {
  margin-left: var(--sidebar-width);
  flex: 1;
  padding-bottom: 100px;
  min-height: 100vh;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.98));
  backdrop-filter: blur(10px);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 100;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  margin-left: -8px;
}

.header-logo {
  display: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
  align-items: center;
  gap: 8px;
}

.header-logo i {
  font-size: 22px;
}

.search-box {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 12px 12px 12px 44px;
  background: #242424;
  border: none;
  border-radius: 24px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.back-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 14px;
  transition: background 0.2s;
}

.back-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Fullstory da back button ko'rinsin */
[available="full"] .back-btn,
[not-available="main"] .back-btn {
  display: flex;
}

[available="main"] .back-btn {
  display: none;
}

[available="full"] .menu-btn,
[available="full"] .header-logo,
[not-available="main"] .menu-btn,
[not-available="main"] .header-logo {
  display: none;
}

.content {
  padding: 24px 32px;
}

/* Section */
.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Artists Grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.artist-card {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.artist-card:hover {
  background: var(--bg-elevated);
  color: inherit;
  text-decoration: none;
}

.artist-img-wrapper {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 16px;
}

.artist-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}

.artist-img-wrapper:has(img) .artist-placeholder {
  display: none;
}

.artist-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--bg-elevated);
  z-index: 1;
}

.artist-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Tracks Table */
.tracks-table {
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  counter-reset: track-counter;
}

.tracks-header {
  display: grid;
  grid-template-columns: 100px 1fr 150px 120px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.track-row {
  display: grid;
  grid-template-columns: 48px 1fr 120px 100px 48px;
  padding: 12px 16px;
  counter-increment: track-counter;
}

/* Related News - Прослушивания ustuni yo'q */
.tracks-header-related {
  grid-template-columns: 48px 1fr 100px 48px;
}

.track-row-related {
  grid-template-columns: 48px 1fr 100px 48px;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.track-row:hover {
  background: var(--bg-hover);
}

.track-row:hover .track-num {
  display: none;
}

.track-row:hover .track-play {
  display: flex;
}

.track-row:hover .download-btn {
  color: var(--text-primary);
}

.track-index {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.track-num {
  display: block;
}

.track-num::before {
  content: counter(track-counter);
}

.track-play {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.track-cover {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.track-cover.loaded {
  opacity: 1;
}

.track-cover i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.track-details {
  min-width: 0;
}

.track-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-title.playing {
  color: var(--accent);
}

.track-artist {
  font-size: 15px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 6px;
}

.track-plays,
.track-duration {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.download-btn {
  background: none;
  border: none;
  color: transparent;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-secondary);
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.page-btn.active {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 8px;
}

/* Track Detail Page */
.track-page {
  display: none;
}

.track-page.active {
  display: block;
}

/* Category Page */
.category-page {
  display: block;
}

.category-header {
  position: relative;
  padding: 80px 24px 40px;
  margin: -24px -24px 32px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.category-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(50px);
  transform: scale(1.1);
  opacity: 0.3;
}

.category-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.category-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.category-cover {
  width: 232px;
  height: 232px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-info {
  flex: 1;
  padding-bottom: 8px;
}

.category-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.category-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--text-primary);
}

.category-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.category-stat i {
  font-size: 16px;
}

.category-description {
  max-width: 700px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 15px;
}

.category-description p {
  margin-bottom: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .category-header {
    padding: 40px 16px 24px;
    margin: -16px -16px 24px;
    min-height: auto;
  }
  
  .category-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  
  .category-cover {
    width: 192px;
    height: 192px;
  }
  
  .category-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .category-stats {
    justify-content: center;
    gap: 16px;
  }
  
  .category-description {
    font-size: 14px;
  }
}

.home-page.hidden {
  display: none;
}

.track-header {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-end;
}

.track-cover-large {
  width: 232px;
  height: 232px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  font-size: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, hsl(40, 60%, 40%), hsl(100, 50%, 25%));
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.track-cover-large.loaded {
  opacity: 1;
}

.track-cover-large i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.track-type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.track-title-large {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.track-meta-artist {
  font-weight: 600;
  color: var(--text-primary);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.play-btn-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s, background 0.2s;
  font-size: 22px;
}

.play-btn-large:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
}

.heart-btn,
.share-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  font-size: 28px;
}

.heart-btn:hover,
.share-btn:hover {
  color: var(--text-primary);
}

.heart-btn.liked {
  color: var(--accent);
}

.share-btn {
  font-size: 22px;
}

.download-btn-large {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  border: none;
  border-radius: 28px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.download-btn-large:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(29, 185, 84, 0.4);
}

.download-btn-large i {
  font-size: 16px;
}

/* Track Content Grid */
.track-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.lyrics-box {
  background: var(--bg-elevated);
  border-radius: 8px;
  padding: 24px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 15px;
}

.lyrics-box p {
  margin-bottom: 16px;
}

.lyrics-box p:last-child {
  margin-bottom: 0;
}

.info-box {
  background: var(--bg-elevated);
  border-radius: 8px;
  padding: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
}

/* Now Playing Bar */
.now-playing {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-elevated);
  display: none;
  align-items: center;
  padding: 0 16px;
  z-index: 200;
}

.now-playing.active {
  display: flex;
}

.now-playing-left {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  min-width: 180px;
}

.now-playing-cover {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: hsl(200, 50%, 30%);
}

.now-playing-info {
  flex: 1;
  min-width: 0;
}

.now-playing-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-playing-heart {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.now-playing-heart:hover,
.now-playing-heart.liked {
  color: var(--accent);
}

.now-playing-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.now-playing-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
}

.control-btn:hover {
  color: var(--text-primary);
}

.control-btn.active {
  color: var(--accent);
}

.play-btn-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-primary);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.1s;
}

.play-btn-small:hover {
  transform: scale(1.05);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.progress-time {
  font-size: 11px;
  color: var(--text-secondary);
  min-width: 40px;
  text-align: center;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: #4d4d4d;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-bar:hover {
  height: 6px;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.progress-bar:hover .progress-fill {
  background: var(--accent-hover);
}

.now-playing-right {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
}

.volume-btn:hover {
  color: var(--text-primary);
}

.volume-bar {
  width: 100px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Mobile Bottom Nav */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-elevated);
  z-index: 100;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
}

.mobile-nav.with-player {
  bottom: 64px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 10px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.mobile-nav-item i {
  font-size: 20px;
}

.mobile-nav-item.active {
  color: var(--text-primary);
}

/* Mobile Now Playing Mini */
.now-playing-mini {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 150;
  padding: 8px 12px;
  align-items: center;
  gap: 12px;
}

.now-playing-mini.active {
  display: flex;
}

.mini-cover {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: hsl(200, 50%, 30%);
}

.mini-info {
  flex: 1;
  min-width: 0;
}

.mini-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-primary);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mini-next-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
}

.mini-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
  .track-content {
    grid-template-columns: 1fr;
  }
  
  .now-playing-right {
    width: auto;
  }

  .volume-bar {
    width: 80px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .close-sidebar {
    display: block;
  }

  .main {
    margin-left: 0;
    padding-bottom: 140px;
  }

  .header {
    padding: 12px 16px;
  }

  .menu-btn {
    display: flex;
  }

  .header-logo {
    display: flex;
  }

  .search-box {
    max-width: none;
  }

  .content {
    padding: 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .artist-card {
    padding: 12px;
  }

  .artist-name {
    font-size: 14px;
  }

  .artist-label {
    font-size: 12px;
  }

  .tracks-header {
    display: none;
  }

  .track-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px;
  }

  .track-index {
    display: none;
  }

  .track-plays,
  .track-duration {
    display: none;
  }

  .track-cover {
    width: 64px;
    height: 64px;
  }

  .download-btn {
    color: var(--text-secondary);
    font-size: 18px;
  }

  .track-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .track-cover-large {
    width: 200px;
    height: 200px;
    font-size: 56px;
  }

  .track-title-large {
    font-size: 28px;
  }

  .track-meta {
    justify-content: center;
  }

  .action-buttons {
    justify-content: center;
    gap: 16px;
  }

  .download-btn-large span {
    display: none;
  }

  .download-btn-large {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.4);
  }
  
  .download-btn-large:hover {
    box-shadow: 0 6px 16px rgba(29, 185, 84, 0.5);
  }

  .pagination {
    gap: 4px;
  }

  .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }

  .page-info {
    display: none;
  }

  .now-playing {
    display: none !important;
  }

  .now-playing-mini {
    display: none;
  }

  .now-playing-mini.active {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .main.player-active {
    padding-bottom: 180px;
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .track-cover-large {
    width: 160px;
    height: 160px;
    font-size: 48px;
  }

  .track-title-large {
    font-size: 24px;
  }
}

/* DLE Specific Styles */
.speedbar {
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.speedbar a {
  color: var(--text-secondary);
}

.speedbar a:hover {
  color: var(--text-primary);
}

/* DLE Navigation - muzkay.html stilida */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-secondary);
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination a:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.pagination span.nav_ext {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.pagination .nav-prev,
.pagination .nav-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .pagination {
    gap: 4px;
  }

  .pagination a,
  .pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }
}

/* Comments Section */
.comments-section {
  margin-top: 20px;
}

.comm-item {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.comm-one {
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.comm-author {
  color: var(--text-primary);
  font-weight: 600;
}

.comm-two {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Add Comments Form */
.add-comms {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.add-comms input[type="text"],
.add-comms input[type="password"],
.add-comms textarea {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--bg-elevated);
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.add-comms input[type="text"]:focus,
.add-comms input[type="password"]:focus,
.add-comms textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.add-comms button[type="submit"],
.add-comms input[type="submit"] {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.add-comms button[type="submit"]:hover,
.add-comms input[type="submit"]:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

/* Utility */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

