* {
  box-sizing: border-box;
}

:root {
  --text: #f8f8fc;
  --muted: rgba(255,255,255,0.84);
  --accent: #ff4fa0;
  --accent-2: #ff7cbe;
  --shadow: 0 18px 50px rgba(0,0,0,0.35);
}

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255,79,160,0.16), transparent 26%),
    linear-gradient(180deg, #10121a 0%, #0b0c11 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
}

.page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.hero {
  position: relative;
  min-height: 640px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #141722;
}

.hero-image {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,8,12,0.76) 0%, rgba(7,8,12,0.15) 46%, rgba(7,8,12,0.12) 100%);
}

.hero-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.hero-content p {
  margin: 10px 0 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--muted);
  font-weight: 500;
}

.hero-socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-social {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.hero-social i {
  font-size: 1.2rem;
}

.hero-social.instagram {
  background: linear-gradient(135deg, rgba(131,58,180,0.75), rgba(253,29,29,0.72), rgba(252,176,69,0.72));
  color: #fff;
}

.hero-social.tiktok {
  background: rgba(10,10,10,0.68);
  color: #25F4EE;
  text-shadow: 1px 0 #FE2C55, -1px 0 rgba(255,255,255,0.08);
}

.hero-social.reddit {
  background: rgba(255,69,0,0.72);
  color: #fff;
}

.hero-social:hover,
.cta-button:hover,
.donate-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.cta-wrap {
  margin-top: 18px;
}

.cta-button {
  display: block;
  width: 100%;
  padding: 18px 22px;
  border-radius: 24px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 40px rgba(255,79,160,0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.donate {
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.donate h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.15rem;
}

.donate-grid {
  display: grid;
  gap: 12px;
}

.donate-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.donate-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
}

.donate-button > * {
  position: relative;
  z-index: 1;
}

.donate-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.stjude-logo {
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.donate-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.donate-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.donate-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.aspca::before {
  background:
    linear-gradient(135deg, rgba(243,111,33,0.32), rgba(245,152,67,0.26)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 30%);
}

.stjude::before {
  background:
    linear-gradient(135deg, rgba(122,39,117,0.30), rgba(188,84,165,0.24)),
    radial-gradient(circle at 18% 25%, rgba(255,255,255,0.08), transparent 28%);
}

.savethechildren::before {
  background:
    linear-gradient(135deg, rgba(216,37,53,0.30), rgba(255,111,111,0.22)),
    radial-gradient(circle at 85% 24%, rgba(255,255,255,0.08), transparent 28%);
}

@media (max-width: 640px) {
  .page {
    padding: 12px 12px 28px;
  }

  .hero {
    min-height: 540px;
    border-radius: 24px;
  }

  .hero-image {
    height: 540px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  .hero-social {
    width: 44px;
    height: 44px;
  }

  .donate-button {
    gap: 12px;
    padding: 14px;
  }

  .donate-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
