:root{
  --bg-primary:#FDFBFF;
  --bg-secondary:#FFFFFF;
  --bg-card:#F9FAFF;
  --bg-hover:#F3ECFF;

  --text-primary:#0F172A;
  --text-secondary:#4B5563;
  --text-muted:#9CA3AF;

  --accent-primary:#6366F1;
  --accent-hover:#4F46E5;
  --accent-secondary:#EC4899;

  --border-color:#E4E4F7;
  --border-light:#D4D4F5;

  --gradient-primary:linear-gradient(135deg,#6366F1 0%,#EC4899 100%);
  --gradient-card:linear-gradient(145deg,#FFFFFF 0%,#F4F3FF 100%);

  --shadow-sm:0 2px 8px rgba(15,23,42,.05);
  --shadow-md:0 8px 20px rgba(15,23,42,.08);
  --shadow-lg:0 16px 36px rgba(15,23,42,.10);

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:18px;
  --radius-xl:26px;
}

/* 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:radial-gradient(circle at top,#F5F3FF 0%,#FDFBFF 40%,#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-secondary)}
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 */
.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(148,163,184,.18);
}
.cols{display:flex;min-height:calc(100vh - 64px)}
.gol-left{
  width:280px;
  background:linear-gradient(180deg,#F5F3FF 0%,#FFFFFF 60%,#ECFEFF 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 */
.header{
  background:linear-gradient(120deg,rgba(236,252,255,.9),rgba(245,243,255,.92));
  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;
}
.logo img{
  width:34px;
  height:34px;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(99,102,241,.35);
}

/* MOBILE MENU */
.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;
}
.btn-menu:hover{
  background:var(--bg-hover);
  border-color:var(--accent-primary);
  transform:translateY(-1px);
}

/* SEARCH */
.search-wrap{flex:0 1 520px;margin-left:auto}
.search-box{position:relative}
.search-box input{
  width:100%;
  height:44px;
  background:#F5F3FF;
  border:1px solid var(--border-color);
  border-radius:999px;
  padding:0 54px 0 16px;
  color:var(--text-primary);
  font-size:14px;
  transition:.2s;
}
.search-box input:focus{
  border-color:var(--accent-primary);
  box-shadow:0 0 0 3px rgba(99,102,241,.18);
  background:#FFFFFF;
}
.search-box input::placeholder{color:var(--text-muted)}
.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(99,102,241,.35);
}
.search-btn:hover{
  transform:scale(1.06);
  box-shadow:0 6px 16px rgba(79,70,229,.45);
}

/* CARDS / BLOCKS */
.june-box,
.track-header-compact,
.track-description-compact,
.top-artists{
  border-radius:var(--radius-lg);
  border:1px solid var(--border-color);
  box-shadow:var(--shadow-sm);
  background:var(--bg-card);
}
.june-box{
  background:var(--gradient-card);
  padding:16px 14px;
  margin-bottom:20px;
}
.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-title::before{
  content:'';
  width:6px;
  height:18px;
  background:var(--gradient-primary);
  border-radius:999px;
}

/* SIDE NAVIGATION */
.side-nav{list-style:none}
.side-nav li{margin-bottom:6px}
.side-nav 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;
}
.side-nav a:before{
  content:'\f660';
  font-family:'Font Awesome 6 Pro';
  margin-right:10px;
  color:var(--accent-primary);
  font-size:16px;
  opacity:.8;
}
.side-nav a:hover{
  background:var(--bg-hover);
  color:var(--accent-primary);
  transform:translateX(3px);
  box-shadow:0 4px 10px rgba(148,163,184,.25);
}

/* SECTION TITLE */
.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;
}
.sect-title::after{
  content:'';
  flex:1;
  height:2px;
  background:linear-gradient(90deg,var(--accent-primary) 0%,var(--accent-secondary) 40%,transparent 100%);
}

/* TRACK LIST */
.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-item:hover{
  background:#FFFFFF;
  border-color:var(--border-light);
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.track-item::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;
}
.track-item:hover::before{transform:scaleY(1)}

