/* Global styles */
body {
  font-family: "Segoe UI", Roboto, Inter, sans-serif;
  background: #0b0e14;
  color: #eaeff7;
  margin: 0;
  line-height: 1.6;
  font-size: 18px; /* bump base text size */
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin: 0.5em 0;
}

h1 {
  font-size: 2rem; /* large headline */
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0.5em 0;
  color: #cfd6e6;
}

/* Header styles */
.site-header {
  background: #121723;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-link {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 1.05rem;
  text-decoration: none;
  color: #cfd6e6;
  transition: color 0.2s;
}

.nav a:hover {
  color: #7dd3fc;
}

/* Nav CTA (Pocket FM) */
.cta-nav {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #7dd3fc, #a78bfa);
  color: #0b0e14 !important;
  font-weight: 600;
}
.nav a.cta-nav:hover {
  filter: brightness(1.1);
}

/* Main container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Cards (books, characters) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #121723;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.card img {
  max-width: 180px;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #fff;
}

.card p {
  font-size: 0.95rem;
}

.card a {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #7dd3fc, #a78bfa);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Big primary CTA button */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}
