body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  background: radial-gradient(circle at top, #0f0f1a 0%, #07070d 40%, #030305 100%);
  color: #e6e6e6;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* === MAIN CONTAINER === */
.container {
  max-width: 1400px; /* increased */
  margin: auto;
  padding: 2rem 2rem;
}

/* === TYPOGRAPHY === */
h1, h2 {
  font-family: 'Cinzel', serif;
  color: #f5f5f5;
  font-weight: 400;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.subtitle {
  text-align: center;
  font-weight: normal;
  color: #cfcfcf;
  margin-bottom: 2.5rem;
}

h2 {
  margin-top: 3rem;
}

p {
  font-size: 18px;
  line-height: 1.9;
}

a {
  color: #d4af37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === NAV === */
nav {
  text-align: center;
  margin-bottom: 2.5rem;
}

nav a {
  margin: 0 12px;
  font-size: 1rem;
}

/* === LAYOUT WITH SIDEBAR === */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 80px; /* more breathing space */
}

/* === MAIN CONTENT === */
.content {
  max-width: 1000px; /* readable width */
  margin: 0 auto;
}

/* === SIDEBAR === */
.sidebar {
  font-size: 0.95rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 25px;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.sidebar a {
  display: block;
  margin: 0.5rem 0;
  color: #c9a94d;
}

/* === IMAGE === */
.cosmo-image {
  margin: 2.5rem 0;
  text-align: center;
}

.cosmo-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  opacity: 0.95;
}

.wide-image {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* === BLOCKQUOTE === */
blockquote {
  border-left: 3px solid #d4af37;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #ccc;
  font-style: italic;
}

/* === FOOTER === */
footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #888;
}

/* === MOBILE === */
@media (max-width: 1000px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-left: none;
    padding-left: 0;
    margin-top: 2rem;
  }

  .content {
    max-width: 100%;
  }
}