@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

/* Base styles matching the main website */
body {
  background-color: #0e2a3c;
  color: #fff;
  font-family: 'Forum', sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Story container */
.story-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 50px;
  background: linear-gradient(135deg, #1a3a52 0%, #0e2a3c 100%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  line-height: 1.8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Headers */
h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 0.3em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: normal;
  letter-spacing: 2px;
}

h2 {
  margin-top: 2.5em;
  font-size: 2em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
}

/* Paragraphs */
p {
  margin: 1.4em 0;
  font-size: 1.1em;
  text-align: justify;
}

/* Opening/subtitle text */
.opening {
  font-style: italic;
  text-align: center;
  margin-bottom: 2.5em;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2em;
}

/* Section dividers */
.divider {
  text-align: center;
  margin: 3em 0;
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 8px;
}

/* Emphasis styles */
strong {
  color: #fff;
  font-weight: bold;
}

em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

/* End note */
.end-note {
  text-align: center;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4em;
  padding-top: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
  .story-container {
    margin: 30px 20px;
    padding: 30px 20px;
  }
  
  h1 {
    font-size: 2.2em;
  }
  
  h2 {
    font-size: 1.6em;
  }
  
  p {
    font-size: 1em;
    text-align: left;
  }
}
