
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #1a1a1a, #4a004f);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: #ff4da6;
}

#subtitle {
  margin: 0;
  font-size: 1rem;
  color: #ccc;
}

.language-switch button {
  margin: 10px 5px;
  font-size: 1.2rem;
  cursor: pointer;
}

.phrase-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff4da6;
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
  font-size: 1.3rem;
  min-height: 100px;
}

.buttons button, .share-buttons button {
  margin: 10px;
  padding: 10px 15px;
  background-color: #ff4da6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
}

.buttons button:hover, .share-buttons button:hover {
  background-color: #cc397f;
}

footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #aaa;
}
