body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: url("images/stars-bg.jpg") repeat;
  background-color: #000000;
  background-attachment: fixed;
  line-height: 1.6;
}

main {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

h1, h2 {
  color: #f8f8f8;
}

a {
  color: #90caf9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  background-color: #111;
  padding: 1rem;
  text-align: center;
}

nav a {
  margin: 0 1rem;
  color: #ffffff;
  font-weight: bold;
}

nav a:hover {
  color: #ffcc00;
}

section {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #444;
}
.book-cover {
  float: left;
  margin-right: 15px;
  max-width: 150px;
  max-height: 225px; /* NEW: prevents overly tall images */
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.button {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 12px;
  background-color: #ff9900;
  color: black;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.button:hover {
  background-color: #cc7a00;
  color: white;
}

footer {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  color: #888;
  background-color: #111;
  font-size: 0.9rem;
}
.book-preview::after {
  content: "";
  display: table;
  clear: both;
}
/* --- Blog Page Enhancements --- */

.blog-intro {
  font-style: italic;
  color: #ccc;
  margin-bottom: 2rem;
}

.blog-list a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #90caf9;
}

.blog-list a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* Optional divider style for blog list */
.blog-divider {
  border-bottom: 1px solid #444;
  margin: 1rem 0;
}
.caption-typing {
  font-size: 1.1em;
  font-style: italic;
  text-align: center;
  margin-top: 1em;
  color: #fffacd;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-wrap;
}
