@import url('style.css');

/* Tambahan untuk profil */
.profile-card {
  background: rgba(20, 22, 35, 0.9);
  border: 1px solid #00bcd4;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.1);
  color: #e0f7fa;
  max-width: 600px;
  margin: 30px auto 0;
  text-align: center;
}

.profile-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.profile-card .username {
  font-size: 1.4rem;
  color: #00e5ff;
  margin: 10px 0 5px;
}

.profile-card .favorite-game,
.profile-card .bio {
  margin: 6px 0;
  font-size: 1rem;
  color: #b2ebf2;
}

.generator label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #b2ebf2;
}

.generator input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #00bcd4;
  background-color: rgba(15, 17, 27, 0.9);
  color: #e0f7fa;
  font-size: 1rem;
  border-radius: 0;
  outline: none;
  transition: 0.3s;
}

.generator input:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

.button-group {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.button-group button {
  padding: 10px 20px;
  background: transparent;
  color: #00e5ff;
  font-weight: bold;
  border: 1px solid #00bcd4;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  border-radius: 6px;
}

.button-group button:hover {
  background-color: rgba(0, 229, 255, 0.1);
}
