:root{
  --bg-primary:#FFFFFF;
  --bg-secondary:#FEFFFE;
  --bg-card:#FFFFFF;
  --bg-hover:#F3FBF8;

  --text-primary:#0F2A32;
--text-secondary:#6B8791;
  --text-muted:#A0B5BB;

  --accent-primary:#10B981;
  --accent-hover:#059669;
  --accent-secondary:#F59E0B;

  --border-color:#E2F2EC;
  --border-light:#C5DED6;

  --gradient-primary:linear-gradient(135deg,#10B981 0%,#34D399 100%);
  --gradient-card:linear-gradient(145deg,#FFFFFF 0%,#F0FAF6 100%);

  --shadow-sm:0 2px 8px rgba(16,185,129,.06);
  --shadow-md:0 8px 20px rgba(16,185,129,.10);
  --shadow-lg:0 16px 36px rgba(16,185,129,.12);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:20px;
  --radius-xl:28px;
}

/* RESET / BASE */
*{margin:0;padding:0;box-sizing:border-box;outline:0;border:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font:14px/1.6 'Inter','Segoe UI',-apple-system,BlinkMacSystemFont,sans-serif;
  background:linear-gradient(180deg,#E8F5F0 0%,#F0FAF6 30%,#FFFFFF 100%);
  color:var(--text-primary);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:var(--text-primary);text-decoration:none;transition:.25s}
a:hover{color:var(--accent-primary)}
img{max-width:100%;height:auto;border-radius:var(--radius-sm)}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.25;margin-bottom:.75rem}
h1{font-size:2.1rem}
h2{font-size:1.7rem}
h3{font-size:1.35rem}
h4{font-size:1.15rem}

/* LAYOUT */
.site-wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.site-container{
  max-width:1200px;
  margin:20px auto;
  background:var(--bg-secondary);
  min-height:calc(100vh - 40px);
  box-shadow:var(--shadow-lg);
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(16,185,129,.12);
}
.main-grid{display:flex;min-height:calc(100vh - 64px)}
.sidebar-left{
  width:280px;
  background:linear-gradient(180deg,#E8F5F0 0%,#FFFFFF 60%,#FEF3C7 100%);
  border-right:1px solid var(--border-color);
  padding:20px 16px;
  overflow-y:auto;
}
.content-area{flex:1;padding:24px;background:var(--bg-secondary)}

/* HEADER */
.site-header{
  background:linear-gradient(120deg,rgba(232,245,240,.95),rgba(254,243,199,.9));
  backdrop-filter:blur(14px);
  padding:12px 18px;
  border-bottom:1px solid var(--border-color);
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:space-between;
}
.brand-logo{
  font-size:1.4rem;
  font-weight:800;
  color:var(--text-primary);
  display:flex;
  align-items:center;
  gap:.7rem;
  min-width:0;
  letter-spacing:.02em;
}
.brand-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradient-primary);
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1;
  box-shadow:0 6px 18px rgba(16,185,129,.24);
  flex:0 0 auto;
}
.brand-logo img{
  width:34px;
  height:34px;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(16,185,129,.35);
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  width:40px;
  height:40px;
  border:1px solid var(--border-color);
  background:rgba(255,255,255,.9);
  border-radius:12px;
  color:var(--text-primary);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
}
.menu-toggle:hover{
  background:var(--bg-hover);
  border-color:var(--accent-primary);
  transform:translateY(-1px);
}

/* SEARCH */
.search-area{flex:0 1 520px;margin-left:auto}
.header-playlist-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--border-color);
  background:rgba(255,255,255,.92);
  color:var(--text-primary);
  text-decoration:none;
  transition:.2s;
  box-shadow:0 8px 24px rgba(15,42,50,.08);
}
.header-playlist-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(236,72,153,.35);
  box-shadow:0 10px 26px rgba(236,72,153,.15);
}
.header-playlist-btn__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e11d48;
  font-size:16px;
}
.header-playlist-btn__text{
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}
.header-playlist-btn__count{
  position:absolute;
  right:-4px;
  top:-4px;
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff1f2;
  color:#e11d48;
  font-size:10px;
  font-weight:800;
  border:1px solid rgba(225,29,72,.12);
}
.search-form{position:relative}
.search-form input{
  width:100%;
  height:44px;
  background:#F0FAF6;
  border:1px solid var(--border-color);
  border-radius:999px;
  padding:0 54px 0 16px;
  color:var(--text-primary);
  font-size:15px;
  transition:.2s;
}
.search-form input:focus{
  border-color:var(--accent-primary);
  box-shadow:0 0 0 3px rgba(16,185,129,.18);
  background:#FFFFFF;
}
.search-form input::placeholder{color:var(--text-muted)}
.search-submit{
  position:absolute;
  right:4px;
  top:4px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--gradient-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
  box-shadow:0 4px 10px rgba(16,185,129,.35);
}
.search-submit .fal{
  font-size:15px;
}
.search-submit:hover{
  transform:scale(1.06);
  box-shadow:0 6px 16px rgba(5,150,105,.45);
}

/* CARDS / BLOCKS */
.widget-box,
.song-header,
.song-desc,
.artists-section{
  border-radius:var(--radius-lg);
  border:1px solid var(--border-color);
  box-shadow:var(--shadow-sm);
  background:var(--bg-card);
}
.widget-box{
  background:var(--gradient-card);
  padding:16px 14px;
  margin-bottom:20px;
}
.widget-title{
  font-size:1rem;
  font-weight:700;
  margin-bottom:12px;
  color:var(--text-primary);
  display:flex;
  align-items:center;
  gap:.5rem;
}
.widget-title::before{
  content:'';
  width:6px;
  height:18px;
  background:var(--gradient-primary);
  border-radius:999px;
}

/* SIDE NAVIGATION */
.nav-menu{list-style:none}
.nav-menu li{margin-bottom:6px}
.nav-menu a{
  display:flex;
  align-items:center;
  padding:10px 12px;
  color:var(--text-secondary);
  border-radius:12px;
  transition:.2s;
  font-size:14px;
  position:relative;
  overflow:hidden;
}
.nav-menu a:before{
  content:'\f660';
  font-family:'Font Awesome 6 Pro';
  margin-right:10px;
  color:var(--accent-primary);
  font-size:16px;
  opacity:.8;
}
.nav-menu a:hover{
  background:var(--bg-hover);
  color:var(--accent-primary);
  transform:translateX(3px);
  box-shadow:0 4px 10px rgba(16,185,129,.25);
}

/* SECTION TITLE */
.section-block{margin-bottom:26px}
.section-heading{
  font-size:1.45rem;
  font-weight:800;
  margin-bottom:16px;
  color:var(--text-primary);
  display:flex;
  align-items:center;
  gap:.75rem;
}
.section-heading::after{
  content:'';
  flex:1;
  height:2px;
  background:linear-gradient(90deg,var(--accent-primary) 0%,var(--accent-secondary) 40%,transparent 100%);
}

