body {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;

  background:
    radial-gradient(circle at 10% 15%, rgba(239, 68, 68, 0.25), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(248, 113, 113, 0.25), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(254, 202, 202, 0.6), transparent 40%),
    linear-gradient(135deg, #fff5f5, #ffe4e6);

  color: #3f1d1d;
}

a {
  color: #dc2626;
  font-weight: bold;
}

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

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

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

.person-hero {
  border: 4px solid #dc2626;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  padding: 34px;
  box-shadow: 10px 10px 0 rgba(220, 38, 38, 0.12);
}

.profile-pic {
  width: 185px;
  height: 185px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #dc2626;
  box-shadow: 8px 8px 0 rgba(220, 38, 38, 0.15);
  display: block;
  margin-bottom: 18px;
}

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

h2 {
  color: #b91c1c;
}

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

.customize-box {
  margin-top: 24px;
  padding: 22px;
  background: #fee2e2;
  border: 3px dashed #dc2626;
  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 #fca5a5;
}

.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 #dc2626;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 6px 6px 0 rgba(220, 38, 38, 0.12);
  transition: 0.2s;
}

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

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

.mini-card p {
  margin: 8px 0;
}

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

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