body {
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #fff;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 2em;
  background: linear-gradient(90deg, #43b5df, #6db5d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 30px;
}

.input-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
}

.input-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.mood-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}

.mood-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mood-card.active {
  background: #43b5df;
  color: #fff;
}

.generate-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  background: #43b5df;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.generate-btn:hover {
  background: #3a9fc7;
}

.output-section {
  display: none;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
}

.output-section.visible {
  display: block;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.output-title {
  font-size: 1.3em;
  font-weight: 600;
}

.output-content {
  white-space: pre-wrap;
  background: #000;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  line-height: 1.6;
  max-height: 600px;
  overflow-y: auto;
}

.copy-btn {
  background: #43b5df;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.copy-btn:hover {
  background: #3a9fc7;
}
