.novel-screen {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  z-index: 1000;
  touch-action: none;
}

.novel-carousel {
  position: relative;
  width: 100%;
  height: 360px;
}

.novel-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 270px;
  margin-top: -135px;
  margin-left: -90px;
  background: rgba(0, 170, 255, 0.2);
  border: 2px solid var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-family: 'Merriweather', serif;
  user-select: none;
  transition: transform 0.6s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
}

.novel-cover.disabled {
  opacity: 0.4;
}

.novel-cover.selected {
  z-index: 1;
}

.novel-popup {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-color);
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 1.5em;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
