/* ============================================================
   IELTS Vocabulary Game — Styles
   ============================================================ */

.vocab-game-page {
  min-height: calc(100vh - 80px);
  padding: 32px 20px 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #0f3360 50%, var(--aussie-blue) 100%);
  position: relative;
  overflow: hidden;
}

.vocab-game-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vocab-game-page::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 111, 184, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vocab-game__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vocab-game__back {
  margin-bottom: 24px;
}

.vocab-game__back a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vocab-game__back a:hover {
  color: #fff;
}

/* ---- Card (shared) ---- */
.vocab-game__card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.25);
  text-align: center;
}

/* ---- Start Screen ---- */
.vocab-game__start-card {
  padding: 56px 48px;
}

.vocab-game__logo {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}

.vocab-game__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}

.vocab-game__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.vocab-game__intro {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 12px;
  line-height: 1.6;
}

.vocab-game__vocab-count {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.vocab-game__vocab-count strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.vocab-game__high-score {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vocab-game__high-score-label {
  font-size: 14px;
  color: var(--text-muted);
}

.vocab-game__high-score-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ---- Buttons ---- */
.vocab-game__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 180px;
}

.vocab-game__btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #5d3f00;
  box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
}

.vocab-game__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.5);
}

.vocab-game__btn--primary:active {
  transform: translateY(0);
}

.vocab-game__btn--secondary {
  background: var(--bg-soft);
  color: var(--text-primary);
}

.vocab-game__btn--secondary:hover {
  background: var(--border);
}

.vocab-game__btn--outline {
  background: transparent;
  color: var(--aussie-blue);
  border: 2px solid var(--aussie-blue);
  padding: 12px 34px;
}

.vocab-game__btn--outline:hover {
  background: var(--aussie-blue);
  color: #fff;
}

/* ---- Playing — HUD ---- */
.vocab-game__hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 24px;
}

.vocab-game__hud-item {
  text-align: center;
  flex: 1;
}

.vocab-game__hud-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.vocab-game__hud-value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.vocab-game__time {
  color: #fff;
}

.vocab-game__time.is-low {
  color: #ff6b6b;
  animation: pulse 1s ease-in-out infinite;
}

.vocab-game__score {
  color: var(--gold-light);
}

.vocab-game__combo {
  color: #7dd3fc;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---- Word Card ---- */
.vocab-game__word-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.2);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.vocab-game__word {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.vocab-game__phonetic {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

.vocab-game__combo-popup {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--gold);
  color: #5d3f00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  animation: floatUp 0.8s ease-out forwards;
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(10px) scale(0.8); }
  30% { opacity: 1; transform: translateY(0) scale(1.1); }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

/* ---- Options ---- */
.vocab-game__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.vocab-game__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  position: relative;
}

.vocab-game__option:hover:not(.is-disabled) {
  border-color: var(--aussie-blue);
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 111, 184, 0.12);
}

.vocab-game__option:active:not(.is-disabled) {
  transform: translateY(0);
}

.vocab-game__option-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
}

.vocab-game__option-text {
  flex: 1;
  line-height: 1.4;
}

.vocab-game__option-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.vocab-game__option.is-correct {
  border-color: var(--green);
  background: #e8f5ef;
  animation: correctPop 0.3s ease;
}

.vocab-game__option.is-correct .vocab-game__option-label {
  background: var(--green);
  color: #fff;
}

.vocab-game__option.is-correct .vocab-game__option-icon {
  background: var(--green);
  position: relative;
}

.vocab-game__option.is-correct .vocab-game__option-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}

.vocab-game__option.is-wrong {
  border-color: var(--red);
  background: #fde8e8;
  animation: wrongShake 0.3s ease;
}

.vocab-game__option.is-wrong .vocab-game__option-label {
  background: var(--red);
  color: #fff;
}

.vocab-game__option.is-wrong .vocab-game__option-icon {
  background: var(--red);
  position: relative;
}

.vocab-game__option.is-wrong .vocab-game__option-icon::after {
  content: '✕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.vocab-game__option.is-disabled {
  cursor: default;
  pointer-events: none;
}

