body {
  margin: 0;
  background: black;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: Vazirmatn, sans-serif;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #888 #111;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  transition: all 0.4s ease-in-out;
  flex: 1;
  min-width: 280px;
}

.profile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid gray;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.text-info {
  color: white;
}

ul {
  padding: 0;
  margin: 10px 0;
  list-style: none;
  color: white;
}

ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul li i {
  color: #4caf50;
}

hr {
  color: #404040;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.skills-grid li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  color: white;
}

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #111;
}
