/* ===== RESET ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
}

/* ===== FUNDO ===== */
body {
  background: linear-gradient(135deg, #ff6ec4, #7873f5, #42e695);
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.25);
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== TÍTULOS ===== */
h1, h2 {
  margin: 0;
}

/* ===== HERO (página inicial) ===== */
.hero {
  text-align: center;
  margin-top: 100px;
}

/* ===== CARDS ===== */
.card {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  margin: 20px auto;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
}

/* ===== IMAGENS ===== */
.card img {
  width: 100%;
  border-radius: 10px;
}
.story-list {
  margin: 30px auto;
  max-width: 800px;
}

.story-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.15);
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-card img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 8px;
}

.story-info h2 {
  margin-bottom: 8px;
}

.story-info ul {
  list-style: none;
  padding-left: 0;
}

.story-info li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  transition: 0.2s;
}

.story-info li a:hover {
  opacity: 0.7;
}

/* Cards de capítulos */
.card {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  margin: 20px auto;
  border-radius: 15px;
  max-width: 800px;
  backdrop-filter: blur(12px);
}

