* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(135deg, #1a0b2e 0%, #16213e 60%, #0f3460 100%);
  background-attachment: fixed;
  color: #e8e8f0;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

a { color: #38bdf8; text-decoration: none; }
a:hover { color: #facc15; text-decoration: underline; }

/* ====== Highlight colors ====== */
.hl    { color: #a78bfa; font-weight: 600; }     /* purple */
.cyan  { color: #22d3ee; font-weight: 600; }     /* cyan   */
.pink  { color: #f472b6; font-weight: 600; }     /* pink   */
.gold  { color: #facc15; font-weight: 600; }     /* gold   */
.muted { color: #9ca3af; }

/* ====== Topbar ====== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(15, 8, 35, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  font-weight: 700;
  font-size: 20px;
  color: #facc15;
  letter-spacing: 1px;
}
.topbar nav { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar nav a {
  color: #d1d5db;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.topbar nav a:hover { color: #a78bfa; text-decoration: none; }

/* ====== Layout ====== */
main {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 28px;
}

section {
  padding: 56px 0;
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}
section:last-child { border-bottom: none; }

/* ====== Hero ====== */
.hero { text-align: left; padding-top: 30px; }
.tag {
  display: inline-block;
  color: #a78bfa;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 1px;
}
.name { color: #facc15; }
.hero h2 {
  font-size: 20px;
  color: #d1d5db;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.7;
}
.role { color: #22d3ee; font-weight: 700; }

.lead {
  margin-bottom: 28px;
  max-width: 680px;
  font-size: 16px;
  color: #cbd5e1;
}

/* ====== Section title ====== */
.section-title {
  font-size: 26px;
  margin-bottom: 28px;
  margin-top: 12px;
  color: #ffffff;
  letter-spacing: 1.5px;
  border-left: 4px solid #a78bfa;
  padding-left: 14px;
}

/* ====== Buttons ====== */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.btn.primary {
  background: #a78bfa;
  color: #0b0b0b;
}
.btn.secondary {
  background: transparent;
  color: #22d3ee;
  border-color: #22d3ee;
}
.btn:hover { text-decoration: none; opacity: 0.85; }

/* ====== About ====== */
.about {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profile-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #a78bfa;
  flex-shrink: 0;
}
.about > div { flex: 1; min-width: 240px; }
.about p { margin-bottom: 16px; }
.about-info {
  list-style: none;
  margin-top: 18px;
}
.about-info li { padding: 6px 0; }

/* ====== Lists ====== */
.plain-list {
  list-style: none;
  padding-left: 0;
}
.plain-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.15);
}
.plain-list li:last-child { border-bottom: none; }

/* ====== Skills ====== */
.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.skill-block {
  padding: 20px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 10px;
  background: rgba(15, 8, 35, 0.55);
}
.skill-block h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #facc15;
  letter-spacing: 1px;
}
.skill-block ul {
  list-style: none;
  padding-left: 0;
}
.skill-block li {
  padding: 6px 0;
  color: #cbd5e1;
  border-bottom: 1px dashed rgba(167, 139, 250, 0.15);
}
.skill-block li:last-child { border-bottom: none; }

/* ====== Projects ====== */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.project {
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 10px;
  padding: 22px;
  background: rgba(15, 8, 35, 0.55);
}
.project h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}
.project-tag {
  font-size: 12px;
  color: #22d3ee;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.project p { color: #cbd5e1; }

/* ====== Footer ====== */
footer {
  text-align: center;
  padding: 26px;
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  background: rgba(15, 8, 35, 0.6);
  color: #b8b8d0;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ====== Responsive ====== */
@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  .topbar nav { gap: 14px; justify-content: center; }
  main { padding: 40px 20px; }
  .hero h1 { font-size: 32px; }
  .hero h2 { font-size: 17px; }
  .profile-photo { width: 140px; height: 140px; }
  .section-title { font-size: 22px; }
}