.old-paper {
  background: #fdf6e3; /* base parchment color */
  background: radial-gradient(circle at 20% 20%, #fffbe6, #f4e1a1 80%, #d8c281);
  border: 1px solid #d2b48c;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(139, 69, 19, 0.15);
  border-radius: 6px;
  padding: 10px;
  margin: 2rem auto;
  font-family: "Georgia", "Times New Roman", serif;
  color: #3b2f2f;
  line-height: 1.6;
  position: relative;
}

.old-paper {
  border: none;
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.25),
    0 0 40px rgba(0,0,0,0.3);
}


/* Optional torn/rough edges */
.old-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
}

/* Optional: subtle crinkle texture */
.old-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  opacity: 0.2;
  pointer-events: none;
}
