.scroll {
  background: #f5e6c4; /* parchment base */
  border: 6px solid #8b5e3c;
  border-radius: 12px;
  padding: 30px 40px;
  width: 400px;
  margin: 40px auto;
  text-align: center;
  font-family: "Cinzel Decorative", "Papyrus", fantasy;
  color: #3b2b14;
  box-shadow: inset 0 0 15px #d2b48c, 0 6px 18px rgba(0,0,0,0.5);
  position: relative;
}

/* Scroll roll edges */
.scroll::before,
.scroll::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 24px;
  background: #d2b48c;
  border: 3px solid #8b5e3c;
  border-radius: 50%;
}

.scroll::before {
  left: -20px; /* left roll */
}

.scroll::after {
  right: -20px; /* right roll */
}

/* Links inside scroll */
.scroll nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.scroll nav a {
  color: #3b2b14;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.scroll nav a:hover {
  color: #6a1b9a; /* royal purple hover */
  transform: scale(1.1);
}
