* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 4rem;
}
.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #4cc9f0;
  margin: 0 auto 1.5rem;
  background: #2a2a72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4cc9f0, #f72585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.tagline {
  font-size: 1.3rem;
  color: #a5b4fc;
  margin-bottom: 2rem;
}
.bio {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #cbd5e1;
  text-align: center;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.skill-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.skill-category h3 {
  color: #4cc9f0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.skill-list {
  list-style: none;
}
.skill-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}
.skill-list li:last-child {
  border-bottom: none;
}
.contact {
  text-align: center;
  margin: 3rem 0;
}
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(90deg, #4361ee, #3a0ca3);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-telegram {
  background: linear-gradient(90deg, #0088cc, #005c8a);
}
.btn-email {
  background: linear-gradient(90deg, #ea4335, #b3140a);
}
.btn-git {
  background: linear-gradient(90deg, #6e5494, #4a3469);
}
.btn-website {
  background: linear-gradient(90deg, #10b981, #059669);
}
footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}
.projects-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