/* TRACK LIST */
.audio-card{
  background:var(--bg-card);
  border-radius:16px;
  padding:10px 12px;
  margin-bottom:9px;
  border:1px solid var(--border-color);
  transition:.2s;
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
}
.audio-card:hover{
  background:#FFFFFF;
  border-color:var(--border-light);
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.audio-card::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:var(--gradient-primary);
  transform:scaleY(0);
  transition:transform .2s;
  border-radius:0 3px 3px 0;
}
.audio-card:hover::before{transform:scaleY(1)}

/* COVER IMG (list/mp3/player/artists) */
.audio-cover,
.song-artwork,
.player-cover,
.performer-avatar,
.cover-fit{
  overflow:hidden;
  position:relative;
}
.audio-cover,
.player-cover{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#D1E7E0;
  flex-shrink:0;
}
.song-artwork{
  width:120px;
  height:120px;
  border-radius:18px;
  flex-shrink:0;
  box-shadow:0 10px 25px rgba(16,185,129,.2);
  background:#D1E7E0;
}
.performer-avatar{
  width:86px;
  height:86px;
  border-radius:999px;
  box-shadow:0 2px 8px rgba(16,185,129,.35);
  background:#fff;
}
.audio-cover img,
.song-artwork img,
.player-cover img,
.performer-avatar img,
.cover-fit img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.audio-cover::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(45deg,transparent 0%,rgba(16,185,129,.18) 100%);
  opacity:0;
  transition:.2s;
  border-radius:inherit;
}
.audio-card:hover .audio-cover::after{opacity:1}

/* PLAY ICON ON COVER */
.audio-cover.play-trigger{
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  position:relative;
}
.audio-cover.play-trigger:focus{outline:none}
.play-icon{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(16,185,129,.95);
  box-shadow:0 2px 6px rgba(0,0,0,.18);
  opacity:0;
  transition:opacity .18s, transform .18s;
  cursor:pointer;
  font-size:11px;
  z-index:5;
}
.audio-card:hover .play-icon{opacity:1}
.play-icon:hover{transform:translate(-50%,-50%) scale(1.06)}
.is-playing .play-icon{opacity:1;background:var(--accent-secondary)}

/* TRACK TEXT */
.audio-link{
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
}
.audio-details{min-width:0;flex:1}
.audio-title-link{display:block;color:inherit;transition:.2s}
.audio-title-link:hover .song-name{color:var(--accent-primary)}

.song-name,
.song-title{
  font-weight:600;
  color:var(--text-primary);
  margin-bottom:2px;
  font-size:15px;
  line-height:1.35;
}
.song-artist{
  color:var(--text-secondary);
  font-size:13px;
  line-height:1.25;
}
.song-duration{
  color:var(--text-muted);
  font-size:12px;
  margin-left:8px;
  padding-right:4px;
  font-variant-numeric:tabular-nums;
}

/* TRACK ACTIONS */
.audio-controls{
  display:flex;
  align-items:center;
  gap:6px;
  opacity:.9;
  transition:.2s;
}
.audio-card:hover .audio-controls{opacity:1}
.download-btn,
.more-btn{
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
  background:#FFFFFF;
  border:1px solid var(--border-color);
  transition:.2s;
  font-size:11px;
  cursor:pointer;
  text-decoration:none;
}
.download-btn:hover{
  background:var(--gradient-primary);
  border-color:transparent;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 3px 8px rgba(16,185,129,.45);
}
.more-btn:hover{
  background:var(--bg-hover);
  border-color:var(--accent-primary);
  color:var(--accent-primary);
}

/* TRACK BADGE / STATES */
.audio-badge{
  background:var(--gradient-primary);
  color:#fff;
  padding:2px 6px;
  border-radius:7px;
  font-size:10px;
  font-weight:700;
  position:absolute;
  left:-8px;
  top:50%;
  transform:translateY(-50%);
  box-shadow:var(--shadow-sm);
  z-index:5;
  min-width:18px;
  text-align:center;
}
.is-active{
  background:#FFFFFF;
  border-color:var(--accent-primary);
  box-shadow:0 4px 12px rgba(16,185,129,.25);
}
.is-active::before{transform:scaleY(1)}
.is-active .audio-badge{
  background:var(--accent-secondary);
  animation:pulse 2s infinite;
}
.is-playing .play-icon i::before{content:'\f04c'}
.is-stopped .play-icon{opacity:.7}

/* SINGLE MP3 HEADER */
.song-header{padding:20px 18px;margin-bottom:20px}
.song-info{
  gap:18px;
  display:flex;
  align-items:center;
}
.overlay-play{
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(15,42,50,.15) 0%,
    rgba(15,42,50,.45) 100%
  );
}
.song-artwork:hover .overlay-play{opacity:1}
.play-btn-lg{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradient-primary);
  color:#fff;
  font-size:18px;
  transition:.2s;
  box-shadow:var(--shadow-sm);
}
.play-btn-lg:hover{transform:scale(1.06)}

/* MP3 TEXT / META */
.song-meta{min-width:0}
.full-title{
  font-size:1.7rem;
  font-weight:800;
  margin-bottom:.7rem;
  color:var(--text-primary);
  word-break:break-word;
  white-space:normal;
  line-height:1.25;
}
.meta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:.5rem;
}
.meta-info{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:var(--text-secondary);
  font-size:13px;
}
.meta-info i{
  color:var(--accent-primary);
  font-size:12px;
  width:14px;
}
.song-category{display:flex;gap:10px}
.category-tag{
  background:var(--accent-primary);
  color:#fff;
  padding:3px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
}
.publish-date{color:var(--text-muted);font-size:12px}

