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

body {
  font-family: "Quicksand", sans-serif;
  background:
    radial-gradient(circle at top left, #d1e4c3 0%, transparent 40%),
    radial-gradient(circle at bottom right, #e6b86e 0%, transparent 45%),
    #0a4d32;
  color: #1e1b16;
  overflow-x: hidden;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
  background: #a32d2d;
  color: #f6f2e9;
  transform: rotate(-1.5deg);
  margin: 2rem;
  border: 4px solid #0a4d32;
  box-shadow: 12px 12px 0 #e6b86e;
}

.hero h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.hero p {
  margin-top: 0.5rem;
  font-style: italic;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* QUEST CARDS */
.quest-card {
  background: #d1e4c3;
  border: 3px dashed #0a4d32;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: -8px 10px 0 #a32d2d;
  transform: rotate(1deg);
}

.quest-card:nth-child(2) {
  transform: rotate(-2deg);
}

.quest-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #0a4d32;
  margin-bottom: 0.75rem;
}

.quest-card h2 {
  color: #0a4d32;
  margin-bottom: 0.4rem;
}

.quest-card p {
  font-size: 0.95rem;
}

/* EXTRA MESS */
.messy-offset {
  margin-top: 2rem;
}

/* FOOTER */
footer {
  text-align: center;
  margin: 4rem 1rem 2rem;
  padding: 1rem;
  background: #e6b86e;
  color: #0a4d32;
  transform: rotate(1deg);
  border: 3px solid #a32d2d;
}

/* DECORATIONS */
.decor {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.decor-explosion {
  top: 8%;
  left: 3%;
  width: 140px;
  transform: rotate(-20deg);
}

.decor-explosion-2 {
  bottom: 10%;
  left: 20%;
  width: 110px;
  transform: rotate(15deg);
}

.decor-cat {
  top: 40%;
  right: 5%;
  width: 180px;
  transform: rotate(6deg);
}

.decor-dino {
  top: 65%;
  left: 70%;
  width: 120px;
  transform: rotate(-10deg);
}

.decor-dino-2 {
  top: 20%;
  right: 25%;
  width: 90px;
  transform: rotate(18deg);
}

/* KEEP CONTENT ABOVE DECOR */
.hero,
.container,
footer {
  position: relative;
  z-index: 1;
}

 
