body {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(153, 27, 27, 0.15), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(127, 29, 29, 0.15), transparent 30%),
    linear-gradient(135deg, #fff8f5, #fdecec);

  color: #3f1d1d;
}

a {
  color: #8b1e3f;
  font-weight: bold;
}

.back-link {
  display: inline-block;
  margin: 18px;
  padding: 10px 14px;
  border: 3px solid #7f1d1d;
  border-radius: 16px;
  background: white;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(127, 29, 29, 0.18);
  transition: 0.2s;
}

.back-link:hover {
  transform: translateY(-3px);
}

.person-page {
  max-width: 950px;
  margin: 20px auto 50px;
  padding: 24px;
}

.person-hero {
  border: 4px solid #7f1d1d;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  padding: 34px;
  box-shadow: 10px 10px 0 rgba(127, 29, 29, 0.15);
}

.profile-pic {
  width: 185px;
  height: 185px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #7f1d1d;
  box-shadow: 8px 8px 0 rgba(127, 29, 29, 0.18);
  display: block;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin: 0 0 12px;
  color: #7f1d1d;
}

h2 {
  color: #8b1e3f;
}

.intro {
  background: #fff1f2;
  border: 3px dashed #b91c1c;
  border-radius: 20px;
  padding: 16px;
  font-size: 1.1rem;
}

.customize-box {
  margin-top: 24px;
  padding: 22px;
  background: #fce7e7;
  border: 3px dashed #b91c1c;
  border-radius: 24px;
}

.cool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cool-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  margin: 12px 0;
  background: white;
  border-radius: 16px;
  border: 2px solid #f3c4c4;
}

.cool-list li::before {
  content: "🌹";
  position: absolute;
  left: 12px;
  top: 10px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.mini-card {
  background: #fffafa;
  border: 3px solid #b91c1c;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 6px 6px 0 rgba(185, 28, 28, 0.12);
  transition: 0.2s;
}

.mini-card:hover {
  transform: translateY(-5px) rotate(-1deg);
}

.mini-card h3 {
  color: #8b1e3f;
  margin-top: 0;
}

@media (max-width: 750px) {
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .profile-pic {
    width: 150px;
    height: 150px;
  }
}