body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #a1c4fd, #c2e9fb);
  color: #333;
  margin: 0; 
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 30px;
  color: #004e92;
  text-shadow: 1px 1px 3px #a0c4ff;
}

#story {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffffcc;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.scene {
  margin-bottom: 20px;
}

.scene h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #0077cc;
  transition: color 0.5s ease;
}

.scene img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.scene p {
  font-size: 1.2em;
  line-height: 1.5;
  cursor: pointer;
}

#next {
  background: #0077cc;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,119,204,0.5);
  transition: background 0.3s ease;
}

#next:hover {
  background: #005fa3;
}