/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */
body{
font-family:'Inter',sans-serif;
background:#0b0f1c;
color:white;
animation:fadeIn 1.2s ease;
padding-bottom:120px; /* prevents player overlap */
}

/* BACKGROUND */
.background-animation{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(120deg,#0b0f1c,#111827,#0b0f1c);
background-size:400% 400%;
animation:gradientMove 18s ease infinite;
z-index:-2;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* PAGE LOAD */
@keyframes fadeIn{
0%{
opacity:0;
transform:translateY(20px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

/* NAVBAR */
.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,.35);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,.05);
z-index:10;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
font-size:22px;
font-weight:800;
letter-spacing:3px;
}

/* NAV LINKS */
nav a{
color:white;
text-decoration:none;
margin-left:30px;
opacity:.7;
transition:.3s;
}

nav a:hover{
opacity:1;
color:#47d3ff;
}

nav a.active{
opacity:1;
color:#47d3ff;
}

/* HERO */
.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding-top:60px;
}

.hero h1{
font-size:100px;
font-weight:800;
letter-spacing:10px;
text-shadow:0 0 40px rgba(71,211,255,.45);
}

.hero p{
margin-top:10px;
color:#9aa7bd;
}

/* BUTTONS */
.hero-buttons{
margin-top:30px;
}

.primary-btn{
background:#47d3ff;
color:black;
padding:14px 28px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
display:inline-block;
}

.primary-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(71,211,255,.45);
}

.secondary-btn{
border:1px solid #47d3ff;
color:#47d3ff;
padding:14px 28px;
border-radius:10px;
margin-left:15px;
text-decoration:none;
transition:.3s;
}

.secondary-btn:hover{
background:#47d3ff;
color:black;
}

/* SECTION */
.section{
max-width:1200px;
margin:auto;
padding:120px 40px;
text-align:center;
}

.section-title{
font-size:42px;
margin-bottom:70px;
}

/* ABOUT */
.about-preview p{
margin-top:15px;
line-height:1.7;
color:#9aa7bd;
}

.about-preview a{
display:inline-block;
margin-top:30px;
}

/* RELEASE FEATURE CARD */
.release-card{
display:flex;
align-items:center;
gap:30px;
background:#111827;
padding:30px;
border-radius:14px;
transition:.3s;
}

.release-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 40px rgba(71,211,255,.12);
}

.release-card img{
width:230px;
height:230px;
object-fit:cover;
border-radius:12px;
transition:.4s;
}

.release-card img:hover{
transform:scale(1.05);
}

.release-info h3{
font-size:28px;
margin-bottom:5px;
}

.release-date{
color:#9aa7bd;
margin-top:5px;
}

/* RELEASE GRID */
.releases-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.release-item{
background:#111827;
padding:25px;
border-radius:14px;
text-align:center;
transition:.3s;
}

.release-item:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(71,211,255,.15);
}

.release-item img{
width:100%;
height:250px;        
object-fit:cover;   
border-radius:12px;
margin-bottom:15px;
}

.release-item img:hover{
transform:scale(1.05);
}

.release-item h3{
font-size:20px;
margin-bottom:5px;
}

.release-item p{
color:#9aa7bd;
}

/* MUSIC GRID */
.music-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
}

/* TRACK CARD */
.track{
background:#111827;
padding:30px;
border-radius:16px;
text-align:center;
transition:.35s;
cursor:pointer;
}

.track:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(71,211,255,.18);
}

.track.active{
box-shadow:0 0 25px rgba(71,211,255,.4);
transform:translateY(-6px);
}

/* ARTWORK */
.track img{
width:180px;
max-width:100%;
display:block;
margin:0 auto 16px auto;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.45);
transition:.4s;
}

.track img:hover{
transform:scale(1.06);
}

/* TRACK TITLE */
.track h3{
margin-bottom:12px;
font-size:20px;
}

/* STREAMING ICONS */
.streaming{
display:flex;
justify-content:center;
gap:22px;
margin-top:12px;
font-size:22px;
}