/* COVER IMG (list/mp3/player/artists) */
.track-img,
.track-artwork-small,
.ap-img,
.artist-thumb,
.img-fit{
  overflow:hidden;
  position:relative;
}
.track-img,
.ap-img{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#E5E7EB;
  flex-shrink:0;
}
.track-artwork-small{
  width:120px;
  height:120px;
  border-radius:18px;
  flex-shrink:0;
  box-shadow:0 10px 25px rgba(79,70,229,.2);
  background:#E5E7EB;
}
.artist-thumb{
  width:86px;
  height:86px;
  border-radius:999px;
  box-shadow:0 2px 8px rgba(148,163,184,.35);
  background:#fff;
}
.track-img img,
.track-artwork-small img,
.ap-img img,
.artist-thumb img,
.img-fit img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.track-img::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(45deg,transparent 0%,rgba(99,102,241,.18) 100%);
  opacity:0;
  transition:.2s;
  border-radius:inherit;
}
.track-item:hover .track-img::after{opacity:1}

/* PLAY ICON ON COVER */
.track-img.js-play{
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}
.track-img.js-play:focus{outline:none}
.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(99,102,241,.95);
  box-shadow:0 2px 6px rgba(0,0,0,.18);
  opacity:0;
  transition:opacity .18s, transform .18s;
  cursor:pointer;
  font-size:11px;
}
.track-item:hover .track-play{opacity:1}
.track-play:hover{transform:translate(-50%,-50%) scale(1.06)}
.js-item-played .track-play{opacity:1;background:var(--accent-secondary)}

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

.mp3-title,
.track-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;
  font-variant-numeric:tabular-nums;
}

/* TRACK ACTIONS */
.track-actions{
  display:flex;
  align-items:center;
  gap:6px;
  opacity:.9;
  transition:.2s;
}
.track-item:hover .track-actions{opacity:1}
.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-download-btn:hover{
  background:var(--gradient-primary);
  border-color:transparent;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 3px 8px rgba(79,70,229,.45);
}
.track-menu-btn:hover{
  background:var(--bg-hover);
  border-color:var(--accent-primary);
  color:var(--accent-primary);
}

/* TRACK BADGE / STATES */
.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;
}
.js-item-current{
  background:#FFFFFF;
  border-color:var(--accent-primary);
  box-shadow:0 4px 12px rgba(79,70,229,.25);
}
.js-item-current::before{transform:scaleY(1)}
.js-item-current .track-count{
  background:var(--accent-secondary);
  animation:pulse 2s infinite;
}
.js-item-played .track-play i::before{content:'\f04c'}
.js-item-stopped .track-play{opacity:.7}

/* SINGLE MP3 HEADER */
.track-header-compact{padding:20px 18px;margin-bottom:20px}
.track-main-info{
  gap:18px;
  display:flex;
  align-items:center;
}
.play-overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.2s;
  cursor:pointer;
}
.track-artwork-small:hover .play-overlay{opacity:1}
.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);
}
.play-btn-small:hover{transform:scale(1.06)}

/* MP3 TEXT / META */
.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;
}
.release-date{color:var(--text-muted);font-size:12px}

/* MAIN PLAY / DOWNLOAD BUTTONS */
.track-actions-compact{
  display:flex;
  gap:10px;
  flex-shrink:0;
  align-items:center;
}
.track-actions-compact .btn,
.btn-play-main,
.btn-download-main{
  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-play-main,
.btn-download-main{
  background:var(--gradient-primary);
  color:#fff!important;
  border:none;
  width:auto;
  height:auto;
  cursor:pointer;
  transition:.2s;
  box-shadow:0 4px 12px rgba(79,70,229,.35);
}
.btn-play-main:hover,
.btn-download-main:hover,
.track-actions-compact .btn:hover{
  background:linear-gradient(135deg,#4F46E5 0%,#DB2777 100%);
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(79,70,229,.45);
}
.btn-outline{
  background:#F9FAFB;
  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}

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

/* GLOBAL BUTTON */
.btn,
button:not(.search-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;
}
.btn:hover,
button:not(.search-btn):hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
}

/* PLAYER */
.wplayer{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(248,250,252,.96);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--border-color);
  z-index:1000;
  transition:.2s;
}
.audioplayer{
  max-width:1200px;
  margin:0 auto;
  padding:8px 12px;
  height:72px;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}
