/* Estilos específicos para Parejas de palabras */

.word-areas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 30px;
}

.word-area {
  flex: 1;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--box-shadow);
}

.word-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.word-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 10px 15px;
  font-size: 1.8rem;
  color: #FF0000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.word-emoji {
  font-size: 2rem;
}

.word-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.word-card.selected {
  background-color: var(--corcholis-yellow);
  transform: scale(1.1);
}

.pair-container {
  background-color: var(--corcholis-light);
  border-radius: var(--border-radius);
  padding: 20px;
  min-height: 120px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.pair-display {
  font-size: 2.5rem;
  color: #FF0000;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  min-height: 70px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.category-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-button {
  background-color: var(--corcholis-blue);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.category-button:hover {
  background-color: var(--corcholis-purple);
  transform: scale(1.05);
}

.category-button.active {
  background-color: var(--corcholis-green);
  transform: scale(1.1);
}

.praise-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--corcholis-green);
  color: white;
  padding: 20px 40px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: bold;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}

/* Specific star container override/adjustment if needed, 
   but currently styles from corcholis_style_1.css seem compatible 
   except for margin-top specific to this game? 
   No, there was a .stars-container in the <style> block,
   but there is also .corcholis-stars-container in global.
   The HTML uses .corcholis-stars-container.
   Wait, the HTML block had:
   .stars-container { display: flex; justify-content: center; margin-top: 20px; }
   BUT the HTML body uses `corcholis-stars-container`.
   Wait check original HTML lines 144 vs 187.
   Line 144: .stars-container { ... }
   Line 187: <div class="corcholis-stars-container">
   So the local style .stars-container WAS UNUSED? 
   Ah, let me check strict usage.
   There is NO element with class "stars-container" in the provided HTML snippet view.
   So I can likely DROP it.
*/

.progress-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  background-color: #e0e0e0;
  border-radius: 20px;
  height: 15px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--corcholis-green);
  width: 0%;
  transition: width 0.5s;
}
