@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  min-height: 100vh;

  background:
  radial-gradient(circle at top, #253b74 0%, #0b1124 40%, #000000 100%);

  color: #d7eeff;
  font-family: Verdana, sans-serif;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-family: Orbitron, sans-serif;
  font-size: 4rem;
  color: #7adfff;
  text-shadow:
    0 0 10px #00d5ff,
    0 0 20px #00d5ff;
}

.subtitle {
  color: #a9c8ff;
  letter-spacing: 2px;
}

h2 {
  font-family: Orbitron, sans-serif;
  color: #7adfff;
  margin-top: 50px;
}

.terminal {
  background: rgba(0, 10, 25, 0.75);
  border: 1px solid #2c5f96;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.2);
}

.story-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.story-card {
  display: block;
  text-decoration: none;
  color: white;

  background: rgba(5, 20, 40, 0.8);

  border: 1px solid #356ea3;
  border-radius: 12px;

  padding: 20px;

  transition: 0.3s;
}

.story-card:hover {
  transform: translateY(-4px);

  border-color: #7adfff;

  box-shadow:
    0 0 10px #00d5ff,
    0 0 25px rgba(0, 213, 255, 0.4);
}

.story-card h3 {
  margin-top: 0;
  color: #7adfff;
  font-family: Orbitron, sans-serif;
}

footer {
  text-align: center;
  margin-top: 60px;
  color: #7896b8;
}

.stars {
  position: fixed;
  width: 100%;
  height: 100%;

  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(#7adfff 1px, transparent 1px);

  background-size: 100px 100px, 180px 180px;
  background-position: 0 0, 50px 80px;

  opacity: 0.5;
  z-index: -1;
}