/* MAIN PLAY / DOWNLOAD BUTTONS */
.action-buttons{
  display:flex;
  gap:10px;
  flex-shrink:0;
  align-items:center;
}
.action-buttons .action-btn,
.btn-listen,
.btn-save{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:12px 18px;
  border-radius:14px;
  font-weight:600;
  font-size:14px;
  line-height:1;
  text-decoration:none;
}
.btn-listen,
.btn-save{
  background:var(--gradient-primary);
  color:#fff!important;
  border:none;
  width:auto;
  height:auto;
  cursor:pointer;
  transition:.2s;
  box-shadow:0 4px 12px rgba(16,185,129,.35);
}
.btn-listen:hover,
.btn-save:hover,
.action-buttons .action-btn:hover{
  background:linear-gradient(135deg,#059669 0%,#10B981 100%);
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(16,185,129,.45);
}
.btn-secondary{
  background:#F0FAF6;
  color:var(--accent-primary);
  border:1px solid var(--accent-primary);
}
.btn-secondary:hover{
  background:var(--gradient-primary);
  color:#fff!important;
}
.btn-icon{padding:12px;width:44px;min-width:44px}
.playlist-save-btn{
  border:1px solid rgba(236,72,153,.22);
  background:linear-gradient(180deg,#fff8fb 0%,#fff1f2 100%);
  color:#e11d48;
  box-shadow:none;
}
.playlist-save-btn:hover{
  background:linear-gradient(135deg,#ec4899 0%,#f43f5e 100%)!important;
  color:#fff;
  border-color:transparent;
}
.playlist-save-btn.is-saved{
  background:linear-gradient(135deg,#ec4899 0%,#f43f5e 100%);
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 20px rgba(244,63,94,.28);
}
.playlist-remove-btn{
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ef4444;
  background:#fff;
  border:1px solid rgba(239,68,68,.16);
  transition:.2s;
  font-size:11px;
  cursor:pointer;
}
.playlist-remove-btn:hover{
  background:#ef4444;
  color:#fff;
  border-color:transparent;
  transform:translateY(-1px);
}

.playlist-page{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.playlist-page__lead{
  color:var(--text-secondary);
  font-size:14px;
  line-height:1.7;
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:var(--radius-lg);
  padding:16px 18px;
  box-shadow:var(--shadow-sm);
}
.playlist-page__stats{
  color:var(--text-muted);
  font-size:13px;
  font-weight:700;
}
.playlist-page__list{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.playlist-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  min-height:280px;
  border:1px dashed var(--border-color);
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  padding:28px 20px;
}
.playlist-empty__icon{
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#ec4899 0%,#f97316 100%);
  color:#fff;
  font-size:24px;
}
.playlist-empty__title{
  color:var(--text-primary);
  font-size:20px;
  font-weight:800;
}
.playlist-empty__text{
  max-width:560px;
  color:var(--text-secondary);
  line-height:1.7;
}

/* DESCRIPTION BLOCK */
.song-desc{
  padding:18px 16px;
  margin-bottom:20px;
}
.song-desc h3{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:1.1rem;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:10px;
}
.song-desc h3 i{
  color:var(--accent-secondary);
  font-size:16px;
}
.desc-text{
  color:var(--text-secondary);
  font-size:14px;
  line-height:1.7;
}
.desc-text.placeholder{
  text-align:center;
  color:var(--text-muted);
  font-style:italic;
}

/* GLOBAL BUTTON */
.action-btn,
button:not(.search-submit){
  background:var(--gradient-primary);
  color:#fff;
  padding:11px 18px;
  border-radius:14px;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}
.action-btn:hover,
button:not(.search-submit):hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
}

/* PLAYER */
.audio-player-wrap{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(248,252,250,.96);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--border-color);
  z-index:1000;
  transition:.2s;
}
.audio-player{
  max-width:1200px;
  margin:0 auto;
  padding:8px 12px;
  height:72px;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}
.player-progress{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:#D1E7E0;
  cursor:pointer;
}
.player-loaded{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  background:rgba(16,185,129,.4);
  border-radius:10px 10px 0 0;
}
.player-played{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  z-index:10;
  background:var(--gradient-primary);
}
.player-info{flex:1;min-width:0;padding-left:10px}
.player-title{
  font-weight:700;
  color:var(--text-primary);
  font-size:14px;
  margin-bottom:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.player-artist{
  color:var(--text-secondary);
  font-size:12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.player-controls{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.audioplayer-playpause a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradient-primary);
  color:#fff;
  font-size:16px;
  transition:.2s;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(16,185,129,.45);
}
.audioplayer-playpause a:hover{transform:scale(1.05)}
.player-prev,.player-next{
  width:28px;
  height:28px;
  background:#E8F5F0;
  border:1px solid var(--border-color);
  border-radius:50%;
  color:var(--text-secondary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
}
.player-prev:hover,.player-next:hover{
  background:var(--bg-hover);
  border-color:var(--accent-primary);
  color:var(--accent-primary);
}
.player-volume{
  position:relative;
  margin-left:10px;
  font-size:18px;
}
.audioplayer-muted .fa-volume-up:before{content:'\f6a9'}
.audioplayer-volume-button a{
  color:var(--text-secondary);
  opacity:.8;
  display:block;
  height:30px;
  line-height:30px;
  text-align:center;
  transition:.2s;
}
.audioplayer-volume-button a:hover{
  opacity:1;
  color:var(--accent-primary);
}
.audioplayer-volume-adjust{
  position:absolute;
  left:0;
  bottom:100%;
  width:30px;
  height:100px;
  background:var(--bg-card);
  border:1px solid var(--border-color);
  box-shadow:var(--shadow-md);
  padding:10px;
  display:none;
  border-radius:10px;
}
.audioplayer-volume-adjust>div{
  width:10px;
  height:80px;
  border-radius:6px;
  position:relative;
  cursor:pointer;
  background:#D1E7E0;
  overflow:hidden;
}
.audioplayer-volume-adjust>div>div{
  width:100%!important;
  background:var(--gradient-primary);
  position:absolute;
  left:0;
  bottom:0;
  z-index:10;
  border-radius:6px 6px 0 0;
}
.player-volume:hover .audioplayer-volume-adjust,
.audioplayer-volume:hover .audioplayer-volume-adjust{display:block}
.player-download{
  font-size:18px;
  color:var(--text-secondary);
  margin-left:10px;
  padding:8px;
  border-radius:10px;
  transition:.2s;
}
.player-download:hover{
  color:var(--accent-primary);
  background:var(--bg-hover);
}
.player-time{
  font-size:12px;
  color:var(--text-muted);
  margin-left:10px;
  font-variant-numeric:tabular-nums;
}
.audioplayer-time-current:after{
  content:' / ';
  margin:0 2px;
}

/* FOOTER */
.site-footer{
  background:var(--bg-secondary);
  border-top:1px solid var(--border-color);
  padding:18px;
  margin-top:auto;
}
.site-footer a{color:var(--accent-primary)}
.footer-text{
  color:var(--text-secondary);
  line-height:1.7;
  font-size:13px;
}

/* MOBILE SIDE PANEL */
.overlay-bg{
  position:fixed;
  z-index:998;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(26,46,53,.45);
  cursor:pointer;
  display:none;
}
.mobile-panel{
  width:280px;
  height:100%;
  overflow:auto;
  background:var(--bg-card);
  padding:20px;
  z-index:9999;
  position:fixed;
  left:-320px;
  top:0;
  transition:left .35s;
  border-right:1px solid var(--border-color);
}
.mobile-panel.visible{left:0}
.close-btn{
  cursor:pointer;
  display:block;
  left:280px;
  top:-40px;
  position:fixed;
  z-index:9999;
  width:40px;
  height:40px;
  line-height:40px;
  text-align:center;
  font-size:18px;
  background:var(--accent-primary);
  color:#fff;
  transition:top .35s;
  border-radius:0 0 12px 0;
}
.close-btn.visible{top:0}
body.menu-open{
  overflow:hidden;
  width:100%;
  height:100%;
}

/* HELPERS */
.flex-row{display:flex;flex-wrap:wrap}
.flex-col{display:flex;flex-direction:column}
.flex-center{justify-content:center}
.flex-middle{align-items:center}
.flex-between{justify-content:space-between}
.flex-first{order:-1}
.flex-grow{flex:1;min-width:0}
.text-truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.invisible{display:none}

/* ANIMATION */
@keyframes pulse{
  0%,100%{opacity:1}
  50%{opacity:.7}
}
.animate-pulse{animation:pulse 1.5s ease-in-out infinite}
/* Play icon should not use pulse animation (it breaks centering) */
.play-icon.animate-pulse{animation:none}

/* SCROLLBAR */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:#E8F5F0}
::-webkit-scrollbar-thumb{
  background:#A7D7C5;
  border-radius:8px;
}
::-webkit-scrollbar-thumb:hover{background:#6EE7B7}
::selection{
  background: rgba(16,185,129,.28); /* green highlight */
  color: var(--text-primary);
}
::-moz-selection{
  background: rgba(16,185,129,.28);
  color: var(--text-primary);
}

/* PAGINATION */
#bottom-nav{
  margin:18px 0 6px;
  padding:8px 0 2px;
  border-top:1px solid var(--border-color);
}
#bottom-nav .pagi-nav{gap:10px}
#bottom-nav .navigation{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
}
#bottom-nav .navigation a,
#bottom-nav .navigation>span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  padding:0 12px;
  font-weight:700;
  line-height:1;
  text-decoration:none;
  border:1px solid var(--border-color);
  border-radius:12px;
  background:var(--bg-secondary);
  color:var(--text-primary);
  transition:.18s ease;
}
#bottom-nav .navigation a:hover{
  border-color:var(--accent-primary);
  color:var(--accent-primary);
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
}
#bottom-nav .navigation>span{
  background:var(--gradient-primary);
  color:#fff;
  border-color:transparent;
  box-shadow:var(--shadow-sm);
}
#bottom-nav .navigation .nav_ext{
  min-width:auto;
  height:auto;
  padding:0 6px;
  border:0;
  background:transparent;
  color:var(--text-muted);
  font-weight:700;
  box-shadow:none;
}
#bottom-nav .navigation a.prev,
#bottom-nav .navigation a.next{
  padding:0 14px;
  min-width:46px;
}
#bottom-nav .navigation a:focus-visible{
  outline:0;
  box-shadow:0 0 0 3px rgba(16,185,129,.25);
  border-color:var(--accent-primary);
}

