@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Nunito', sans-serif;
  background: #fafafa;
  color: #2c3e50;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
#app {
  min-height: 100vh;
  padding: 16px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
nav a {
  font-size: 28px;
  text-decoration: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fff9c4, #fff176);
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
  animation: starsPop 0.4s ease;
}
.nav-star-icon {
  font-size: 18px;
  animation: starSpin 1.5s ease infinite;
}
.nav-star-count {
  font-size: 16px;
  font-weight: 900;
  color: #e65100;
  min-width: 16px;
  text-align: center;
}
@keyframes starsPop {
0% { transform: scale(0); opacity: 0;
}
60% { transform: scale(1.2);
}
100% { transform: scale(1); opacity: 1;
}
}
@keyframes starSpin {
0%, 100% { transform: rotate(0deg) scale(1);
}
25% { transform: rotate(15deg) scale(1.1);
}
75% { transform: rotate(-15deg) scale(1.1);
}
}
.nav-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}
.nav-name {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 8px;
}
button {
  font-family: 'Nunito', sans-serif;
}

.welcome-overlay[data-v-51b9f312] {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.welcome-step[data-v-51b9f312] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  max-width: 400px;
  width: 100%;
  animation: fadeUp-51b9f312 0.5s ease;
}
@keyframes fadeUp-51b9f312 {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.wave-emoji[data-v-51b9f312] {
  font-size: 80px;
  animation: wave-51b9f312 1s ease infinite alternate;
  cursor: pointer;
}
@keyframes wave-51b9f312 {
from { transform: rotate(-10deg);
}
to { transform: rotate(20deg);
}
}
.greeting-title[data-v-51b9f312] {
  font-size: 48px;
  font-weight: 900;
  margin-top: 20px;
}
.greeting-sub[data-v-51b9f312] {
  font-size: 22px;
  opacity: 0.9;
  margin-top: 12px;
}
.tap-hint[data-v-51b9f312] {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.5;
  animation: pulse-51b9f312 2s ease infinite;
}
@keyframes pulse-51b9f312 {
0%, 100% { opacity: 0.3;
}
50% { opacity: 0.7;
}
}
.step-emoji[data-v-51b9f312] {
  font-size: 60px;
  margin-bottom: 16px;
}
.step-title[data-v-51b9f312] {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
}
.name-form[data-v-51b9f312] {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.name-input[data-v-51b9f312] {
  width: 100%;
  max-width: 300px;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-align: center;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
}
.name-input[data-v-51b9f312]::placeholder {
  color: #bbb;
  font-weight: 400;
}
.btn-next[data-v-51b9f312] {
  padding: 14px 48px;
  background: white;
  color: #764ba2;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-next[data-v-51b9f312]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.btn-next[data-v-51b9f312]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.camera-area[data-v-51b9f312] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.camera-video[data-v-51b9f312] {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.3);
}
.btn-capture[data-v-51b9f312] {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid white;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}
.btn-capture[data-v-51b9f312]:hover {
  transform: scale(1.1);
}
.btn-capture[data-v-51b9f312]:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.capture-ring[data-v-51b9f312] {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: block;
}
.camera-loading[data-v-51b9f312] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  padding: 60px 0;
}
.preview-area[data-v-51b9f312] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.avatar-preview[data-v-51b9f312] {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.5);
}
.preview-actions[data-v-51b9f312] {
  display: flex;
  gap: 16px;
}
.btn-retake[data-v-51b9f312] {
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-retake[data-v-51b9f312]:hover {
  background: rgba(255, 255, 255, 0.3);
}

.home[data-v-24912eb6] {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero[data-v-24912eb6] {
  margin-bottom: 40px;
}
.hero-avatar[data-v-24912eb6] {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
  margin-bottom: 12px;
}
h1[data-v-24912eb6] {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 8px;
}
.subtitle[data-v-24912eb6] {
  font-size: 18px;
  color: #7f8c8d;
}
.hero-stars[data-v-24912eb6] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: linear-gradient(135deg, #fff9c4, #ffe082);
  padding: 6px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.35);
  animation: heroStarsIn-24912eb6 0.6s ease;
}
.hero-star-icon[data-v-24912eb6] {
  font-size: 24px;
  animation: heroStarPulse-24912eb6 2s ease infinite;
}
.hero-star-count[data-v-24912eb6] {
  font-size: 22px;
  font-weight: 900;
  color: #e65100;
}
@keyframes heroStarsIn-24912eb6 {
0% { transform: scale(0) rotate(-10deg); opacity: 0;
}
60% { transform: scale(1.15) rotate(3deg);
}
100% { transform: scale(1) rotate(0deg); opacity: 1;
}
}
@keyframes heroStarPulse-24912eb6 {
0%, 100% { transform: scale(1);
}
50% { transform: scale(1.2);
}
}
.cards[data-v-24912eb6] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card[data-v-24912eb6] {
  display: block;
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}
.card[data-v-24912eb6]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.card-syllables[data-v-24912eb6] {
  background: linear-gradient(135deg, #42b883, #369970);
}
.card-words[data-v-24912eb6] {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.card-icon[data-v-24912eb6] {
  font-size: 40px;
  margin-bottom: 8px;
}
.card-title[data-v-24912eb6] {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}
.card-desc[data-v-24912eb6] {
  font-size: 14px;
  opacity: 0.9;
}
.bottom-link[data-v-24912eb6] {
  margin-top: 40px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.sep[data-v-24912eb6] {
  color: #ddd;
}
.bottom-link a[data-v-24912eb6] {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}
.bottom-link a[data-v-24912eb6]:hover {
  color: #888;
}

.syllable-trainer[data-v-d4784fd5] {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 40px);
  padding-top: 20px;
}
.setup[data-v-d4784fd5] {
  padding-top: 60px;
}
.setup h2[data-v-d4784fd5] {
  color: #2c3e50;
  margin-bottom: 24px;
}
.setup-row[data-v-d4784fd5] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.setup-label[data-v-d4784fd5] {
  font-size: 18px;
  color: #555;
  font-weight: 700;
  min-width: 60px;
}
.time-btn[data-v-d4784fd5] {
  padding: 12px 20px;
  border: 2px solid #42b883;
  border-radius: 12px;
  background: white;
  color: #42b883;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.time-btn[data-v-d4784fd5]:hover {
  background: #42b883;
  color: white;
}
.time-btn.active[data-v-d4784fd5] {
  background: #42b883;
  color: white;
}
.btn-start[data-v-d4784fd5] {
  padding: 14px 40px;
  background: #42b883;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-start[data-v-d4784fd5]:hover {
  background: #369970;
}
.btn-start[data-v-d4784fd5]:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.ball-area[data-v-d4784fd5] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 350px;
  touch-action: none;
}
.balloon[data-v-d4784fd5] {
  position: relative;
  width: 200px;
  height: 240px;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset -15px -25px 40px rgba(0, 0, 0, 0.18),
    inset 8px 12px 25px rgba(255, 255, 255, 0.25),
    0 8px 30px rgba(0, 0, 0, 0.12);
  transition: background 0.6s ease, transform 0.3s ease, opacity 0.3s ease;
  animation: float-d4784fd5 3s ease-in-out infinite;
}
.balloon-highlight[data-v-d4784fd5] {
  position: absolute;
  top: 22%;
  left: 22%;
  width: 35%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(-30deg);
  pointer-events: none;
}
.balloon-knot[data-v-d4784fd5] {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: rgba(0, 0, 0, 0.2);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.balloon-string[data-v-d4784fd5] {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 92px;
  background: transparent;
  border-left: 2px dashed #aaa;
  pointer-events: none;
}
.balloon.entering[data-v-d4784fd5] {
  animation: ballEnter-d4784fd5 0.5s ease forwards;
}
.ball-text[data-v-d4784fd5] {
  font-family: 'Nunito', 'Arial', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  user-select: none;
  z-index: 1;
}
.balloon.wrong[data-v-d4784fd5] {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
  animation: shake-d4784fd5 0.4s ease;
}
.balloon.flying[data-v-d4784fd5] {
  pointer-events: none;
}
.balloon.fly-up[data-v-d4784fd5] {
  animation: flyUp-d4784fd5 0.5s ease forwards;
}
.balloon.fly-left[data-v-d4784fd5] {
  animation: flyLeft-d4784fd5 0.5s ease forwards;
}
.balloon.fly-right[data-v-d4784fd5] {
  animation: flyRight-d4784fd5 0.5s ease forwards;
}
@keyframes float-d4784fd5 {
0%, 100% { transform: translateY(0) rotate(0deg);
}
25% { transform: translateY(-8px) rotate(1deg);
}
75% { transform: translateY(4px) rotate(-1deg);
}
}
@keyframes ballEnter-d4784fd5 {
0% { transform: scale(0) translateY(60px); opacity: 0;
}
50% { transform: scale(1.2) translateY(-15px); opacity: 1;
}
70% { transform: scale(0.95) translateY(5px);
}
100% { transform: scale(1) translateY(0);
}
}
@keyframes shake-d4784fd5 {
0%, 100% { transform: translateX(0);
}
20% { transform: translateX(-12px);
}
40% { transform: translateX(12px);
}
60% { transform: translateX(-8px);
}
80% { transform: translateX(8px);
}
}
@keyframes flyUp-d4784fd5 {
0% { transform: translateY(0) scale(1); opacity: 1;
}
100% { transform: translateY(-350px) scale(0.3); opacity: 0;
}
}
@keyframes flyLeft-d4784fd5 {
0% { transform: translateX(0) translateY(0) scale(1) rotate(0deg); opacity: 1;
}
100% { transform: translateX(-300px) translateY(-120px) scale(0.3) rotate(-20deg); opacity: 0;
}
}
@keyframes flyRight-d4784fd5 {
0% { transform: translateX(0) translateY(0) scale(1) rotate(0deg); opacity: 1;
}
100% { transform: translateX(300px) translateY(-120px) scale(0.3) rotate(20deg); opacity: 0;
}
}
.bottom-bar[data-v-d4784fd5] {
  margin-top: auto;
  padding-top: 20px;
}
.hint[data-v-d4784fd5] {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 10px;
}
.hint kbd[data-v-d4784fd5] {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f7f7f7;
  font-family: monospace;
  font-size: 13px;
  color: #bbb;
}
.swipe-hint[data-v-d4784fd5] {
  font-size: 13px;
  color: #bbb;
}
.level-line[data-v-d4784fd5] {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
}
.history[data-v-d4784fd5] {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  max-height: 100px;
  overflow-y: auto;
  padding: 4px 8px 8px;
}
.final-history[data-v-d4784fd5] {
  max-height: 300px;
  margin-bottom: 20px;
}
.history-chip[data-v-d4784fd5] {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}
.timer[data-v-d4784fd5] {
  position: fixed;
  bottom: 10px;
  right: 14px;
  font-size: 11px;
  color: #ccc;
  font-family: monospace;
}
.results[data-v-d4784fd5] {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results-hero[data-v-d4784fd5] {
  text-align: center;
  margin-bottom: 24px;
}
.results-emoji[data-v-d4784fd5] {
  font-size: 64px;
  animation: heroEmojiIn-d4784fd5 0.6s ease;
}
@keyframes heroEmojiIn-d4784fd5 {
0% { transform: scale(0) rotate(-20deg); opacity: 0;
}
50% { transform: scale(1.3) rotate(10deg);
}
100% { transform: scale(1) rotate(0deg); opacity: 1;
}
}
.results-praise[data-v-d4784fd5] {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #f39c12, #e74c3c, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 24px;
  animation: praiseIn-d4784fd5 0.8s ease;
}
@keyframes praiseIn-d4784fd5 {
0% { transform: translateY(20px); opacity: 0;
}
100% { transform: translateY(0); opacity: 1;
}
}
.stars-section[data-v-d4784fd5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.stars-row[data-v-d4784fd5] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.star[data-v-d4784fd5] {
  display: inline-block;
  font-size: 40px;
  opacity: 0;
  animation: starPop-d4784fd5 0.5s ease forwards;
}
@keyframes starPop-d4784fd5 {
0% { transform: scale(0) rotate(-180deg); opacity: 0;
}
60% { transform: scale(1.3) rotate(10deg); opacity: 1;
}
80% { transform: scale(0.9) rotate(-5deg);
}
100% { transform: scale(1) rotate(0deg); opacity: 1;
}
}
.star-bonus[data-v-d4784fd5] {
  font-size: 32px;
}
.stars-legend[data-v-d4784fd5] {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
}
.results-details[data-v-d4784fd5] {
  width: 100%;
  max-width: 500px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 16px;
}
.results-details h2[data-v-d4784fd5] {
  color: #2c3e50;
  margin-bottom: 20px;
}
.results-stats[data-v-d4784fd5] {
  text-align: center;
  margin-bottom: 16px;
}
.results-stats p[data-v-d4784fd5] {
  font-size: 16px;
  color: #999;
  margin-bottom: 4px;
}
.results-stats strong[data-v-d4784fd5] {
  color: #777;
}
.results-actions[data-v-d4784fd5] {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.btn-home[data-v-d4784fd5] {
  padding: 14px 32px;
  background: #f0f0f0;
  color: #555;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-home[data-v-d4784fd5]:hover {
  background: #e0e0e0;
}
.levelup-overlay[data-v-d4784fd5] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  animation: fadeIn-d4784fd5 0.3s ease;
}
@keyframes fadeIn-d4784fd5 {
from { opacity: 0;
}
to { opacity: 1;
}
}
.levelup-card[data-v-d4784fd5] {
  background: linear-gradient(135deg, #fff9c4, #fff176);
  padding: 40px 60px;
  border-radius: 24px;
  text-align: center;
  animation: popIn-d4784fd5 0.5s ease;
  box-shadow: 0 8px 40px rgba(255, 193, 7, 0.4);
}
@keyframes popIn-d4784fd5 {
0% { transform: scale(0.3); opacity: 0;
}
60% { transform: scale(1.1);
}
100% { transform: scale(1); opacity: 1;
}
}
.trophy[data-v-d4784fd5] {
  font-size: 80px;
  animation: bounce-d4784fd5 0.6s ease infinite alternate;
}
@keyframes bounce-d4784fd5 {
from { transform: translateY(0);
}
to { transform: translateY(-10px);
}
}
.levelup-text[data-v-d4784fd5] {
  font-size: 32px;
  font-weight: 900;
  color: #e65100;
  margin-top: 12px;
}
.levelup-sub[data-v-d4784fd5] {
  font-size: 16px;
  color: #bf360c;
  margin-top: 6px;
  opacity: 0.8;
}

.maps-page[data-v-abbf5f38] {
  text-align: center;
  max-width: 100vw;
  overflow-x: hidden;
}
h2[data-v-abbf5f38] {
  color: #2c3e50;
  margin-bottom: 20px;
}
.two-cols[data-v-abbf5f38] {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.col[data-v-abbf5f38] {
  min-width: 0;
  overflow: hidden;
}
.col-2[data-v-abbf5f38] {
  flex: 3;
}
.col-3[data-v-abbf5f38] {
  flex: 4;
}
.col-title[data-v-abbf5f38] {
  font-size: 18px;
  color: #42b883;
  margin-bottom: 12px;
}
.table-wrap[data-v-abbf5f38] {
  overflow: hidden;
}
table[data-v-abbf5f38] {
  border-collapse: separate;
  border-spacing: 2px;
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
}
th[data-v-abbf5f38] {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  padding: 2px 3px;
}
.row-label[data-v-abbf5f38] {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  padding: 2px 4px;
  text-align: right;
  width: 24px;
}
.cell[data-v-abbf5f38] {
  position: relative;
  padding: 4px 2px;
  border-radius: 4px;
  cursor: default;
  transition: transform 0.15s;
}
.cell[data-v-abbf5f38]:hover {
  transform: scale(1.15);
  z-index: 10;
}
.cell-sm[data-v-abbf5f38] {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 3px;
  position: relative;
  cursor: default;
}
.cell-sm[data-v-abbf5f38]:hover {
  transform: scale(1.2);
  z-index: 10;
}
.cell-text[data-v-abbf5f38] {
  color: white;
  font-weight: 700;
  font-size: 11px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tooltip[data-v-abbf5f38] {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 100;
  pointer-events: none;
  text-shadow: none;
}
.tooltip[data-v-abbf5f38]::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #2c3e50;
}
.sections[data-v-abbf5f38] {
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.section[data-v-abbf5f38] {
  margin-bottom: 10px;
}
.section-title[data-v-abbf5f38] {
  font-size: 13px;
  font-weight: 700;
  color: #2980b9;
  margin-bottom: 3px;
}
.syllable-grid[data-v-abbf5f38] {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.legend[data-v-abbf5f38] {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.legend-item[data-v-abbf5f38] {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.actions[data-v-abbf5f38] {
  margin-top: 20px;
}
.btn-danger[data-v-abbf5f38] {
  padding: 10px 20px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.btn-danger[data-v-abbf5f38]:hover {
  background: #c0392b;
}
.back[data-v-abbf5f38] {
  margin-top: 16px;
}
.back a[data-v-abbf5f38] {
  color: #7f8c8d;
  text-decoration: none;
  font-size: 16px;
}
.back a[data-v-abbf5f38]:hover {
  color: #42b883;
}

.word-trainer[data-v-8180dc94] {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 40px);
  padding-top: 20px;
}
.setup[data-v-8180dc94] {
  padding-top: 20px;
}
.setup h2[data-v-8180dc94] {
  color: #2c3e50;
  margin-bottom: 20px;
}
.setup-section[data-v-8180dc94] {
  margin-bottom: 20px;
}
.setup-label[data-v-8180dc94] {
  font-size: 16px;
  color: #555;
  font-weight: 700;
  margin-bottom: 8px;
}
.setup-options[data-v-8180dc94] {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.opt-btn[data-v-8180dc94] {
  padding: 10px 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: white;
  color: #555;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.opt-btn[data-v-8180dc94]:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}
.opt-btn.active[data-v-8180dc94] {
  border-color: #e74c3c;
  background: #e74c3c;
  color: white;
}
.mode-words.active[data-v-8180dc94] { background: #e74c3c; border-color: #e74c3c;
}
.mode-sentence.active[data-v-8180dc94] { background: #9b59b6; border-color: #9b59b6;
}
.mode-story.active[data-v-8180dc94] { background: #2c3e50; border-color: #2c3e50;
}
.load-error[data-v-8180dc94] {
  color: #e74c3c;
  font-size: 14px;
  margin-bottom: 12px;
}
.btn-start[data-v-8180dc94] {
  padding: 14px 40px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-start[data-v-8180dc94]:hover {
  background: #c0392b;
}
.btn-start[data-v-8180dc94]:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.back-top[data-v-8180dc94] {
  margin-top: 16px;
}
.back-top a[data-v-8180dc94] {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}
.word-display[data-v-8180dc94] {
  font-family: 'Nunito', 'Arial', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin: 50px 20px 20px;
  word-break: break-word;
  touch-action: none;
}
.word-display.syllable[data-v-8180dc94] {
  font-size: 56px;
}
.syllable-sep[data-v-8180dc94] {
  font-size: 0.5em;
  font-weight: 300;
  color: #999;
  touch-action: none;
}
.syllable-part[data-v-8180dc94] {
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
  margin: 0 2px;
  touch-action: none;
}
.syllable-part.highlight[data-v-8180dc94] {
  transform: scale(1.15);
  color: #e74c3c;
}
.bottom-bar[data-v-8180dc94] {
  margin-top: auto;
  padding-top: 20px;
}
.controls-bar[data-v-8180dc94] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 16px;
}
.hint[data-v-8180dc94] {
  font-size: 13px;
  color: #ccc;
}
.hint kbd[data-v-8180dc94] {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f7f7f7;
  font-family: monospace;
  font-size: 13px;
  color: #bbb;
}
.swipe-hint[data-v-8180dc94] {
  font-size: 13px;
  color: #bbb;
}
.btn-syllable[data-v-8180dc94] {
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f7f7f7;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-syllable[data-v-8180dc94]:hover {
  border-color: #999;
  color: #555;
}
.counter[data-v-8180dc94] {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
}
.history[data-v-8180dc94] {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  max-height: 80px;
  overflow-y: auto;
  padding: 4px 8px 8px;
}
.final-history[data-v-8180dc94] {
  max-height: 300px;
  margin-bottom: 20px;
}
.history-chip[data-v-8180dc94] {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
}
.timer[data-v-8180dc94] {
  position: fixed;
  bottom: 10px;
  right: 14px;
  font-size: 11px;
  color: #ccc;
  font-family: monospace;
}
.results[data-v-8180dc94] {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results-hero[data-v-8180dc94] {
  text-align: center;
  margin-bottom: 24px;
}
.results-emoji[data-v-8180dc94] {
  font-size: 64px;
  animation: heroEmojiIn-8180dc94 0.6s ease;
}
@keyframes heroEmojiIn-8180dc94 {
0% { transform: scale(0) rotate(-20deg); opacity: 0;
}
50% { transform: scale(1.3) rotate(10deg);
}
100% { transform: scale(1) rotate(0deg); opacity: 1;
}
}
.results-praise[data-v-8180dc94] {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #f39c12, #e74c3c, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 24px;
  animation: praiseIn-8180dc94 0.8s ease;
}
@keyframes praiseIn-8180dc94 {
0% { transform: translateY(20px); opacity: 0;
}
100% { transform: translateY(0); opacity: 1;
}
}
.stars-section[data-v-8180dc94] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.stars-row[data-v-8180dc94] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.star[data-v-8180dc94] {
  display: inline-block;
  font-size: 40px;
  opacity: 0;
  animation: starPop-8180dc94 0.5s ease forwards;
}
.star-bonus[data-v-8180dc94] {
  font-size: 32px;
}
@keyframes starPop-8180dc94 {
0% { transform: scale(0) rotate(-180deg); opacity: 0;
}
60% { transform: scale(1.3) rotate(10deg); opacity: 1;
}
80% { transform: scale(0.9) rotate(-5deg);
}
100% { transform: scale(1) rotate(0deg); opacity: 1;
}
}
.stars-legend[data-v-8180dc94] {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
}
.results-details[data-v-8180dc94] {
  width: 100%;
  max-width: 500px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 16px;
}
.results-stats[data-v-8180dc94] {
  text-align: center;
  margin-bottom: 16px;
}
.results-stats p[data-v-8180dc94] {
  font-size: 16px;
  color: #999;
  margin-bottom: 4px;
}
.results-stats strong[data-v-8180dc94] {
  color: #777;
}
.results-actions[data-v-8180dc94] {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.btn-home[data-v-8180dc94] {
  padding: 14px 32px;
  background: #f0f0f0;
  color: #555;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-home[data-v-8180dc94]:hover {
  background: #e0e0e0;
}

.stats-page[data-v-88348a95] {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
h2[data-v-88348a95] {
  color: #2c3e50;
  margin-bottom: 20px;
}
.empty[data-v-88348a95] {
  color: #bbb;
  font-size: 16px;
  margin: 40px 0;
}
.tabs[data-v-88348a95] {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.tab[data-v-88348a95] {
  padding: 8px 24px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: white;
  color: #888;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.tab[data-v-88348a95]:hover {
  border-color: #aaa;
  color: #555;
}
.tab.active[data-v-88348a95] {
  border-color: #42b883;
  background: #42b883;
  color: white;
}
.chart-box[data-v-88348a95] {
  height: 220px;
  margin-bottom: 24px;
}
.summary[data-v-88348a95] {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sum-card[data-v-88348a95] {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 80px;
}
.sum-val[data-v-88348a95] {
  font-size: 22px;
  font-weight: 900;
  color: #2c3e50;
}
.sum-label[data-v-88348a95] {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.session-list[data-v-88348a95] {
  text-align: left;
}
.session-row[data-v-88348a95] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.session-date[data-v-88348a95] {
  color: #888;
  min-width: 90px;
}
.session-result[data-v-88348a95] {
  min-width: 60px;
}
.ok[data-v-88348a95] {
  color: #4caf50;
  font-weight: 700;
}
.err[data-v-88348a95] {
  color: #f44336;
  font-weight: 700;
}
.session-time[data-v-88348a95] {
  color: #888;
  min-width: 40px;
}
.session-avg[data-v-88348a95] {
  color: #bbb;
  font-size: 12px;
}
.back[data-v-88348a95] {
  margin-top: 24px;
}
.back a[data-v-88348a95] {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}
.back a[data-v-88348a95]:hover {
  color: #888;
}
