/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  color: #ffdb9b;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #ffdb9b;
  margin-bottom: 25px;
}

.input-section label {
  font-size: 16px;
  color: #ffdb9b;
  margin-right: 10px;
  display: block;
  margin-bottom: 5px;
}

.input-section select,
.input-section input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ffdb9b;
  border-radius: 10px;
  font-size: 16px;
  color: #fff; /* Warna teks putih */
  background: #2c3e50; /* Background form lebih gelap */
  transition: border-color 0.3s ease;
  margin-bottom: 15px;
}

.input-section select:focus,
.input-section input:focus {
  border-color: #ffb47b;
  outline: none;
}

.btn {
  padding: 12px 25px;
  background: #ffdb9b;
  color: #2c3e50;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background: #ffb47b;
  transform: scale(1.05);
}

.copy-btn {
  background: #6a11cb;
  color: #fff; /* Warna teks putih untuk tombol copy */
}

.copy-btn:hover {
  background: #4c0d99;
}

.result-section {
  margin-top: 25px;
}

.result-section h2 {
  font-size: 22px;
  color: #ffdb9b;
  margin-bottom: 15px;
}

.keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.keywords-container span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #ffdb9b;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.keywords-container span:hover {
  background: #ffdb9b;
  color: #2c3e50;
  transform: scale(1.1);
}