/* === user.css === */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-info img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-info span {
  font-weight: bold;
  color: #fff;
}

.user-info a {
  color: #00bcd4;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 10px;
}

h1 {
  text-align: center;
  margin-top: 40px;
  font-size: 2.5rem;
  color: #00bcd4;
}

.tagline {
  text-align: center;
  font-size: 1.2rem;
  margin: 10px 0 30px;
  color: #ccc;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.buttons a,
.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px;
  padding: 6px 18px;
  height: 38px;
  line-height: 1;
  background-color: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.buttons a:hover,
.custom-btn:hover {
  background-color: #0088cc;
  box-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff;
}

.store-icon,
.discord-icon,
.btn-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
}

.discord-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#discord-count {
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}