.word-card {
  background: #fffef6;
  border: 4px solid #ffd54f;
  border-radius: 20px;
  padding: 24px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.word-card__title {
  text-align: center;
  color: #ff9800;
  margin-bottom: 20px;
}

.word-card__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.word-name {
  text-align: center;
  font-size: 2rem;
  margin-top: 20px;
}

.pronunciation {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}

.part-of-speech {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.section {
  margin-top: 20px;
}

.section h4 {
  margin-bottom: 8px;
}

.fun-fact {
  background: #fff8dc;
  border-left: 5px solid #ffb300;
  padding: 12px;
  border-radius: 10px;
}

.word-card__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.word-card__buttons .speak-word,
.word-card__buttons .learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 56px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.word-card__buttons .speak-word {
  background: #43a047;
  color: #fff;
}

.word-card__buttons .speak-word:hover {
  background: #2e7d32;
}

.word-card__buttons .learn-more {
  background: #1976d2;
  color: #fff;
}

.word-card__buttons .learn-more:hover {
  background: #125ea8;
}