html,
body{
margin:0;
padding:0;
font-family:'Quicksand',sans-serif;
background:
linear-gradient(
180deg,
#ffb3c7,
#ffdff3,
#7ab8ff
);
overflow-x:hidden;
color:white;
}

*{
box-sizing:border-box;
}

.scanlines{
position:fixed;
inset:0;
pointer-events:none;
background:
repeating-linear-gradient(
to bottom,
rgba(255,255,255,.03),
rgba(255,255,255,.03) 1px,
transparent 1px,
transparent 3px
);
z-index:1;
}

#particles-layer{
position:fixed;
inset:0;
pointer-events:none;
z-index:9999;
overflow:hidden;
}

.profile-hero{
position:relative;
height:500px;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
filter:
brightness(.75)
saturate(1.2);
}

.hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
180deg,
rgba(255,179,199,.25),
rgba(122,184,255,.35)
);
backdrop-filter:blur(2px);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
padding:20px;
}

.hero-content h1{
font-size:58px;
margin:0;
text-shadow:
0 0 15px rgba(255,255,255,.6);
}

.hero-content p{
font-size:18px;
margin-top:12px;
}

.status-box{
margin-top:18px;
padding:12px 18px;
border-radius:999px;
background:
rgba(255,255,255,.18);
backdrop-filter:blur(12px);
display:inline-block;
}

.tabs{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
padding:20px;
}

.tab-button{
border:none;
padding:12px 18px;
border-radius:999px;
cursor:pointer;
font-weight:700;
background:
linear-gradient(
135deg,
#ffb3c7,
#7ab8ff
);
color:white;
transition:.3s;
}

.tab-button:hover{
transform:scale(1.05);
}

.tab-button.active{
box-shadow:
0 0 20px rgba(255,255,255,.5);
}

.profile-layout{
width:92%;
max-width:1200px;
margin:auto;
padding-bottom:60px;
}

.tab-content{
display:none;
animation:fade .4s ease;
}

.tab-content.active{
display:block;
}

@keyframes fade{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.glass-card{
background:
rgba(255,255,255,.14);
border:
1px solid rgba(255,255,255,.25);
backdrop-filter:blur(12px);
border-radius:28px;
padding:24px;
margin-bottom:25px;
box-shadow:
0 0 22px rgba(255,255,255,.18);
}

.info-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:15px;
margin-top:15px;
}

.fashion-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(140px,1fr));
gap:16px;
margin-top:20px;
}

.fashion-box{
padding:24px;
border-radius:22px;
background:
rgba(255,255,255,.15);
text-align:center;
font-weight:700;
}

.stat{
margin-bottom:22px;
}

.stat-label{
margin-bottom:8px;
font-weight:700;
}

.bar{
width:100%;
height:18px;
background:
rgba(255,255,255,.12);
border-radius:999px;
overflow:hidden;
}

.fill{
height:100%;
border-radius:999px;
background:
linear-gradient(
90deg,
#ffb3c7,
#7ab8ff
);
animation:grow 2s ease;
}

.creativity{width:95%;}
.fashion{width:100%;}
.communication{width:75%;}
.combat{width:20%;}

@keyframes grow{
from{width:0;}
}

.gallery-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(200px,1fr));
gap:18px;
margin-top:20px;
}

.gallery-grid img{
width:100%;
border-radius:24px;
display:block;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

.timeline{
display:flex;
flex-direction:column;
gap:16px;
margin-top:20px;
}

.timeline-item{
padding:16px;
border-radius:20px;
background:
rgba(255,255,255,.14);
}

.duck-button{
border:none;
padding:14px 22px;
border-radius:999px;
cursor:pointer;
font-weight:700;
background:
linear-gradient(
135deg,
#ffb3c7,
#7ab8ff
);
color:white;
margin-top:20px;
}

.back-button{
position:fixed;
bottom:20px;
right:20px;
padding:14px 20px;
border-radius:999px;
text-decoration:none;
background:
linear-gradient(
135deg,
#ffb3c7,
#7ab8ff
);
color:white;
font-weight:700;
z-index:50;
}

.particle{
position:fixed;
pointer-events:none;
z-index:99999;
font-size:24px;
animation:float 1.8s linear forwards;
}

@keyframes float{
0%{
opacity:1;
transform:
translateY(0)
scale(1);
}
100%{
opacity:0;
transform:
translateY(-120px)
scale(1.8)
rotate(20deg);
}
}

@media(max-width:768px){

.hero-content h1{
font-size:36px;
}

.profile-hero{
height:420px;
}

}