body {
    background: linear-gradient(to right, #fff6e6, #ffe3e3);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .story-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .story-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff5f5f;
    text-shadow: 1px 1px 0 #fff;
  }
  
  .story-panel {
    background: #ffffffcc;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .story-panel:hover {
    transform: scale(1.02);
  }
  
  .story-image {
    max-width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
  
  .story-ending {
    font-size: 1.3rem;
    text-align: center;
    padding: 1rem;
    background: #fffbe0;
    border-radius: 1rem;
    color: #444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
  }