/* Grundstil */
body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #0a0a0a; /* fast schwarz */
  color: #f2f2f2; /* helles Grau */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container für Landingpage */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Titel */
h1 {
  font-size: 3rem;
  margin: 0;
  color: #e50914; /* tiefes Rot */
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Untertitel */
.subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #b3b3b3;
  font-style: italic;
}

/* Buttons / Links */
.button,
a.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  color: #fff;
  background: #e50914;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.button:hover,
a.button:hover {
  background: #b0060f;
}

/* Intro-Text auf Home */
.intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Story-Liste */
.stories {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.story-list {
  list-style: none;
  padding: 0;
}
.story-list li {
  margin: 0.5rem 0;
}
.story-list a {
  color: #e50914;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.story-list a:hover {
  color: #ff3333;
}

/* Story-Seiten */
.story-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Footer */
.footer,
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #222;
  margin-top: auto;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .button,
  a.button {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}
