body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #333;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.profile-pic:hover {
  transform: scale(1.1);
}

.username {
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
  transition: color 0.3s ease;
}
.username:hover {
  color: #7c3aed;
}

.vouch-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  margin-left: 6px;
  color: #fff;
  transition: transform 0.3s ease;
}
.vouch-count:hover {
  transform: scale(1.1);
}
.vouch-count.up {
  background-color: green;
}
.vouch-count.down {
  background-color: red;
  margin-left: 4px;
}

.made-by {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.made-by:hover {
  color: #9d64ff;
}

.add-btn {
  margin-bottom: 32px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background-color: #7c3aed;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.add-btn:hover {
  background-color: #9d64ff;
  transform: scale(1.05);
}

.vouch {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  margin-bottom: 12px;
  background-color: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.vouch:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}

.vouch-username {
  font-weight: bold;
  margin-bottom: 4px;
}

.vouch-message {
  font-size: 16px;
  flex: 1;
}

.vouch-icon {
  color: green;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.vouch:hover .vouch-icon {
  transform: rotate(15deg);
}

.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #222;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-size: 15px;
  transition: all 0.4s ease;
  z-index: 999;
}
.notification.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
