body {
  background: #12121f;
  color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
}

.container {
  text-align: center;
}
.mood-panel {
  margin-top: 30px;
  text-align: center;
  color: #ccc;
}

.mood-panel h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color:#c9ffe5;
}

.mood-btn {
  border: rgba(255,255,255,0.8);
  margin: 6px 10px;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.mood-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}


.mood-light {
  width: 250px;
  height: 250px;
  margin: 20px auto;
  border-radius: 50%;
  background-color: #6c63ff;
  filter: brightness(1) saturate(1);
  box-shadow: 0 0 60px 20px #6c63ff;
  transition: background-color 0.3s ease, filter 0.3s ease;
  align-self:center;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 400px;
  margin-top: 20px;
  align-self:center;
}

.controls label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #ccc;
  align-self:center;
}

input[type="color"] {
  width: 50px;
  height: 30px;
  border: none;
  margin-top: 6px;
  cursor: pointer;
  align-self:center;
}

input[type="range"] {
  width: 100px;
  margin-top: 6px;
  align-self:center;
}

input[type="checkbox"] {
  margin-top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  align-self: center;
}
