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

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0d1117;
  color: #c9d1d9;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-height: 0;
}
.container #profile-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  background: #161b22;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
}
.profile-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.profile-card h2 {
  color: #58a6ff;
}
.profile-card .bio {
  margin: 10px 0 20px;
  opacity: 0.8;
}
.profile-card .stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.header {
  text-align: center;
  padding: 20px;
  background: transparent;
  position: relative;
  margin-top: 100px;
}
.header .title {
  font-size: 2rem;
  margin-bottom: 15px;
}
.header .search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.header .search-box input {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 250px;
}
.header .search-box button {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background: #58a6ff;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}
.header .search-box button:hover {
  background: rgb(139, 193.1796407186, 255);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.social-links a {
  color: #c9d1d9;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: #58a6ff;
  transform: scale(1.2);
}
.social-links .location {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #c9d1d9;
  white-space: nowrap;
  opacity: 0.9;
}
.social-links .location i {
  font-size: 0.85rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
  text-decoration: none;
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer a:hover {
  color: #4a9eff;
  opacity: 1;
}
.footer a:active {
  color: #2e7ad6;
  opacity: 0.8;
}

@media (max-width: 1280px) {
  .profile-card {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .search-box {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .search-box input,
  .search-box button {
    width: 250px;
    padding: 10px 15px;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 8px;
  }
}
@media (max-width: 450px) {
  .title {
    font-size: 1.5rem;
  }
  .avatar {
    width: 90px;
    height: 90px;
  }
}

/*# sourceMappingURL=main.css.map */
