/* ==========================================================
   HASHVIX COMPONENTS
========================================================== */


/* ==========================================================
   FEATURED TRACK
========================================================== */

.hx-featured-track{

display:grid;

grid-template-columns:320px 1fr;

gap:40px;

align-items:center;

}

.hx-featured-cover{

position:relative;

border-radius:28px;

overflow:hidden;

background:#111827;

}

.hx-featured-cover img{

display:block;

width:100%;

height:320px;

object-fit:cover;

}

.hx-featured-play{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:78px;

height:78px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(79,140,255,.95);

color:#fff;

font-size:28px;

text-decoration:none;

transition:.3s;

}

.hx-featured-play:hover{

transform:translate(-50%,-50%) scale(1.08);

color:#fff;

}

.hx-featured-content{

display:flex;

flex-direction:column;

justify-content:center;

}

.hx-featured-content h2,

.hx-featured-content h3{

font-size:34px;

font-weight:800;

margin:18px 0 10px;

}


/* ==========================================================
   SOCIALS
========================================================== */

.hx-socials{

display:flex;

flex-wrap:wrap;

gap:14px;

}

.hx-social{

width:48px;

height:48px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.06);

color:white;

text-decoration:none;

transition:.3s;

}

.hx-social:hover{

background:var(--hx-primary);

color:white;

transform:translateY(-4px);

}


/* ==========================================================
   AVATAR BADGE
========================================================== */

.hx-artist-avatar{

position:relative;

}

.hx-avatar-badge{

position:absolute;

right:8px;

bottom:8px;

width:34px;

height:34px;

border-radius:50%;

background:#3b82f6;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

border:3px solid var(--hx-surface);

}


/* ==========================================================
   FOLLOW BAR
========================================================== */

.hx-follow-bar{

display:flex;

gap:14px;

align-items:center;

flex-wrap:wrap;

}


/* ==========================================================
   CARD BODY
========================================================== */

.hx-card-body{

padding:22px;

}


/* ==========================================================
   MUSIC COVER
========================================================== */

.hx-music-cover{

position:relative;

overflow:hidden;

border-radius:22px 22px 0 0;

}

.hx-music-cover img{

display:block;

width:100%;

height:240px;

object-fit:cover;

}


/* ==========================================================
   PLAY OVERLAY
========================================================== */

.hx-play-overlay{

position:absolute;

inset:0;

display:flex;

align-items:center;

justify-content:center;

background:rgba(0,0,0,.45);

opacity:0;

transition:.35s;

}

.hx-music-cover:hover .hx-play-overlay{

opacity:1;

}


/* ==========================================================
   PLAY BUTTON
========================================================== */

.hx-play-button{

width:72px;

height:72px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--hx-gradient-primary);

color:#fff;

font-size:24px;

transform:scale(.85);

transition:.35s;

box-shadow:0 20px 40px rgba(79,140,255,.35);

}

.hx-music-cover:hover .hx-play-button{

transform:scale(1);

}


/* ==========================================================
   TRACK GRID
========================================================== */

.hx-track-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(300px,1fr));

gap:28px;

}


/* ==========================================================
   PROFILE TABS
========================================================== */

.hx-profile-tabs{

display:flex;

align-items:center;

gap:14px;

margin:50px 0 35px;

overflow-x:auto;

scrollbar-width:none;

}

.hx-profile-tabs::-webkit-scrollbar{

display:none;

}

.hx-tab{

padding:14px 24px;

border:none;

border-radius:999px;

background:rgba(255,255,255,.05);

color:var(--hx-text);

font-weight:700;

cursor:pointer;

transition:.3s;

white-space:nowrap;

}

.hx-tab:hover{

background:rgba(255,255,255,.08);

}

.hx-tab.active{

background:var(--hx-gradient-primary);

color:#fff;

}


/* ==========================================================
   EMPTY PANEL
========================================================== */

.hx-empty-panel{

padding:70px 40px;

text-align:center;

border-radius:28px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.06);

}

.hx-empty-panel i{

font-size:70px;

margin-bottom:25px;

color:var(--hx-primary);

opacity:.65;

}

.hx-empty-panel h3{

font-size:30px;

margin-bottom:15px;

}

.hx-empty-panel p{

max-width:520px;

margin:auto;

color:var(--hx-text-muted);

}


/* ==========================================================
   FEATURED HOVER
========================================================== */

.hx-featured-track{

transition:.35s;

}

