/* BASE STYLES */
body {
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', serif;
  color: #f2f2f2;
  overflow-x: hidden;
  position: relative;
}

/* LAVA-LAMP BACKGROUND */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, #ff4c6a 15%, transparent 20%),
              radial-gradient(circle at 80% 50%, #32d6ff 20%, transparent 25%),
              radial-gradient(circle at 50% 80%, #ff9f1c 25%, transparent 30%);
  background-size: 100% 100%;
  filter: blur(100px);
  animation: lava 30s infinite alternate ease-in-out;
  z-index: -2;
}

/* CRT GRAIN OVERLAY */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.imgur.com/3yX5RZO.png'); /* subtle noise */
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

/* LAVA ANIMATION */
@keyframes lava {
  0% { transform: translate(0,0) scale(1.05); }
  25% { transform: translate(-10%, 5%) scale(1.08); }
  50% { transform: translate(10%, -5%) scale(1.03); }
  75% { transform: translate(-5%, 10%) scale(1.06); }
  100% { transform: translate(0,0) scale(1.05); }
}

/* HEADER */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  position: relative;
}
header h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 4rem;
  color: #ff4c6a;
  background: linear-gradient(90deg, #ff4c6a, #32d6ff, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(255,76,106,0.6), 0 0 12px rgba(50,214,255,0.4);
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
nav a {
  color: #32d6ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}
nav a:hover {
  color: #ff9f1c;
  text-shadow: 0 0 4px #ff9f1c;
}

/* POST CARDS */
.post-card {
  position: relative;
  background: linear-gradient(135deg, rgba(30,30,45,0.85), rgba(60,30,70,0.85));
  margin: 2rem auto;
  padding: 2rem;
  max-width: 700px;
  border-left: 6px solid #ff9f1c;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
}

/* POST TEXT */
.post-card h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #ff9f1c;
  margin-top: 0;
  text-shadow: 0 0 4px rgba(255,159,28,0.6);
}
.post-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #f2f2f2;
}

/* POST STACKING EFFECT */
.post-card:nth-child(n) {
  margin-top: -40px; /* overlapping effect */
}

/* LINKS INSIDE POSTS */
.post-card a {
  color: #32d6ff;
  text-decoration: underline;
  transition: color 0.3s;
}
.post-card a:hover {
  color: #ff4c6a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header h1 {
    font-size: 3rem;
  }
  .post-card {
    margin: 1.5rem auto;
  }
}