.story-box {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(180deg, #fffaf0, #eef3ff);
  border-radius: 20px;
  border: 3px dashed #b8d1ff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  font-family: Georgia, serif;
}

.story-box h2 {
  margin-bottom: 15px;
  color: #4a5cff;
}

#storyText {
  white-space: pre-line;
  line-height: 1.7;
  font-size: 1.05rem;
}

.hidden {
  display: none;
}

.style-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.style-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border 0.2s;
  position: relative;
}

.style-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.style-card span {
  display: block;
  text-align: center;
  padding: 6px;
  font-size: 13px;
  background: rgba(0,0,0,0.5);
  color: #fff;
}

.style-card.selected {
  border-color: #ffe066;
}

.style-card:hover {
  border-color: rgba(255,220,80,0.5);
}

@media (max-width: 640px) {
  .style-picker {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .style-card img {
    height: 100px;
  }
}
