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

body {
  background: #FFF3E0;
  font-family: 'Georgia', serif;
  color: #5D4037;
  min-height: 100vh;
}

header {
  background: #FF8A65;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(230, 74, 25, 0.2);
}

header h1 {
  font-size: 3rem;
  color: white;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

header p.tagline {
  color: #FFF3E0;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0.4rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  gap: 1rem;
}

.hero img {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 8px 16px rgba(255, 138, 101, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero .intro {
  max-width: 480px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

h2 {
  font-size: 1.6rem;
  color: #E64A19;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid #FFCCBC;
  padding-bottom: 0.3rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.fact-card {
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 138, 101, 0.2);
  border: 2px solid #FFCCBC;
}

.fact-card .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.fact-card strong {
  display: block;
  color: #E64A19;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.fact-card span {
  font-size: 1rem;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: #8D6E63;
}

.gallery-item img {
  border-radius: 50%;
  border: 4px solid #FF8A65;
  width: 140px;
  height: 140px;
}

.gallery-item img.tinted {
  filter: hue-rotate(40deg) saturate(1.3);
}

.gallery-item img.happy {
  filter: brightness(1.1) drop-shadow(0 0 8px #FF8A65);
}

.fan-message {
  background: white;
  border-left: 5px solid #FF8A65;
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
  font-size: 0.97rem;
  line-height: 1.6;
}

.fan-message cite {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #E64A19;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #FF8A65;
  color: #FFF3E0;
  font-size: 0.9rem;
}
