* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  background: #f5f5f0;
  color: #333;
}

.wrapper {
  position: relative;
  display: inline-block;
}

.wrapper img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: 16px;
  display: block;
}

.english-words-panel {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 460px;
  width: 100%;
  color: #333;
}

.word-text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.meaning-text {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.example-text {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-btn {
  background: rgba(0, 0, 0, 0.08);
  border: none;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.counter {
  font-size: 0.8rem;
  opacity: 0.7;
}