@keyframes correctPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes wrongShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---- Progress ---- */
.vocab-game__progress-wrap {
  text-align: center;
  padding: 12px 0;
}

.vocab-game__progress-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- End Screen ---- */
.vocab-game__end-card {
  padding: 48px 40px;
}

.vocab-game__end-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
}

.vocab-game__new-record {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #5d3f00;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  animation: recordPulse 1.2s ease-in-out infinite;
}

@keyframes recordPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(232, 168, 56, 0); }
}

.vocab-game__final-score {
  font-size: 72px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--aussie-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vocab-game__rating {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.vocab-game__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px 16px;
  background: var(--bg-soft);
  border-radius: 14px;
}

.vocab-game__stat {
  text-align: center;
}

.vocab-game__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.vocab-game__stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.vocab-game__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vocab-game__actions .vocab-game__btn {
  width: 100%;
  max-width: 280px;
}

/* ---- Ad slots (reserved) ---- */
.vocab-game__ad {
  width: 100%;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.vocab-game__ad--top {
  margin-bottom: 24px;
}

.vocab-game__ad--bottom {
  margin-top: 24px;
  margin-bottom: 0;
}

.vocab-game__ad-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Theme Variants ---- */
/* IELTS (default) — navy + gold */
.vocab-game-page--ielts {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3360 50%, var(--aussie-blue) 100%);
}

/* PTE — orange + amber */
.vocab-game-page--pte {
  background: linear-gradient(135deg, #7a2e0d 0%, #c2410c 50%, #f97316 100%);
}
.vocab-game-page--pte .vocab-game__btn--primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #451a03;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.vocab-game-page--pte .vocab-game__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}
.vocab-game-page--pte .vocab-game__btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.vocab-game-page--pte .vocab-game__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vocab-game-page--pte .vocab-game__score {
  color: #fcd34d;
}
.vocab-game-page--pte .vocab-game__vocab-count strong {
  color: #c2410c;
}
.vocab-game-page--pte .vocab-game__high-score-value {
  color: #c2410c;
}
.vocab-game-page--pte .vocab-game__final-score {
  background: linear-gradient(135deg, #7a2e0d 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vocab-game-page--pte .vocab-game__new-record {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #451a03;
}
@keyframes pteRecordPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}
.vocab-game-page--pte .vocab-game__new-record {
  animation: pteRecordPulse 1.2s ease-in-out infinite;
}
.vocab-game-page--pte .vocab-game__combo-popup {
  background: #f59e0b;
  color: #451a03;
}

/* TOEFL — green + teal */
.vocab-game-page--toefl {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
}
.vocab-game-page--toefl .vocab-game__btn--primary {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #022c22;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.vocab-game-page--toefl .vocab-game__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}
.vocab-game-page--toefl .vocab-game__btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.vocab-game-page--toefl .vocab-game__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vocab-game-page--toefl .vocab-game__score {
  color: #6ee7b7;
}
.vocab-game-page--toefl .vocab-game__vocab-count strong {
  color: #047857;
}
.vocab-game-page--toefl .vocab-game__high-score-value {
  color: #047857;
}
.vocab-game-page--toefl .vocab-game__final-score {
  background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vocab-game-page--toefl .vocab-game__new-record {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #022c22;
}
@keyframes toeflRecordPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}
.vocab-game-page--toefl .vocab-game__new-record {
  animation: toeflRecordPulse 1.2s ease-in-out infinite;
}
.vocab-game-page--toefl .vocab-game__combo-popup {
  background: #10b981;
  color: #022c22;
}

/* OET — purple + violet */
.vocab-game-page--oet {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #a78bfa 100%);
}
.vocab-game-page--oet .vocab-game__btn--primary {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  color: #2e1065;
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}
.vocab-game-page--oet .vocab-game__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(167, 139, 250, 0.5);
}
.vocab-game-page--oet .vocab-game__btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.vocab-game-page--oet .vocab-game__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vocab-game-page--oet .vocab-game__score {
  color: #ddd6fe;
}
.vocab-game-page--oet .vocab-game__vocab-count strong {
  color: #7c3aed;
}
.vocab-game-page--oet .vocab-game__high-score-value {
  color: #7c3aed;
}
.vocab-game-page--oet .vocab-game__final-score {
  background: linear-gradient(135deg, #4c1d95 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vocab-game-page--oet .vocab-game__new-record {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  color: #2e1065;
}
@keyframes oetRecordPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(167, 139, 250, 0); }
}
.vocab-game-page--oet .vocab-game__new-record {
  animation: oetRecordPulse 1.2s ease-in-out infinite;
}
.vocab-game-page--oet .vocab-game__combo-popup {
  background: #a78bfa;
  color: #2e1065;
}

/* ---- Games Hall Page ---- */
.vocab-hall-page {
  min-height: calc(100vh - 80px);
  padding: 32px 20px 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #0f4c75 100%);
  position: relative;
  overflow: hidden;
}

.vocab-hall-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vocab-hall-page::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 111, 184, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vocab-hall__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vocab-hall__back {
  margin-bottom: 24px;
}

.vocab-hall__back a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vocab-hall__back a:hover {
  color: #fff;
}

.vocab-hall__header {
  text-align: center;
  margin-bottom: 48px;
}

.vocab-hall__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}

