:root{
--bg:#f3f4f6;
--text:#111827;
--card:#ffffff;
--border:#e5e7eb;
--accent:#DBC900;
}

[data-theme="dark"]{
--bg:#0f172a;
--text:#f1f5f9;
--card:#1e293b;
--border:#334155;
--accent:#DBC900;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--text);
min-height:100vh;
}

/* HEADER */

.header{
position:sticky;
top:0;
display:flex;
align-items:center;
padding:16px 20px;
background:var(--card);
box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.title{
flex:1;
text-align:center;
font-weight:600;
}

.icon-btn{
background:none;
border:none;
cursor:pointer;
padding:8px;
border-radius:50%;
color:var(--text);
}

.icon-btn:hover{
background:var(--accent);
}

.icon-btn svg{
width:22px;
height:22px;
}

/* CONTAINER */

.profile-container{
padding:40px 20px;
max-width:520px;
margin:auto;
}

/* CARD */

.profile-card{
background:var(--card);
border-radius:20px;
padding:28px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,.08);
border:1px solid var(--border);
}

.profile-card:hover{
box-shadow:0 8px 25px var(--accent);
}

/* AVATAR */

.avatar{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
margin-bottom:14px;
}

/* BIO */

#bio{
font-size:13px;
opacity:.8;
margin-top:8px;
white-space:pre-wrap;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
margin-top:20px;
gap:10px;
}

.stats span{
font-weight:600;
font-size:16px;
}

.stats p{
font-size:12px;
opacity:.7;
}

/* TIKTOK BUTTON */

.tiktok-btn{
display:inline-block;
margin-top:14px;
padding:10px 20px;
border-radius:40px;
background:#0069D5;
color:#fff;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:.25s;
}

.tiktok-btn:hover{
transform:scale(1.05);
}