body {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(147, 197, 253, 0.55), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(191, 219, 254, 0.8), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(219, 234, 254, 0.9), transparent 35%),
    linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1e293b;
}

a {
  color: #1d4ed8;
  font-weight: bold;
}

.back-link {
  display: inline-block;
  margin: 18px;
  padding: 10px 14px;
  border: 3px solid #1e3a8a;
  border-radius: 16px;
  background: white;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(30, 58, 138, 0.2);
  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 #1e3a8a;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 0 rgba(30, 58, 138, 0.18);
  padding: 34px;
}

.profile-pic {
  width: 185px;
  height: 185px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #1e3a8a;
  box-shadow: 8px 8px 0 rgba(30, 58, 138, 0.2);
  display: block;
  margin-bottom: 18px;
  background: #dbeafe;
}

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

h2 {
  margin-top: 0;
  color: #1e40af;
}

.intro {
  font-size: 1.15rem;
  background: #eff6ff;
  border: 3px dashed #60a5fa;
  border-radius: 20px;
  padding: 16px;
}

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

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

.cool-list li {
  position: relative;
  margin: 13px 0;
  padding: 12px 14px 12px 44px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #93c5fd;
  border-radius: 16px;
  box-shadow: 4px 4px 0 rgba(37, 99, 235, 0.12);
}

.cool-list li::before {
  content: "✦";
  position: absolute;
  left: 16px;
  top: 10px;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: bold;
}

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

.mini-card {
  border: 3px solid #2563eb;
  border-radius: 24px;
  background: #f8fbff;
  padding: 20px;
  box-shadow: 6px 6px 0 rgba(37, 99, 235, 0.14);
  transition: 0.2s;
}

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

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

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

@media (max-width: 750px) {
  .person-hero {
    padding: 24px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

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