.vocab-hall__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-weight: 500;
}

.vocab-hall__intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.vocab-hall__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vocab-hall-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.2);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-top: 4px solid var(--aussie-blue);
}

.vocab-hall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(10, 37, 64, 0.3);
}

.vocab-hall-card--ielts {
  border-top-color: var(--aussie-blue);
}

.vocab-hall-card--pte {
  border-top-color: #f97316;
}

.vocab-hall-card--toefl {
  border-top-color: #10b981;
}

.vocab-hall-card--oet {
  border-top-color: #a78bfa;
}

.vocab-hall-card__logo {
  font-size: 48px;
  margin-bottom: 12px;
  line-height: 1;
}

.vocab-hall-card__body {
  flex: 1;
  margin-bottom: 20px;
}

.vocab-hall-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.vocab-hall-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.vocab-hall-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vocab-hall-card__count {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--bg-soft);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.vocab-hall-card__high {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #fef3c7;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
}

.vocab-hall-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #5d3f00;
  box-shadow: 0 4px 16px rgba(232, 168, 56, 0.3);
  align-self: flex-start;
}

.vocab-hall-card:hover .vocab-hall-card__btn {
  transform: translateX(4px);
}

.vocab-hall-card--pte .vocab-hall-card__btn {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.vocab-hall-card--toefl .vocab-hall-card__btn {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #022c22;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.vocab-hall-card--oet .vocab-hall-card__btn {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

@media (max-width: 768px) {
  .vocab-hall__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vocab-hall__title {
    font-size: 28px;
  }

  .vocab-hall-card {
    padding: 24px 20px;
  }

  .vocab-hall-card__logo {
    font-size: 40px;
  }

  .vocab-hall-card__title {
    font-size: 18px;
  }
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .vocab-game-page {
    padding: 20px 14px 40px;
  }

  .vocab-game__card {
    padding: 32px 24px;
  }

  .vocab-game__start-card {
    padding: 40px 28px;
  }

  .vocab-game__title {
    font-size: 24px;
  }

  .vocab-game__logo {
    font-size: 44px;
  }

  .vocab-game__hud {
    padding: 12px 16px;
  }

  .vocab-game__hud-value {
    font-size: 20px;
  }

  .vocab-game__word-card {
    padding: 36px 24px;
  }

  .vocab-game__word {
    font-size: 38px;
  }

  .vocab-game__phonetic {
    font-size: 16px;
  }

  .vocab-game__options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vocab-game__option {
    padding: 14px 16px;
    font-size: 15px;
  }

  .vocab-game__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .vocab-game__final-score {
    font-size: 56px;
  }

  .vocab-game__end-card {
    padding: 36px 24px;
  }
}
