body {
  margin: 0;
  padding: 0;
  background: #f0f4f8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
  position: relative;
}

.top-icons {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #0f0e0e;
  cursor: pointer;
}

.img img{
    
    height: 120px;
    width: 120px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow:  4px 1px lightblue;
    border: 3.5px solid #090909;
    
}

h2 {
  margin: 10px 0 5px;
  font-size: 20px;
}

p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-icons i {
  color: #444;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icons i:hover {
  transform: scale(1.2);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

button {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.message {
  width: 100px;
  background: #f0f0f0;
  color: #333;
  box-shadow:  4px 1px lightblue;
  border: 2px solid rgb(234, 231, 231);
}

.subscribe {
  width: 100px;
  background: #f0f0f0;
  color: #333;
  border: 2px solid rgb(234, 231, 231);
  box-shadow: 4px 1px lightblue;
}

.stats {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
  padding: 0 10px;
  cursor: pointer;
}

.stats i {
  margin-right: 5px;
}

.buttons button:hover{
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}