.audioplayer-bar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:#E5E7EB;
  cursor:pointer;
}
.audioplayer-bar-loaded{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  background:rgba(148,163,184,.5);
  border-radius:10px 10px 0 0;
}
.audioplayer-bar-played{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  z-index:10;
  background:var(--gradient-primary);
}
.ap-info{flex:1;min-width:0;padding-left:10px}
.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;
}
.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(79,70,229,.45);
}
.audioplayer-playpause a:hover{transform:scale(1.05)}
.ap-prev,.ap-next{
  width:28px;
  height:28px;
  background:#F1F5F9;
  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);
}
.audioplayer-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:#E5E7EB;
  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;
}
.audioplayer-volume:hover .audioplayer-volume-adjust{display:block}
.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;
}
.audioplayer-time-current:after{
  content:' / ';
  margin:0 2px;
}

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

/* MOBILE SIDE PANEL */
.overlay-box{
  position:fixed;
  z-index:998;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(15,23,42,.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);
}
.side-panel.active{left:0}
.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;
}
.btn-close.active{top:0}
body.opened-menu{
  overflow:hidden;
  width:100%;
  height:100%;
}

/* HELPERS */
.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-first{order:-1}
.fx-1{flex:1;min-width:0}
.nowrap{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hidden{display:none}

/* ANIMATION */
@keyframes pulse{
  0%,100%{transform:translateY(-50%) scale(1)}
  50%{transform:translateY(-50%) scale(1.06)}
}
.loading{animation:pulse 1.5s ease-in-out infinite}

/* SCROLLBAR */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:#F3F4FF}
::-webkit-scrollbar-thumb{
  background:#C7D2FE;
  border-radius:8px;
}
::-webkit-scrollbar-thumb:hover{background:#A5B4FC}
::selection{background:var(--accent-secondary);color:#fff}

/* 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(99,102,241,.25);
  border-color:var(--accent-primary);
}

/* “SHOW MORE” */
.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(99,102,241,.35);
  transition:.22s ease;
  text-decoration:none;
}
.btn-more:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
  box-shadow:0 5px 16px rgba(79,70,229,.45);
}

/* TOP ARTISTS */
.top-artists{padding:16px;margin-bottom:20px}
.top-artists .sect-title{margin-bottom:14px}
.artist-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px 16px;
  list-style:none;
}
.artist-card{display:block}
.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-link:hover{
  border-color:var(--accent-primary);
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}
.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;
}

/* COMMENTS */
.jx-comments{margin-top:28px}
.jx-comments .sect-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:12px;
}
.jx-c-form{
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  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 #E5E7EB;
  border-radius:10px;
  padding:12px 14px;
  font-size:15px;
  outline:none;
}
.jx-input:focus,.jx-textarea:focus{
  border-color:#C7D2FE;
  box-shadow:0 0 0 2px rgba(129,140,248,.25);
}
.jx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:10px;
  border:0;
  background:#111827;
  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 #F1F5F9;
}
.jx-item .jx-meta{
  font-size:12px;
  color:#6B7280;
  margin-bottom:4px;
}
.jx-item .jx-name{font-weight:700;margin-right:8px}
.jx-empty{color:#9CA3AF;font-size:14px}

/* “KO’PROQ MATN” */
.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(236,72,153,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));
}

