body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #f4f4f6;
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 5rem 2rem 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(94, 96, 206, 0.07);
  text-align: center;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  animation: fadeIn 1.2s cubic-bezier(.39,.58,.57,1) 0.1s both;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: none; }
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  color: #5e60ce;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 1.5rem;
}

.bio {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2.2rem;
  text-align: left;
  line-height: 1.6;
}

.menu {
  margin-bottom: 2.2rem;
}
.menu a {
  text-decoration: none;
  color: #5e60ce;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.menu a:hover {
  background: #e0e7ff;
  color: #222;
}

.skills-section {
  margin: 2.5rem 0 1.5rem 0;
  text-align: left;
}
.skills-section h3 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #5e60ce;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
}
.skills-list li {
  background: #e0e7ff;
  color: #222;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.38rem 0.95rem;
  border-radius: 7px;
  box-shadow: 0 1px 4px 0 rgba(94,96,206,0.04);
  transition: background 0.18s, color 0.18s;
}
.skills-list li:hover {
  background: #5e60ce;
  color: #fff;
}
.skills-note {
  color: #555;
  font-size: 0.97rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.social-links a {
  color: #222;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.social-links a:hover {
  color: #5e60ce;
  transform: scale(1.13) rotate(-2deg);
}

.projects-section {
  margin-top: 3rem;
  text-align: left;
}
.projects-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: #5e60ce;
}
.projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projects-list li {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 6px 0 rgba(94,96,206,0.04);
  transition: box-shadow 0.18s, transform 0.18s;
  border: none;
}
.projects-list li:hover {
  box-shadow: 0 6px 24px 0 rgba(94,96,206,0.10);
  transform: translateY(-2px) scale(1.018);
}
.projects-list strong {
  font-size: 1.05rem;
  color: #222;
}
.projects-list span {
  color: #555;
  font-size: 0.98rem;
}
.project-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: #5e60ce;
  font-size: 0.97rem;
  text-decoration: none;
  border-bottom: 1px dotted #5e60ce;
  transition: color 0.15s, border-bottom 0.15s;
}
.project-link:hover {
  color: #222;
  border-bottom: 1px solid #222;
}

.certifications-section {
  margin: 2.2rem 0 1.2rem 0;
  text-align: left;
}
.certifications-section h3 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #5e60ce;
}
.certifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.certifications-list li {
  display: flex;
  align-items: center;
  background: #e0e7ff;
  color: #222;
  font-size: 0.97rem;
  padding: 0.38rem 0.95rem;
  border-radius: 7px;
  margin-bottom: 0.6rem;
  box-shadow: 0 1px 4px 0 rgba(94,96,206,0.04);
  font-weight: 500;
  gap: 0.7rem;
  letter-spacing: 0.01em;
}
.certifications-list li::before {
  content: '\1F393'; /* Graduation cap emoji as a simple icon */
  font-size: 1.1em;
  color: #5e60ce;
  margin-right: 0.3em;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .container {
    padding: 3rem 0.5rem 1.5rem 0.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  .projects-section {
    margin-top: 2rem;
  }
  .bio {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
    text-align: left;
    line-height: 1.5;
  }
  .skills-section {
    margin: 1.2rem 0 0.8rem 0;
    text-align: left;
  }
  .skills-list {
    gap: 0.5rem 0.6rem;
  }
  .skills-list li {
    font-size: 0.93rem;
    padding: 0.32rem 0.7rem;
  }
  .skills-section h3 {
    font-size: 1.01rem;
    margin-bottom: 0.5rem;
  }
} 