/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
  color: #f2f2f2;
  font-family: 'Georgia', serif;
  font-size: 18px;
  line-height: 1.8;
  padding: 30px 15px;
}

/* Container styling */
.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 192, 203, 0.1);
  backdrop-filter: blur(5px);
  animation: fadeInContainer 1.5s ease-in-out;
}

/* Headings */
h1 {
  font-size: 36px;
  text-align: center;
  color: #ffccd5;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
}

h2 {
  font-size: 20px;
  text-align: center;
  color: #ffe6eb;
  font-style: italic;
  margin-bottom: 30px;
}

/* Story paragraph styles */
.story p {
  margin-bottom: 25px;
  animation: fadeInText 1.2s ease-in-out;
}

.story strong {
  color: #ffc0cb;
}

.story em {
  color: #ffe6eb;
  font-style: italic;
}

/* Animations */
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInContainer {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scrollbar styling (optional) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #ffb6c1;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}