/* LINE CLAMP */
.mp3-title,
.track-subtitle,
.track-title-link .mp3-title,
.track-title-link .track-subtitle{
  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-wrap{flex:0 1 520px;margin-left:auto;margin-right:0}
}
@media (max-width:968px){
  .gol-left{display:none}
  .btn-menu{display:flex}
  .cols{display:block}
  .col-main{width:100%}
  .header{
    flex-wrap:nowrap;
    gap:10px;
    justify-content:space-between;
  }
  .logo{order:1;flex:0 0 auto}
  .search-wrap{order:2;flex:1 1 auto;width:auto;margin:0 8px}
  .btn-menu{order:3;margin-left:0}
  .mp3-title,.track-title{font-size:14px}
  .track-subtitle{font-size:13px;line-height:1.25}
  .track-time{font-size:12px}
  .track-item{
    padding:8px 10px;
    gap:8px;
    margin-bottom:6px;
    min-height:48px;
  }
  .track-img{width:40px;height:40px}
  .track-play{width:22px;height:22px;font-size:10px}
  .track-download-btn,
  .track-menu-btn{width:24px;height:24px;font-size:12px}
  .track-count{font-size:12px;padding:1px 5px}
  .track-header-compact{padding:16px}
  .track-main-info{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }
  .track-artwork-small{
    width:96px;
    height:96px;
    margin:0 auto;
  }
  .track-name{font-size:1.4rem}
  .track-actions-compact{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
  }
  .track-actions-compact .btn,
  .btn-play-main,
  .btn-download-main{
    flex:1 1 160px;
    min-width:160px;
  }
  .audioplayer{
    padding:10px 12px;
    height:78px!important;
  }
  .audioplayer-volume{display:none}
}
@media (max-width:560px){
  .sect-title{font-size:1.25rem}
  .june-box{padding:14px}
  .footer{padding:14px}
  #bottom-nav .navigation a,
  #bottom-nav .navigation>span{
    min-width:36px;
    height:36px;
    padding:0 10px;
    border-radius:10px;
  }
  #bottom-nav .navigation{gap:6px}
  .artist-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .artist-link{min-height:126px}
  .artist-thumb{
    width:64px;
    height:64px;
  }
  .artist-name{font-size:12px}
}
@media (max-width:480px){
  .btn-more{
    padding:9px 22px;
    font-size:14px;
    border-radius:10px;
  }
}
@media (max-width:768px){
  .audioplayer{height:78px!important}
  .ap-img{width:40px;height:40px}
  .audioplayer-playpause a{width:44px;height:44px}
  .ap-prev,.ap-next{width:26px;height:26px}
  .ap-title{font-size:13.5px}
  .ap-artist{font-size:11.5px}
}
@media (max-width:360px){
  .audioplayer{
    height:72px!important;
    gap:8px;
  }
  .ap-img{
    width:36px;
    height:36px;
  }
  .audioplayer-playpause a{
    width:42px;
    height:42px;
  }
  .ap-prev,.ap-next{
    width:24px;
    height:24px;
  }
}

/* YON PANEL – FRESH TRACKS / ПИСЬМА */
.june-box-content{margin-top:10px}
.june-box .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;
}
.june-box .side-top-item:hover{
  background:rgba(244,240,255,.9);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(148,163,184,.25);
}
.june-box .side-top-item-img{
  width:32px;
  height:32px;
  border-radius:11px;
  background:#F1F5FF !important;
  border:1px solid #E0E7FF;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 1px 4px rgba(148,163,184,.35);
  position:relative;
}
.june-box .side-letter{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  color:#1D4ED8 !important;
  background:linear-gradient(145deg,rgba(248,250,252,.86),rgba(224,231,255,.9));
}
.june-box .side-top-item:hover .side-top-item-img{
  border-color:#C4B5FD;
  box-shadow:0 2px 8px rgba(129,140,248,.55);
}
.june-box .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;
}
.june-box .side-top-item:hover .side-item-icon{
  color:var(--accent-primary);
  transform:translateX(1px);
}
.june-box .track-desc{min-width:0}
.june-box .track-desc .mp3-title{
  font-size:13px;
  font-weight:600;
  color:var(--text-primary);
  margin-bottom:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.june-box .track-desc .track-subtitle{
  font-size:12px;
  color:var(--text-secondary);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.june-box-content hr{
  border:0;
  height:1px;
  margin:8px 0;
  background:rgba(148,163,184,.25);
}

/* MENYU – MUSIC ICONLAR */
.june-box .side-nav li a{
  position:relative;
  padding-left:34px !important;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.june-box .side-nav 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:#7C3AED;
  opacity:.85;
  transition:.2s;
}
.june-box .side-nav li a:hover:before{
  color:#5B21B6;
  opacity:1;
  transform:translateY(-50%) scale(1.07);
}