.streaming a{
color:white;
opacity:.7;
transition:.3s;
}

.streaming a:hover{
color:#47d3ff;
opacity:1;
transform:scale(1.15);
}

/* STORE GRID */
.store-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:50px;
justify-items:center;
}

/* PRODUCT CARD */
.product-card{
background:white;
color:black;
width:260px;
padding:25px;
border-radius:14px;
text-align:center;
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(71,211,255,.25);
}

.product-card img{
width:100%;
border-radius:10px;
margin-bottom:18px;
background:#f5f7fa;
padding:15px;
}

.product-card h3{
margin-bottom:10px;
font-size:18px;
}

.product-card p{
color:#555;
margin-bottom:18px;
}

/* SOCIALS */
.socials{
display:flex;
justify-content:center;
gap:30px;
font-size:28px;
padding:50px;
}

.socials a{
color:white;
opacity:.7;
transition:.3s;
}

.socials a:hover{
color:#47d3ff;
opacity:1;
transform:scale(1.2);
}

/* FOOTER */
footer{
text-align:center;
padding:30px;
color:#9aa7bd;
}

/* PARTICLES */
.particles{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
}

.particles span{
position:absolute;
width:3px;
height:80px;
background:linear-gradient(transparent,#47d3ff);
opacity:.2;
animation:waterfall 5s linear infinite;
}

.particles span:nth-child(1){left:5%; animation-delay:0s;}
.particles span:nth-child(2){left:12%; animation-delay:1s;}
.particles span:nth-child(3){left:20%; animation-delay:2s;}
.particles span:nth-child(4){left:30%; animation-delay:3s;}
.particles span:nth-child(5){left:40%; animation-delay:4s;}
.particles span:nth-child(6){left:50%; animation-delay:1s;}
.particles span:nth-child(7){left:60%; animation-delay:2s;}
.particles span:nth-child(8){left:70%; animation-delay:3s;}
.particles span:nth-child(9){left:80%; animation-delay:4s;}
.particles span:nth-child(10){left:90%; animation-delay:5s;}

@keyframes waterfall{
0%{
transform:translateY(-100px);
opacity:0;
}
20%{
opacity:.4;
}
100%{
transform:translateY(100vh);
opacity:0;
}
}

/* GLOBAL PLAYER */
.global-player{
position:fixed;
bottom:10px;
left:50%;
transform:translateX(-50%);
width:92%;
max-width:900px;
background:rgba(11,15,28,.65);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
z-index:999;
padding:6px;
box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.global-player iframe{
border:none;
border-radius:10px;
height:80px;
}

/* MOBILE */
@media(max-width:768px){

.hero h1{
font-size:60px;
}

.release-card{
flex-direction:column;
text-align:center;
}

.section{
padding:100px 20px;
}

.section-title{
font-size:32px;
}

.music-grid{
grid-template-columns:1fr;
}

.track img{
width:150px;
}

}

/* CONTACT FORM */

.contact-container{
max-width:600px;
margin:auto;
}

.contact-form{
background:#111827;
padding:40px;
border-radius:16px;
display:flex;
flex-direction:column;
gap:20px;
box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.contact-form input,
.contact-form textarea{
background:#0b0f1c;
border:none;
padding:16px;
border-radius:10px;
color:white;
font-family:'Inter',sans-serif;
font-size:16px;
outline:none;
transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
box-shadow:0 0 0 2px #47d3ff;
}

.contact-form textarea{
resize:none;
}

.contact-form button{
margin-top:10px;
}

.release-card{
margin-top:80px;
}

.about-container{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:25px;
line-height:1.7;
opacity:0.9;
text-align:left; /* THIS IS THE FIX */
}

.about-img{
width:100%;
max-width:600px;   /* 👈 controls size */
height:350px;      /* 👈 keeps them consistent */
object-fit:cover;
border-radius:12px;
margin:20px auto;  /* 👈 centers image */
display:block;
}