:root{
    --bg:#0b0b0b;
    --card:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.15);
    --text:#fff;
    --muted:#b9b9b9;
    --accent:#ff5a7d;
    --online:#57f287;
    --shadow:0 20px 50px rgba(0,0,0,.45);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:Outfit,sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow-x:hidden;
}

/* ---------- BACKGROUND ---------- */

.background{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:-2;
}

.background::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)),
        url("banner.gif") center/cover no-repeat;

    opacity:.9;
}

.smoke{
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    filter:blur(100px);
    opacity:.18;
    background:white;
    animation:float 18s ease-in-out infinite;
}

.smoke1{
    left:-250px;
    top:-200px;
}

.smoke2{
    right:-250px;
    bottom:-250px;
    animation-delay:-9s;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-60px);
}

}

/* ---------- CARD ---------- */

.card{

width:430px;
max-width:94vw;

padding:32px;

border-radius:28px;

background:var(--card);

backdrop-filter:blur(18px);

border:1px solid var(--border);

box-shadow:var(--shadow);

}

/* ---------- HEADER ---------- */

header{

text-align:center;

}

.avatar{

position:relative;

width:130px;

height:130px;

margin:auto;

margin-bottom:22px;

}

.avatar img{

width:100%;
height:100%;
object-fit:cover;

border-radius:50%;

border:4px solid white;

animation:floatAvatar 5s ease-in-out infinite;

}

@keyframes floatAvatar{

50%{
transform:translateY(-6px);
}

}

.avatar::after{

content:"";

position:absolute;

inset:-10px;

border-radius:50%;

background:

radial-gradient(circle,
rgba(255,255,255,.5),
transparent 70%);

filter:blur(25px);

z-index:-1;

animation:pulse 3s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.08);

opacity:.6;

}

}

.status{

position:absolute;

bottom:8px;

right:8px;

width:18px;

height:18px;

border-radius:50%;

background:gray;

border:3px solid #111;

}

h1{

font-size:46px;

font-weight:900;

letter-spacing:4px;

}

.subtitle{

margin-top:8px;

color:var(--muted);

}

.presence{

margin-top:18px;

display:inline-block;

padding:8px 18px;

border-radius:999px;

background:rgba(255,255,255,.05);

}

/* ---------- SECTIONS ---------- */

section{

margin-top:34px;

}

h2{

font-size:13px;

letter-spacing:3px;

margin-bottom:14px;

color:var(--accent);

}

.about p{

line-height:1.7;

color:#ddd;

}

/* ---------- CARDS ---------- */

.spotify-card,
.activity-card{

display:flex;

gap:16px;

padding:16px;

background:rgba(255,255,255,.05);

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

align-items:center;

transition:.25s;

}

.spotify-card:hover,
.activity-card:hover{

transform:translateY(-3px);

background:rgba(255,255,255,.08);

}

.spotify-card img,
.activity-card img{

width:64px;
height:64px;

border-radius:14px;

object-fit:cover;

background:#222;

}

.spotify-info{

flex:1;

}

.progress{

height:8px;

border-radius:999px;

background:#222;

overflow:hidden;

margin-top:10px;

}

#progressBar{

height:100%;

width:0%;

background:linear-gradient(90deg,var(--accent),white);

transition:.3s;

}

.time{

display:flex;

justify-content:space-between;

font-size:12px;

margin-top:6px;

color:var(--muted);

}

/* ---------- TERMINAL ---------- */

.terminal{

margin-top:38px;

padding:18px;

border-radius:16px;

background:#080808;

font-family:"JetBrains Mono",monospace;

font-size:15px;

}

.prompt{

color:var(--accent);

}

.cursor{

display:inline-block;

width:8px;

height:18px;

background:white;

margin-left:3px;

animation:blink 1s infinite;

}

@keyframes blink{

50%{

opacity:0;

}

}

/* ---------- MOBILE ---------- */

@media(max-width:500px){

.card{

padding:22px;

}

.avatar{

width:110px;
height:110px;

}

h1{

font-size:36px;

}

}