/* "SHOW MORE" */
.load-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 26px;
  font-weight:600;
  font-size:14.5px;
  color:#fff;
  background:var(--accent-primary);
  border-radius:12px;
  box-shadow:0 2px 10px rgba(16,185,129,.35);
  transition:.22s ease;
  text-decoration:none;
}
.load-more-btn:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
  box-shadow:0 5px 16px rgba(5,150,105,.45);
}

/* TOP ARTISTS */
.artists-section{padding:16px;margin-bottom:20px}
.artists-section .section-heading{margin-bottom:14px}
.performers-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px 16px;
  list-style:none;
}
.performer-item{display:block}
.performer-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  background:#FFFFFF;
  border:1px solid var(--border-color);
  border-radius:var(--radius-md);
  padding:12px 8px;
  transition:.2s;
}
.performer-link:hover{
  border-color:var(--accent-primary);
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}
.performer-name{
  display:-webkit-box;
  -webkit-line-clamp:1;
  line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-weight:700;
  font-size:13px;
  color:var(--text-primary);
  max-width:100%;
  line-height:1.2;
}

/* COMMENTS */
.comments-area{margin-top:28px}
.comments-area .section-heading{
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
}
.comment-form{
  background:#FFFFFF;
  border:1px solid #D1E7E0;
  border-radius:14px;
  padding:14px;
  margin-bottom:18px;
}
.form-row{display:flex;gap:12px;flex-wrap:wrap}
.form-input,.form-textarea{
  width:100%;
  border:1px solid #D1E7E0;
  border-radius:10px;
  padding:12px 14px;
  font-size:15px;
  outline:none;
}
.form-input:focus,.form-textarea:focus{
  border-color:#6EE7B7;
  box-shadow:0 0 0 2px rgba(16,185,129,.25);
}
.form-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:10px;
  border:0;
  background:#1A2E35;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.form-btn[disabled]{opacity:.6;cursor:not-allowed}
.comments-list .comment-item{
  padding:10px 0;
  border-bottom:1px solid #E8F5F0;
}
.comment-item .comment-meta{
  font-size:12px;
  color:#5A7680;
  margin-bottom:4px;
}
.comment-item .comment-author{font-weight:700;margin-right:8px}
.no-comments{color:#A0B5BB;font-size:14px}

/* "KO'PROQ MATN" */
.toggle-text{
  display:inline-block;
  margin-top:12px;
  padding:6px 10px;
  font-weight:700;
  border:0;
  background:transparent;
  color:var(--accent-secondary);
  cursor:pointer;
  border-radius:8px;
  transition:transform .12s ease,background-color .12s ease;
  font-size:14px;
}
.toggle-text:hover{
  background-color:rgba(245,158,11,0.08);
  transform:translateY(-1px);
}
.expandable .expandable-mask{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:72px;
  pointer-events:none;
  background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,1));
}

