:root {
  --bg: #0f1724;
  --headline: #ff751f;
  --text: #ffffff;
  --muted: #b9c1cc;
  --radius: 10px;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: var(--headline);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  text-align: center;
  padding: 50px 20px 20px;
}

/* Profile photo frame */
.profile-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  background: #0f1724;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


h1 {
  color: var(--headline);
  font-size: 1.9rem;
  margin-bottom: 5px;
}

.subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.links a {
  margin: 0 5px;
  font-weight: 500;
}

main {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

h2 {
  color: var(--headline);
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
