/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem; /* Added for mobile spacing - asked from AI */
}

/* Headings */
h1{
  font-size:15px;
  font-weight: 400;
  padding-top: 20px;

}

h2{
  color:hsl(75, 94%, 57%);
  font-size: 10px;
  padding-top: 7.5px;
  font-weight: 600;
  filter: blur(0.5px);  /* <-- This adds the blur effect */

}
h3{
    font-size: 9px;
    font-weight:400;
    padding-top: 20px;
    padding-bottom: 18px;
    filter: blur(0.5px);  /* <-- This adds the blur effect */

}

/* Profile Image */
.profile-img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover; /* makes sure it fills the circle nicely */
 
}

/* Card Container */
.card {
  
  background-color:hsl(0, 0%, 12%); /* یه مشکی نرم‌تر */
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  align-items: center;
  width: 17rem;
  height:26.5rem;
}

/* Social Buttons */
.social-btn {
  background-color: hsl(0, 0%, 20%);
  width: 13.5rem;
  height: 1.8rem;
  align-content: center;
  border-radius: 5px;
  margin-bottom: 12px;
    filter: blur(0.45px);  /* <-- This adds the blur effect */
}


button {
  background: none;
  border: none;
  color: white;
  font-weight: 400;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  transition: background-color 0.3s ease; /* Smooth transition */
}


button:hover,
button:focus {
  background-color: hsl(75, 94%, 57%);
  border-radius: 5px;
  outline: 2px solid white;
  outline-offset: 2px;
  color: #000;
}




/* Attribution */
 .attribution { 
    font-size: 11px; 
    align-content: center;
    margin-top: 20px;
    text-align: center;
    color:rgba(255, 255, 255, 0.668);
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
 }

/* Mobile styles */@media (max-width: 768px) {
  body {
    background-color: #f9f9f9;
    color: #000; 
  }

  .card {
    background-color: #fff; 
    color: #000;
  }

  .attribution {
    color: rgba(119, 35, 35, 0.668); 
  }
}

/* Desktop (≥1440px) */
@media (min-width: 1440px) {
  body {
    font-size: 18px;
    padding: 2rem 10rem;
    max-width: 1440px;
    margin: 0 auto;
  }
}