* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #1a1a2e;
  color: #e0e0e0;
  min-height: 100vh;
  line-height: 1.7;
  position: relative;
}

header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(168, 216, 234, 0.15);
  position: relative;
  z-index: 1;
}

.site-title {
  color: #a8d8ea;
  text-decoration: none;
  font-size: 1.2rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* Full-page word cloud background */
.wordcloud-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(255,195,120,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 80%, rgba(210,140,190,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,240,225,0.35) 0%, transparent 70%),
    linear-gradient(145deg, #fef9f2 0%, #fdf3ee 35%, #fdf0f8 65%, #f4f8fd 100%);
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 9rem;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-content {
  position: relative;
}
.hero h1 {
  font-size: 2.5rem;
  color: #a8d8ea;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.tagline {
  font-size: 1.8rem;
  color: #aa96da;
  font-style: italic;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  padding-top: 12vh;
}

/* Posts */
.posts h2 {
  color: #fcbad3;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.post-preview {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.post-preview h3 a {
  color: #a8d8ea;
  text-decoration: none;
}
.post-preview h3 a:hover {
  color: #fcbad3;
}
.post-preview time {
  color: #aa96da;
  font-size: 0.85rem;
}
.post-preview p {
  color: #b8b8d0;
  margin-top: 0.5rem;
}

/* Single post */
.post h1 {
  color: #a8d8ea;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.post time {
  color: #aa96da;
  font-size: 0.9rem;
}
.post .content {
  margin-top: 2rem;
  color: #d0d0e0;
}
.post .content p {
  margin-bottom: 1.2rem;
}
.post .content a {
  color: #fcbad3;
}

.back {
  display: inline-block;
  margin-top: 2rem;
  color: #aa96da;
  text-decoration: none;
}
.back:hover {
  color: #fcbad3;
}
