:root {
  /* Palette C — "Neural Aurora" */
  --bg-main: #1c1b29;
  --accent-cyan: #00b8d9;
  --accent-lime: #a3de83;
  --text-primary: #f0f3f6;
  --text-secondary: #9ca3af;
  --accent-coral: #ff6b6b;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header {
  border-bottom: 2px solid var(--accent-cyan);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

h2 {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 184, 217, 0.3);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1.3rem;
  color: var(--accent-lime);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--accent-coral);
  margin-bottom: 1rem;
}

.contact-info {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-coral);
}

.section {
  margin-bottom: 2rem;
}

.job,
.education-item,
.skill-category {
  margin-bottom: 1.5rem;
}

.job-title,
.degree {
  color: var(--text-primary);
  font-weight: 600;
}

.company,
.institution {
  color: var(--accent-cyan);
  font-style: italic;
}

.date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-left: 0;
}

.skills-list li {
  background-color: rgba(0, 184, 217, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--accent-cyan);
  font-size: 0.9rem;
}

.summary {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
