* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

body {
  background: #f6f8fa;
  color: #1f2328;
}
.logo-heading {
  display: flex;              
  align-items: center;       
  justify-content: center;    
  gap: 12px;  
  margin-top: 20px;                
}

.logo {
  width: 40px;              
  height: 40px;
}

.header {
  padding: 16px 0;
  text-align: center;
}

.header h1 {
  font-size: 35px;
  font-weight: 600;
}

.main {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

.search-box {
  position: relative;
  max-width: 520px;
  margin: 0 auto 20px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;                
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.6;
  pointer-events: none;       
}

.search-box input {
  width: 100%;
  padding: 8px 14px 8px 40px; 
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #d0d7de;
  background: #f6f8fa;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #0969da;
  box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.3);
}

.status {
  text-align: center;
 margin-top: 40px;
  font-weight: 500;
}

.overview{
  text-align: center;
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 40px;
}

.overview span{
  color: #0969da;
}

.profile-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #57606a;
  font-size: 13px;
  margin-top: 4px;
}

.info-line a {
  color: #0969da;
  text-decoration: none;
}

.icon {
  width: 16px;
  height: 16px;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.stats div {
  text-align: center;
  text-transform: uppercase;
}

.stats span {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: #0969da;
}

.repo-heading {
  margin: 40px 0 30px;
  font-size: 20px;
  text-align: center;
}

.repos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.repo {
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 16px;
}

.repo a {
  font-weight: 600;
  color: #0969da;
  text-decoration: none;
}

.repo p {
  margin-top: 6px;
  color: #57606a;
  font-size: 14px;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .stats {
    flex-direction: column;
    gap: 12px;
  }
 .header h1 {
    font-size: 25px;
  }
  .profile-top {
    flex-direction: column;
    text-align: center;
  }
  .overview{
    font-size: 25px;
  }
  .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
