:root{
  --bg:#0f172a;
  --card:#1e293b;
  --text:#e5e7eb;
  --muted:#94a3b8;
  --accent:#38bdf8;
}

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

body{
  font-family:'Segoe UI', sans-serif;
  background:var(--bg);
  color:var(--text);
  max-width:900px;
  margin:auto;
  padding:40px 20px;
}

/* HEADER */
header{
  text-align:center;
  margin-bottom:60px;
}

header img{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--accent);
  margin-bottom:20px;
}

header p{
  color:var(--muted);
  margin-top:6px;
}

/* SECTION */
section{
  background:var(--card);
  padding:25px;
  border-radius:16px;
  margin-bottom:30px;
}

h2{
  color:var(--accent);
  margin-bottom:15px;
  font-size:20px;
}

/* TEXT */
section p{
  line-height:1.7;
  color:var(--muted);
}

/* SKILLS */
.skills span{
  display:inline-block;
  background:#020617;
  padding:8px 14px;
  border-radius:20px;
  margin:6px;
  font-size:14px;
}

/* PROJECT */
.project{
  background:#020617;
  padding:15px;
  border-radius:12px;
  margin-bottom:12px;
}

/* SOCIAL */
.social a{
  margin-right:15px;
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
}

.social a:hover{
  text-decoration:underline;
}

/* FOOTER */
footer{
  text-align:center;
  color:var(--muted);
  margin-top:40px;
  font-size:14px;
}
