body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  background-color: rgb(24, 26, 27);
  color: rgb(232, 230, 227);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 2.5rem;
  margin: 1rem 0;
  font-weight: 500;
  letter-spacing: 2px;
}

.title {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  color: rgb(232, 230, 227);
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1rem;
  background-color: rgb(35, 38, 39);
  border-radius: 8px;
  flex-wrap: wrap; /* Added for better mobile responsiveness */
}

.nav-item {
  text-decoration: none;
  color: rgb(232, 230, 227);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: rgba(232, 230, 227, 0.7);
}

.page-views {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(232, 230, 227, 0.7);
}

.footer {
  padding: 1rem;
  font-size: 0.8rem;
  color: rgba(232, 230, 227, 0.7);
}

@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    gap: 0.5rem;
  }

  .name {
    font-size: 2rem;
  }
}