/* LINE CLAMP */
.song-name,
.song-artist,
.audio-title-link .song-name,
.audio-title-link .song-artist{
  white-space:normal!important;
  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

/* RESPONSIVE */
@media (min-width:969px){
  .search-area{flex:0 1 520px;margin-left:auto;margin-right:0}
}
@media (max-width:968px){
  .sidebar-left{display:none}
  .menu-toggle{display:flex;position:relative;z-index:3;flex:0 0 40px}
  .main-grid{display:block}
  .content-area{width:100%}
  .site-header{
    flex-wrap:nowrap;
    gap:8px;
    justify-content:space-between;
  }
  .brand-logo{order:1;flex:0 0 auto}
  .brand-mark{
    width:36px;
    height:36px;
    border-radius:11px;
    font-size:17px;
  }
  .header-playlist-btn{
    order:2;
    width:42px;
    min-width:42px;
    height:42px;
    padding:0;
    justify-content:center;
    border-radius:12px;
  }
  .header-playlist-btn__text{display:none}
  .header-playlist-btn__icon{font-size:16px}
  .header-playlist-btn__count{
    right:-4px;
    top:-4px;
  }
  .search-area{order:3;flex:1 1 auto;min-width:0;width:auto;margin:0 4px;position:relative;z-index:1}
  .search-form input{
    height:42px;
    padding:0 48px 0 14px;
    font-size:15px;
  }
  .search-submit{
    width:34px;
    height:34px;
    top:4px;
    right:4px;
    border-radius:10px;
  }
  .menu-toggle{order:4;margin-left:0}
  .song-name,.song-title{font-size:15px}
  .song-artist{font-size:13px;line-height:1.3}
  .song-duration{font-size:12px}
  .audio-card{
    padding:10px 12px;
    gap:8px;
    margin-bottom:6px;
    min-height:56px;
  }
  .audio-cover{width:44px;height:44px}
  .play-icon{width:24px;height:24px;font-size:11px}
  .download-btn,
  .more-btn{width:28px;height:28px;font-size:13px}
  .audio-badge{font-size:12px;padding:1px 5px}
  .song-header{padding:16px}
  .song-info{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }
  .song-artwork{
    width:96px;
    height:96px;
    margin:0 auto;
  }
  .full-title{font-size:1.4rem}
  .action-buttons{
    width:100%;
    display:grid;
    grid-template-columns:52px minmax(0,1fr) minmax(0,1fr);
    gap:8px;
    align-items:stretch;
  }
  .action-buttons .action-btn,
  .btn-listen,
  .btn-save{
    min-width:0;
    width:100%;
    height:44px;
    padding:10px 13px;
    border-radius:12px;
    font-size:14px;
    gap:6px;
  }
  .playlist-save-btn{
    width:52px!important;
    min-width:52px!important;
    padding:0!important;
    font-size:15px!important;
  }
  .audio-player{
    padding:10px 12px;
    height:78px!important;
  }
  .player-volume{display:none}
}
@media (max-width:560px){
  .section-heading{font-size:1.25rem}
  .widget-box{padding:14px}
  .site-footer{padding:14px}
  .site-header{padding:10px 12px}
  .brand-mark{
    width:34px;
    height:34px;
    border-radius:10px;
    font-size:16px;
  }
  .header-playlist-btn,
  .menu-toggle{
    width:40px;
    min-width:40px;
    height:40px;
  }
  .search-area{margin:0 6px}
  .search-form input{
    height:40px;
    padding:0 44px 0 12px;
    font-size:14px;
  }
  .search-submit{
    width:32px;
    height:32px;
    border-radius:9px;
  }
  .action-buttons{
    grid-template-columns:46px minmax(0,1fr) minmax(0,1fr);
    gap:6px;
  }
  .action-buttons .action-btn,
  .btn-listen,
  .btn-save{
    height:42px;
    padding:9px 12px;
    font-size:13px;
  }
  .playlist-save-btn{
    width:46px!important;
    min-width:46px!important;
  }
  #bottom-nav .navigation a,
  #bottom-nav .navigation>span{
    min-width:36px;
    height:36px;
    padding:0 10px;
    border-radius:10px;
  }
  #bottom-nav .navigation{gap:6px}
  .performers-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .performer-link{min-height:126px}
  .performer-avatar{
    width:64px;
    height:64px;
  }
  .performer-name{font-size:12px}
}
@media (max-width:480px){
  .load-more-btn{
    padding:9px 22px;
    font-size:14px;
    border-radius:10px;
  }
}
@media (max-width:768px){
  .audio-player{height:78px!important}
  .player-cover{width:40px;height:40px}
  .audioplayer-playpause a{width:44px;height:44px}
  .player-prev,.player-next,.ap-prev,.ap-next{width:26px;height:26px}
  .player-title,.ap-title{font-size:13.5px}
  .player-artist,.ap-artist{font-size:11.5px}
  .ap-img{width:40px;height:40px}
  .ap-dl{font-size:16px;margin-left:6px;padding:6px}
  .ap-time{font-size:11px;margin-left:6px}
  .audioplayer-volume{display:none}
  .artist-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .monthly-top-artists__head{flex-direction:column;align-items:flex-start}
  .monthly-top-artists__subtitle{white-space:normal}
  .monthly-top-artists .artist-link{padding:14px 10px}
  .monthly-top-artists .artist-thumb{width:78px;height:78px}
  .monthly-top-artists .artist-name{font-size:14px}
}
@media (max-width:360px){
  .audio-player{
    height:72px!important;
    gap:8px;
  }
  .player-cover,.ap-img{
    width:36px;
    height:36px;
  }
  .audioplayer-playpause a{
    width:42px;
    height:42px;
  }
  .player-prev,.player-next,.ap-prev,.ap-next{
    width:24px;
    height:24px;
  }
  .ap-time,.ap-dl{display:none}
}