.hx-featured-track:hover{

transform:translateY(-8px);

}


/* ==========================================================
   MUSIC CARD
========================================================== */

.hx-music-card{

overflow:hidden;

border-radius:24px;

background:var(--hx-surface);

border:1px solid rgba(255,255,255,.05);

transition:.35s;

}

.hx-music-card:hover{

transform:translateY(-8px);

box-shadow:

0 25px 70px rgba(0,0,0,.35);

}


/* ==========================================================
   CARD TITLE
========================================================== */

.hx-card-body h3{

font-size:22px;

font-weight:700;

margin-bottom:12px;

line-height:1.4;

}

.hx-card-body p{

font-size:14px;

line-height:1.7;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.hx-featured-track{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hx-track-grid{

grid-template-columns:1fr;

}

.hx-profile-tabs{

gap:10px;

}

.hx-tab{

padding:12px 18px;

font-size:14px;

}

.hx-play-button{

width:60px;

height:60px;

font-size:20px;

}

}

/* ==========================================================
   ARTIST HERO
========================================================== */

.hx-artist{

background:var(--hx-bg);

min-height:100vh;

padding-bottom:100px;

}

.hx-artist-hero{

position:relative;

height:420px;

overflow:hidden;

background:linear-gradient(
135deg,
#1d4ed8,
#7c3aed);

}

.hx-artist-hero img{

width:100%;

height:100%;

object-fit:cover;

display:block;

}

.hx-artist-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
180deg,
rgba(0,0,0,.15),
rgba(7,11,18,.85));

backdrop-filter:blur(2px);

}

.hx-artist-cover-placeholder{

width:100%;

height:100%;

background:

linear-gradient(
135deg,
#2563eb,
#7c3aed);

}


/* ==========================================================
   ARTIST CARD
========================================================== */

.hx-artist-wrapper{

position:relative;

margin-top:-120px;

z-index:20;

}

.hx-artist-card{

display:flex;

gap:40px;

padding:40px;

border-radius:32px;

background:rgba(17,24,39,.92);

backdrop-filter:blur(30px);

border:1px solid rgba(255,255,255,.06);

box-shadow:

0 30px 90px rgba(0,0,0,.35);

}


/* ==========================================================
   AVATAR
========================================================== */

.hx-artist-avatar{

flex-shrink:0;

}

.hx-artist-avatar img{

width:190px;

height:190px;

border-radius:50%;

object-fit:cover;

border:6px solid rgba(255,255,255,.08);

box-shadow:

0 20px 50px rgba(0,0,0,.35);

}


/* ==========================================================
   CONTENT
========================================================== */

.hx-artist-content{

flex:1;

display:flex;

flex-direction:column;

justify-content:center;

}

.hx-artist-content h1{

font-size:46px;

font-weight:900;

margin:0;

line-height:1.1;

}

.hx-artist-bio{

font-size:16px;

line-height:1.9;

max-width:760px;

color:var(--hx-text-light);

}


/* ==========================================================
   STATS
========================================================== */

.hx-artist-stats{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:20px;

margin-top:35px;

}

.hx-stat{

padding:22px;

text-align:center;

border-radius:22px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.05);

transition:.35s;

}

.hx-stat:hover{

transform:translateY(-6px);

background:rgba(255,255,255,.06);

}

.hx-stat strong{

display:block;

font-size:32px;

font-weight:900;

margin-bottom:10px;

}

.hx-stat span{

font-size:14px;

color:var(--hx-text-muted);

}


/* ==========================================================
   FOLLOW BUTTON AREA
========================================================== */

.hx-follow-bar{

display:flex;

align-items:center;

gap:16px;

flex-wrap:wrap;

}


/* ==========================================================
   HERO RESPONSIVE
========================================================== */

@media(max-width:1200px){

.hx-artist-stats{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.hx-artist-card{

flex-direction:column;

align-items:center;

text-align:center;

}

.hx-artist-content{

align-items:center;

}

.hx-artist-content h1{

font-size:38px;

}

.hx-follow-bar{

justify-content:center;

}

}

@media(max-width:768px){

.hx-artist-hero{

height:280px;

}

.hx-artist-wrapper{

margin-top:-80px;

}

.hx-artist-avatar img{

width:150px;

height:150px;

}

.hx-artist-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

.hx-artist-content h1{

font-size:30px;

}

.hx-artist-stats{

grid-template-columns:1fr;

}

.hx-artist-card{

padding:28px;

}

}