/* YON PANEL – FRESH TRACKS / ПИСЬМА */
.widget-content{margin-top:10px}
.widget-box .sidebar-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:7px 10px;
  border-radius:14px;
  text-decoration:none;
  background:transparent;
  transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
  position:relative;
}
.widget-box .sidebar-item:hover{
  background:rgba(232,245,240,.9);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(16,185,129,.25);
}
.widget-box .sidebar-thumb{
  width:32px;
  height:32px;
  border-radius:11px;
  background:#E8F5F0 !important;
  border:1px solid #A7D7C5;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 1px 4px rgba(16,185,129,.35);
  position:relative;
}
.widget-box .initial-letter{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  color:#059669 !important;
  background:linear-gradient(145deg,rgba(248,252,250,.86),rgba(167,215,197,.9));
}
.widget-box .sidebar-item:hover .sidebar-thumb{
  border-color:#6EE7B7;
  box-shadow:0 2px 8px rgba(16,185,129,.55);
}
.widget-box .sidebar-icon{
  margin-left:auto;
  font-size:14px;
  color:var(--text-muted);
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  transition:.18s ease;
}
.widget-box .sidebar-item:hover .sidebar-icon{
  color:var(--accent-primary);
  transform:translateX(1px);
}
.widget-box .track-info{min-width:0}
.widget-box .track-info .song-name{
  font-size:15px;
  font-weight:600;
  color:var(--text-primary);
  margin-bottom:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.widget-box .track-info .song-artist{
  font-size:12px;
  color:var(--text-secondary);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.widget-content hr{
  border:0;
  height:1px;
  margin:8px 0;
  background:rgba(16,185,129,.25);
}

/* MENYU – MUSIC ICONLAR */
.widget-box .nav-menu li a{
  position:relative;
  padding-left:34px !important;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.widget-box .nav-menu li a:before{
  content:"\f001";
  font-family:"Font Awesome 5 Pro","Font Awesome 5 Free","Font Awesome 6 Pro";
  font-weight:900;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  font-size:16px;
  color:#10B981;
  opacity:.85;
  transition:.2s;
}
.widget-box .nav-menu li a:hover:before{
  color:#059669;
  opacity:1;
  transform:translateY(-50%) scale(1.07);
}

/* ESKI CLASS LARNI YANGILARIGA MOSLASHTIRISH */
.wrap{min-height:100vh;display:flex;flex-direction:column}
.wrap-center{max-width:1200px;margin:20px auto;background:var(--bg-secondary);min-height:calc(100vh - 40px);box-shadow:var(--shadow-lg);border-radius:var(--radius-xl);overflow:hidden;border:1px solid rgba(16,185,129,.12)}
.cols{display:flex;min-height:calc(100vh - 64px)}
.gol-left{width:280px;background:linear-gradient(180deg,#E8F5F0 0%,#FFFFFF 60%,#FEF3C7 100%);border-right:1px solid var(--border-color);padding:20px 16px;overflow-y:auto}
.col-main{flex:1;padding:24px;background:var(--bg-secondary)}
.header{background:linear-gradient(120deg,rgba(232,245,240,.95),rgba(254,243,199,.9));backdrop-filter:blur(14px);padding:12px 18px;border-bottom:1px solid var(--border-color);position:sticky;top:0;z-index:100;display:flex;align-items:center;gap:14px;justify-content:space-between}
.logo{font-size:1.4rem;font-weight:800;color:var(--text-primary);display:flex;align-items:center;gap:.7rem;min-width:0;letter-spacing:.02em}
.btn-menu{display:none;width:40px;height:40px;border:1px solid var(--border-color);background:rgba(255,255,255,.9);border-radius:12px;color:var(--text-primary);align-items:center;justify-content:center;cursor:pointer;transition:.2s}
.search-wrap{flex:0 1 520px;margin-left:auto}
.search-box{position:relative}
.search-btn{position:absolute;right:4px;top:4px;width:36px;height:36px;border-radius:50%;background:var(--gradient-primary);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s;box-shadow:0 4px 10px rgba(16,185,129,.35)}
.june-box{background:var(--gradient-card);padding:16px 14px;margin-bottom:20px;border-radius:var(--radius-lg);border:1px solid var(--border-color);box-shadow:var(--shadow-sm)}
.june-box-title{font-size:1rem;font-weight:700;margin-bottom:12px;color:var(--text-primary);display:flex;align-items:center;gap:.5rem}
.june-box-content{margin-top:10px}
.side-nav{list-style:none}
.sect{margin-bottom:26px}
.sect-title{font-size:1.45rem;font-weight:800;margin-bottom:16px;color:var(--text-primary);display:flex;align-items:center;gap:.75rem}
.track-item{background:var(--bg-card);border-radius:16px;padding:10px 12px;margin-bottom:9px;border:1px solid var(--border-color);transition:.2s;position:relative;display:flex;align-items:center;gap:10px;min-height:54px}
.track-img{width:44px;height:44px;border-radius:12px;background:#D1E7E0;flex-shrink:0;overflow:hidden;position:relative}
.track-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:22px;height:22px;border-radius:999px;display:flex;align-items:center;justify-content:center;color:#fff;background:rgba(16,185,129,.95);box-shadow:0 2px 6px rgba(0,0,0,.18);opacity:0;transition:opacity .18s, transform .18s;cursor:pointer;font-size:11px}
.track-info{min-width:0;flex:1}
.track-title-link{display:block;color:inherit;transition:.2s}
.mp3-title{font-weight:600;color:var(--text-primary);margin-bottom:2px;font-size:14px;line-height:1.35}
.track-subtitle{color:var(--text-secondary);font-size:12px;line-height:1.25}
.track-time{color:var(--text-muted);font-size:11px;margin-left:8px;padding-right:4px}
.track-actions{display:flex;align-items:center;gap:6px;opacity:.9;transition:.2s}
.track-download-btn,.track-menu-btn{width:26px;height:26px;border-radius:999px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);background:#FFFFFF;border:1px solid var(--border-color);transition:.2s;font-size:11px;cursor:pointer;text-decoration:none}
.track-header-compact{padding:20px 18px;margin-bottom:20px;border-radius:var(--radius-lg);border:1px solid var(--border-color);box-shadow:var(--shadow-sm);background:var(--bg-card)}
.track-main-info{gap:18px;display:flex;align-items:center}
.track-artwork-small{width:120px;height:120px;border-radius:18px;flex-shrink:0;box-shadow:0 10px 25px rgba(16,185,129,.2);background:#D1E7E0;overflow:hidden;position:relative}
.track-details{min-width:0}
.track-name{font-size:1.7rem;font-weight:800;margin-bottom:.7rem;color:var(--text-primary);word-break:break-word;white-space:normal;line-height:1.25}
.track-meta-row{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:.5rem}
.meta-item{display:flex;align-items:center;gap:.45rem;color:var(--text-secondary);font-size:13px}
.meta-item i{color:var(--accent-primary);font-size:12px;width:14px}
.track-genre-date{display:flex;gap:10px}
.genre-tag{background:var(--accent-primary);color:#fff;padding:3px 12px;border-radius:999px;font-size:11px;font-weight:600}
.track-actions-compact{display:flex;gap:10px;flex-shrink:0;align-items:center}
.track-description-compact{padding:18px 16px;margin-bottom:20px;border-radius:var(--radius-lg);border:1px solid var(--border-color);box-shadow:var(--shadow-sm);background:var(--bg-card)}
.description-text{color:var(--text-secondary);font-size:14px;line-height:1.7}
.btn{background:var(--gradient-primary);color:#fff;padding:11px 18px;border-radius:14px;font-weight:600;cursor:pointer;transition:.2s;font-size:14px;display:inline-flex;align-items:center;gap:.5rem}
.wplayer{position:fixed;left:0;right:0;bottom:0;background:rgba(248,252,250,.96);backdrop-filter:blur(14px);border-top:1px solid var(--border-color);z-index:1000}
.audioplayer{max-width:1200px;margin:0 auto;padding:8px 12px;height:72px;display:flex;align-items:center;gap:12px;position:relative}
.ap-img{width:44px;height:44px;border-radius:12px;background:#D1E7E0;flex-shrink:0;overflow:hidden;position:relative}
.ap-info{flex:1;min-width:0;padding-left:10px;overflow:hidden}
.ap-title{font-weight:700;color:var(--text-primary);font-size:14px;margin-bottom:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ap-artist{color:var(--text-secondary);font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ap-btns{display:flex;align-items:center;gap:8px;flex-shrink:0}
.ap-prev,.ap-next{width:28px;height:28px;background:#E8F5F0;border:1px solid var(--border-color);border-radius:50%;color:var(--text-secondary);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.2s}
.ap-prev:hover,.ap-next:hover{background:var(--bg-hover);border-color:var(--accent-primary);color:var(--accent-primary)}
.footer{background:var(--bg-secondary);border-top:1px solid var(--border-color);padding:18px;margin-top:auto}
.footer-beware{color:var(--text-secondary);line-height:1.7;font-size:13px}
.overlay-box{position:fixed;z-index:998;left:0;top:0;width:100%;height:100%;background:rgba(26,46,53,.45);cursor:pointer;display:none}
.side-panel{width:280px;height:100%;overflow:auto;background:var(--bg-card);padding:20px;z-index:9999;position:fixed;left:-320px;top:0;transition:left .35s;border-right:1px solid var(--border-color)}
.btn-close{cursor:pointer;display:block;left:280px;top:-40px;position:fixed;z-index:9999;width:40px;height:40px;line-height:40px;text-align:center;font-size:18px;background:var(--accent-primary);color:#fff;transition:top .35s;border-radius:0 0 12px 0}
.fx-row{display:flex;flex-wrap:wrap}
.fx-col{display:flex;flex-direction:column}
.fx-center{justify-content:center}
.fx-middle{align-items:center}
.fx-between{justify-content:space-between}
.fx-1{flex:1;min-width:0}
.fx-first{order:-1}
/* Bottom player fx-row should not wrap */
.audioplayer.fx-row{flex-wrap:nowrap}
.ap-desc.fx-row{flex-wrap:nowrap}
.ap-btns.fx-row{flex-wrap:nowrap}
.nowrap{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hidden{display:none}
.btn-more{display:inline-flex;align-items:center;justify-content:center;padding:10px 26px;font-weight:600;font-size:14.5px;color:#fff;background:var(--accent-primary);border-radius:12px;box-shadow:0 2px 10px rgba(16,185,129,.35);transition:.22s ease;text-decoration:none}
.top-artists{padding:16px;margin-bottom:20px;border-radius:var(--radius-lg);border:1px solid var(--border-color);box-shadow:var(--shadow-sm);background:var(--bg-card)}
.artist-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px 16px;list-style:none}
.artist-link{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;background:#FFFFFF;border:1px solid var(--border-color);border-radius:var(--radius-md);padding:12px 8px;transition:.2s}
.artist-thumb{width:86px;height:86px;border-radius:999px;box-shadow:0 2px 8px rgba(16,185,129,.35);background:#fff;overflow:hidden;position:relative}
.artist-name{display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;font-weight:700;font-size:13px;color:var(--text-primary);max-width:100%;line-height:1.2}
.monthly-top-artists{margin-top:8px}
.monthly-top-artists__head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:14px}
.monthly-top-artists__head .section-heading{margin-bottom:0}
.monthly-top-artists__head h2{margin:0;font-size:1.1rem}
.monthly-top-artists__subtitle{color:var(--text-secondary);font-size:13px;white-space:nowrap}
.monthly-top-artists__meta{display:block;color:var(--text-secondary);font-size:12px;line-height:1.2}
.play-overlay{position:absolute;inset:0;background:rgba(26,46,53,.55);display:flex;align-items:center;justify-content:center;opacity:0;transition:.2s;cursor:pointer}
.play-btn-small{width:48px;height:48px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:var(--gradient-primary);color:#fff;font-size:18px;transition:.2s;box-shadow:var(--shadow-sm)}
.side-top-item{display:flex;align-items:center;gap:10px;padding:7px 10px;border-radius:14px;text-decoration:none;background:transparent;transition:background .18s ease, transform .18s ease, box-shadow .18s ease;position:relative}
.side-top-item-img{width:32px;height:32px;border-radius:11px;background:#E8F5F0 !important;border:1px solid #A7D7C5;flex-shrink:0;display:flex;align-items:center;justify-content:center;overflow:hidden;box-shadow:0 1px 4px rgba(16,185,129,.35);position:relative}
.side-letter{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;text-transform:uppercase;color:#059669 !important;background:linear-gradient(145deg,rgba(248,252,250,.86),rgba(167,215,197,.9))}
.side-item-icon{margin-left:auto;font-size:14px;color:var(--text-muted);flex-shrink:0;display:flex;align-items:center;justify-content:center;min-width:18px;transition:.18s ease}
.track-desc{min-width:0}
.img-fit{overflow:hidden;position:relative}
.img-fit img{width:100%;height:100%;object-fit:cover;display:block}
.anim{transition:.2s}
.js-item{cursor:pointer}
.js-play{cursor:pointer}
.js-item-played .track-play{opacity:1;background:var(--accent-secondary)}
.js-item-current{background:#FFFFFF;border-color:var(--accent-primary);box-shadow:0 4px 12px rgba(16,185,129,.25)}
.track-item:hover{background:#FFFFFF;border-color:var(--border-light);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.track-item:hover .track-play{opacity:1}
.track-item:hover .track-actions{opacity:1}
.track-download-btn:hover{background:var(--gradient-primary);border-color:transparent;color:#fff;transform:translateY(-1px);box-shadow:0 3px 8px rgba(16,185,129,.45)}
.track-menu-btn:hover{background:var(--bg-hover);border-color:var(--accent-primary);color:var(--accent-primary)}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-sm)}
.btn-more:hover{background:var(--accent-hover);transform:translateY(-1px);box-shadow:0 5px 16px rgba(5,150,105,.45)}
.artist-link:hover{border-color:var(--accent-primary);box-shadow:var(--shadow-sm);transform:translateY(-1px)}
.side-top-item:hover{background:rgba(232,245,240,.9);transform:translateY(-1px);box-shadow:0 4px 12px rgba(16,185,129,.25)}
.side-top-item:hover .side-top-item-img{border-color:#6EE7B7;box-shadow:0 2px 8px rgba(16,185,129,.55)}
.side-top-item:hover .side-item-icon{color:var(--accent-primary);transform:translateX(1px)}
.track-artwork-small:hover .play-overlay{opacity:1}
.play-btn-small:hover{transform:scale(1.06)}
.audioplayer-bar{position:absolute;top:0;left:0;right:0;height:3px;background:#D1E7E0;cursor:pointer}
.audioplayer-bar-loaded{position:absolute;left:0;top:0;height:100%;background:rgba(16,185,129,.4);border-radius:10px 10px 0 0}
.audioplayer-bar-played{position:absolute;left:0;top:0;height:100%;z-index:10;background:var(--gradient-primary)}
.audioplayer-volume{position:relative;margin-left:10px;font-size:18px}
.ap-dl{font-size:18px;color:var(--text-secondary);margin-left:10px;padding:8px;border-radius:10px;transition:.2s}
.ap-dl:hover{color:var(--accent-primary);background:var(--bg-hover)}
.ap-time{font-size:12px;color:var(--text-muted);margin-left:10px;font-variant-numeric:tabular-nums;display:flex;align-items:center;gap:2px;white-space:nowrap}
.side-panel.active{left:0}
.btn-close.active{top:0}
body.opened-menu{overflow:hidden;width:100%;height:100%}
.loading{animation:pulse 1.5s ease-in-out infinite}
.release-date{color:var(--text-muted);font-size:12px}
.track-count{background:var(--gradient-primary);color:#fff;padding:2px 6px;border-radius:7px;font-size:10px;font-weight:700;position:absolute;left:-8px;top:50%;transform:translateY(-50%);box-shadow:var(--shadow-sm);z-index:5;min-width:18px;text-align:center}
.jx-comments{margin-top:28px}
.jx-c-form{background:#FFFFFF;border:1px solid #D1E7E0;border-radius:14px;padding:14px;margin-bottom:18px}
.jx-c-row{display:flex;gap:12px;flex-wrap:wrap}
.jx-input,.jx-textarea{width:100%;border:1px solid #D1E7E0;border-radius:10px;padding:12px 14px;font-size:15px;outline:none}
.jx-input:focus,.jx-textarea:focus{border-color:#6EE7B7;box-shadow:0 0 0 2px rgba(16,185,129,.25)}
.jx-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:10px;border:0;background:#1A2E35;color:#fff;font-weight:600;cursor:pointer}
.jx-btn[disabled]{opacity:.6;cursor:not-allowed}
.jx-list .jx-item{padding:10px 0;border-bottom:1px solid #E8F5F0}
.jx-item .jx-meta{font-size:12px;color:#5A7680;margin-bottom:4px}
.jx-item .jx-name{font-weight:700;margin-right:8px}
.jx-empty{color:#A0B5BB;font-size:14px}
.section-title-compact{font-size:1.25rem;font-weight:700;margin-bottom:14px;color:var(--text-primary);display:flex;align-items:center;gap:.5rem}
.recommendations-compact{margin-top:20px}
.recommendations-list{margin-top:12px}
.show-text-btn{display:inline-block;margin-top:12px;padding:6px 10px;font-weight:700;border:0;background:transparent;color:var(--accent-secondary);cursor:pointer;border-radius:8px;transition:transform .12s ease,background-color .12s ease;font-size:14px}
.show-text-btn:hover{background-color:rgba(245,158,11,0.08);transform:translateY(-1px)}
.ftext .ftext-mask{content:"";position:absolute;left:0;right:0;bottom:0;height:72px;pointer-events:none;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,1))}
.btn-outline{background:#F0FAF6;color:var(--accent-primary);border:1px solid var(--accent-primary)}
.btn-outline:hover{background:var(--gradient-primary);color:#fff!important}
.btn--icon{padding:12px;width:44px;min-width:44px}
@media (max-width:968px){
  .gol-left{display:none}
  .btn-menu{display:flex}
  .cols{display:block}
  .col-main{width:100%}
}
/* =========================
   MOBILE FIX
========================= */

@media (max-width: 992px){

  .site-container{
    margin:0;
    border-radius:0;
  }

  .main-grid{
    flex-direction:column;
  }

  .sidebar-left{
    display:block !important;
    position:fixed;
    left:-320px;
    top:0;
    width:280px;
    height:100%;
    z-index:9999;
    background:#fff;
    transition:.3s;
  }

  .sidebar-left.active{
    left:0;
  }

  .content-area{
    padding:14px;
  }

  .section-heading h1{
    font-size:1.4rem;
  }

  .audio-card{
    padding:10px 12px;
    min-height:56px;
  }

  .song-name{
    font-size:15px;
  }

  .song-artist{
    font-size:13px;
  }

  .audio-controls{
    gap:4px;
  }

  .song-duration{
    font-size:12px;
  }

  .search-area{flex:1}

}


/* --- FIX: play trigger + icon alignment (button/div) --- */
.play-trigger{cursor:pointer;-webkit-tap-highlight-color:transparent}
.audio-cover.play-trigger{display:flex;align-items:center;justify-content:center;position:relative}
.play-icon{pointer-events:none} /* click goes to cover */
.js-item.is-playing .play-icon i:before{content:"\f04c"} /* fa-pause */
.js-item.is-stopped .play-icon i:before{content:"\f04b"} /* fa-play */

/* Bottom player: prevent content from going below screen */
body{padding-bottom:80px}

.artist-page{display:flex;flex-direction:column;gap:22px;margin-bottom:24px}
.artist-hero{display:grid;grid-template-columns:240px minmax(0,1fr);gap:28px;padding:28px;border:1px solid var(--border-color);border-radius:28px;background:
radial-gradient(circle at top left, rgba(16,185,129,.14), transparent 34%),
linear-gradient(135deg,#ffffff 0%,#f8fffb 58%,#eefaf3 100%);box-shadow:0 18px 40px rgba(15,23,42,.06)}
.artist-hero__media{position:relative}
.artist-hero__media::after{content:"";position:absolute;inset:auto 16px -12px 16px;height:28px;border-radius:50%;background:rgba(16,185,129,.16);filter:blur(16px);z-index:0}
.artist-hero__media img{position:relative;z-index:1;display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:28px;background:#fff;border:1px solid rgba(16,185,129,.10);box-shadow:0 18px 42px rgba(16,185,129,.14)}
.artist-hero__body{min-width:0;display:flex;flex-direction:column;justify-content:center}
.artist-hero__kicker{margin-bottom:10px;color:var(--accent-primary);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.artist-hero__tagline{max-width:700px;margin-top:4px;color:var(--text-secondary);font-size:15px;line-height:1.7}
.artist-hero__stats{display:flex;flex-wrap:wrap;gap:14px;margin:22px 0 0}
.artist-stat{min-width:180px;padding:16px 18px;border-radius:20px;background:rgba(255,255,255,.92);border:1px solid rgba(16,185,129,.12);box-shadow:0 10px 24px rgba(15,23,42,.05)}
.artist-stat__label{display:block;margin-bottom:8px;color:var(--text-secondary);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em}
.artist-stat__value{font-size:28px;line-height:1;color:var(--text-primary)}
.artist-story-card,.artist-tracks{padding:24px;border:1px solid var(--border-color);border-radius:24px;background:#fff;box-shadow:0 14px 32px rgba(15,23,42,.04)}
.artist-story-card__title{margin-bottom:12px;color:var(--text-primary);font-size:18px;font-weight:800}
.artist-hero__story{color:var(--text-secondary);line-height:1.85;font-size:15px}
.artist-hero__story p:last-child{margin-bottom:0}
.artist-tracks__head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid rgba(148,163,184,.18)}
.artist-tracks__eyebrow{margin-bottom:6px;color:var(--accent-primary);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.artist-tracks__title{margin:0;color:var(--text-primary);font-size:24px;line-height:1.2}
.artist-tracks .widget-content{padding:0;background:transparent;border:0;box-shadow:none}

@media (max-width: 768px){
  .artist-page{gap:18px}
  .artist-hero{grid-template-columns:1fr;padding:20px;gap:20px;border-radius:24px}
  .artist-hero__media{max-width:180px;margin:0 auto}
  .artist-hero__body{width:100%;align-items:stretch}
  .artist-hero__tagline{font-size:14px}
  .artist-hero__stats{display:grid;grid-template-columns:1fr;gap:12px;width:100%}
  .artist-stat{width:100%;min-width:0;padding:14px 15px}
  .artist-stat__value{font-size:18px;line-height:1.2;word-break:break-word}
  .artist-story-card,.artist-tracks{padding:18px;border-radius:20px}
  .artist-tracks__title{font-size:20px}
}

@media (max-width: 768px){
  .monthly-top-artists .artist-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px}
  .monthly-top-artists .artist-link{padding:14px 10px}
  .monthly-top-artists .artist-thumb{width:78px;height:78px}
  .monthly-top-artists .artist-name{font-size:14px}
  .monthly-top-artists .monthly-top-artists__head{flex-direction:column;align-items:flex-start}
  .monthly-top-artists .monthly-top-artists__subtitle{white-space:normal}
}

.mobile-nav-overlay{display:none}
.mobile-nav-panel{display:none}

@media (max-width: 968px){
  .mobile-nav-overlay{display:block;position:fixed;inset:0;background:rgba(15,23,42,.45);opacity:0;visibility:hidden;pointer-events:none;transition:.25s ease;z-index:9998}
  .mobile-nav-overlay.is-open{opacity:1;visibility:visible;pointer-events:auto}
  .mobile-nav-panel{display:block;position:fixed;top:0;left:0;width:min(320px,86vw);height:100vh;background:#fff;box-shadow:0 18px 40px rgba(15,23,42,.22);transform:translateX(-100%);transition:.28s ease;z-index:9999;overflow:hidden}
  .mobile-nav-panel.is-open{transform:translateX(0)}
  .mobile-nav-panel__head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:16px 16px 12px;border-bottom:1px solid var(--border-color);background:linear-gradient(120deg,rgba(232,245,240,.95),rgba(254,243,199,.9))}
  .mobile-nav-panel__body{height:calc(100vh - 70px);padding:12px 12px 18px;overflow:auto}
  .mobile-nav-panel__body .widget-content{padding:0;background:transparent;border:0;box-shadow:none}
  .mobile-nav-panel__close{width:38px;height:38px;border:1px solid var(--border-color);border-radius:12px;background:#fff;color:var(--text-primary);display:flex;align-items:center;justify-content:center}
}
