/**
 * Fun Home — Playful landing page for Music, Nature, Family, Glazed
 * Zen mode (light) and Dark mode with smooth transitions
 */

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

:root {
  /* Zen creative home */
  --fun-bg-base: #e8eef3;
  --fun-text: #152028;
  --fun-text-soft: #4a5d6a;
  --fun-surface: rgba(255, 255, 255, 0.92);
  --fun-border: rgba(74, 144, 164, 0.18);
  --fun-accent: #4a90a4;
  --fun-accent-hover: #3d7a8a;
  --fun-ink: #1a2a33;
  --fun-shadow: 0 10px 40px rgba(21, 32, 40, 0.08);
  --fun-shadow-hover: 0 20px 60px rgba(21, 32, 40, 0.12);
  --fun-font-display: "Fraunces", "Palatino Linotype", Georgia, serif;
  --fun-font-body: "Outfit", "Segoe UI", sans-serif;

  /* Project accents — also drive hero rainbow */
  --fun-music: #8b5cf6;
  --fun-nature: #10b981;
  --fun-family: #f59e0b;
  --fun-glazed: #ec4899;
  --fun-heygen: #06b6d4;

  --fun-sparkle: #c9a227;
}

body.fun-home {
  font-family: var(--fun-font-body);
  /* Transparent so animated ::before gradient is the visible atmosphere */
  background: transparent;
  color: var(--fun-text);
  line-height: 1.6;
  transition: color 0.3s ease, background 0.35s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Animated atmosphere gradient — project palette drift */
body.fun-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 18% 22%, rgba(74, 144, 164, 0.42), transparent 58%),
    radial-gradient(ellipse 50% 40% at 82% 18%, rgba(245, 199, 106, 0.32), transparent 55%),
    radial-gradient(ellipse 45% 50% at 70% 78%, rgba(236, 72, 153, 0.2), transparent 58%),
    radial-gradient(ellipse 40% 45% at 22% 82%, rgba(16, 185, 129, 0.22), transparent 55%),
    radial-gradient(ellipse 35% 35% at 50% 48%, rgba(6, 182, 212, 0.16), transparent 60%),
    linear-gradient(145deg, #f4f7fa 0%, #e8eef3 42%, #eef2f6 100%);
  background-size: 180% 180%;
  background-position: 0% 40%;
  animation: funBgDrift 16s ease-in-out infinite;
}

body.fun-home[data-theme="dark"]::before {
  background:
    radial-gradient(ellipse 55% 45% at 18% 22%, rgba(74, 144, 164, 0.38), transparent 58%),
    radial-gradient(ellipse 50% 40% at 82% 18%, rgba(245, 199, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 50% at 70% 78%, rgba(236, 72, 153, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 45% at 22% 82%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(ellipse 35% 35% at 50% 48%, rgba(6, 182, 212, 0.14), transparent 60%),
    linear-gradient(145deg, #0b1218 0%, #152028 48%, #0f1720 100%);
  background-size: 180% 180%;
  animation: funBgDrift 18s ease-in-out infinite;
}

@keyframes funBgDrift {
  0%, 100% {
    background-position:
      12% 18%,
      88% 12%,
      72% 82%,
      18% 86%,
      48% 46%,
      0% 0%;
  }
  33% {
    background-position:
      28% 42%,
      68% 28%,
      58% 62%,
      36% 68%,
      62% 54%,
      0% 0%;
  }
  66% {
    background-position:
      8% 58%,
      92% 48%,
      82% 38%,
      12% 32%,
      42% 72%,
      0% 0%;
  }
}

.fun-main,
.fun-footer {
  position: relative;
  z-index: 1;
}

/* Dark mode */
body.fun-home[data-theme="dark"] {
  --fun-bg-base: #0b1218;
  --fun-text: #eef4f7;
  --fun-text-soft: #a8b8c4;
  --fun-surface: rgba(21, 32, 40, 0.92);
  --fun-border: rgba(148, 163, 184, 0.22);
  --fun-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --fun-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.55);
  --fun-sparkle: #e8c96a;
}

/* Header */
.fun-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  background: var(--fun-surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fun-border);
  z-index: 100;
  transition: background 0.3s ease;
}

.fun-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fun-text);
  font-family: var(--fun-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

.fun-logo:hover {
  transform: scale(1.05);
}

/* Shared animated rainbow for name + titles */
.fun-rainbow-text,
.fun-logo__text,
.fun-hero__title,
.fun-card__title,
.fun-about__title {
  background: linear-gradient(
    125deg,
    var(--fun-music) 0%,
    var(--fun-nature) 22%,
    var(--fun-heygen) 44%,
    var(--fun-family) 66%,
    var(--fun-glazed) 88%,
    var(--fun-music) 100%
  );
  background-size: 240% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: funRainbowShift 9s ease infinite;
}

.fun-logo__text {
  font-family: var(--fun-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 10px rgba(139, 92, 246, 0.2));
}

.fun-logo__sparkle {
  font-size: 1.5rem;
  animation: sparkleRotate 3s ease-in-out infinite, funSparkleHue 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.45));
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.fun-theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fun-accent);
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
}

.fun-theme-toggle:hover {
  background: var(--fun-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

.fun-theme-toggle i {
  font-size: 1rem;
}

.fun-secret-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 144, 164, 0.1);
  color: var(--fun-accent);
  text-decoration: none;
  padding: 0.625rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid var(--fun-border);
  animation: fadeInSlide 0.5s ease;
}

.fun-secret-link:hover {
  background: rgba(74, 144, 164, 0.2);
  border-color: var(--fun-accent);
  transform: translateY(-2px);
}

.fun-secret-link i {
  font-size: 1rem;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fun-logo__sparkle.clicking {
  animation: sparkleClick 0.3s ease;
}

@keyframes sparkleClick {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(180deg); }
}

/* Hero — Explore · Discover · Create */
.fun-hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.5rem 4.5rem;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fun-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

body[data-theme="dark"] .fun-hero__canvas {
  opacity: 0.45;
}

.fun-hero__shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(ellipse 70% 55% at 70% 40%, rgba(74, 144, 164, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(21, 32, 40, 0.04) 100%);
}

body[data-theme="dark"] .fun-hero__shader {
  background:
    radial-gradient(ellipse 70% 55% at 70% 40%, rgba(74, 144, 164, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(232, 201, 106, 0.06), transparent 55%),
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.35) 100%);
}

.fun-hero__content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
}

.fun-hero__kicker {
  font-family: var(--fun-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fun-accent);
  margin: 0 0 1rem;
  animation: fadeInUp 0.7s ease-out both;
}

.fun-hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.sparkle {
  position: absolute;
  color: var(--fun-sparkle);
  font-size: 1.25rem;
  opacity: 0;
  animation: sparkleFloat 7s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.55; transform: translateY(-14px) scale(1.08); }
}

.fun-hero__title {
  font-family: var(--fun-font-display);
  font-size: clamp(3.25rem, 11vw, 6.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.35rem;
  filter: drop-shadow(0 8px 28px rgba(21, 32, 40, 0.18));
}

body[data-theme="dark"] .fun-hero__title {
  filter: drop-shadow(0 10px 36px rgba(0, 0, 0, 0.45));
}

@keyframes funRainbowShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes funSparkleHue {
  0% { filter: hue-rotate(0deg) drop-shadow(0 0 6px rgba(236, 72, 153, 0.45)); }
  50% { filter: hue-rotate(180deg) drop-shadow(0 0 8px rgba(16, 185, 129, 0.5)); }
  100% { filter: hue-rotate(360deg) drop-shadow(0 0 6px rgba(139, 92, 246, 0.45)); }
}

.fun-hero__title-line {
  display: block;
  animation: fadeInUp 0.85s ease-out backwards;
}

.fun-hero__title-line:nth-child(1) { animation-delay: 0.12s; }
.fun-hero__title-line:nth-child(2) { animation-delay: 0.28s; }
.fun-hero__title-line:nth-child(3) { animation-delay: 0.44s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fun-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 450;
  color: var(--fun-text-soft);
  max-width: 34ch;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
  animation: fadeInUp 0.8s ease-out 0.55s backwards;
}

.fun-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.fun-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--fun-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.fun-btn--primary {
  background: var(--fun-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(74, 144, 164, 0.35);
}

.fun-btn--primary:hover {
  background: var(--fun-accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

.fun-btn--ghost {
  background: transparent;
  color: var(--fun-text);
  border: 1px solid var(--fun-border);
}

.fun-btn--ghost:hover {
  border-color: var(--fun-accent);
  color: var(--fun-accent);
  transform: translateY(-2px);
}

.fun-hero__scroll {
  display: none;
}

/* Projects Grid */
.fun-projects {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  perspective: 1500px;
}

.fun-card {
  position: relative;
  background: var(--fun-surface);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--fun-border);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
  transform-style: preserve-3d;
  backdrop-filter: blur(20px);
}

body[data-theme="dark"] .fun-card {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.fun-card:nth-child(1) { animation-delay: 0.1s; }
.fun-card:nth-child(2) { animation-delay: 0.2s; }
.fun-card:nth-child(3) { animation-delay: 0.3s; }
.fun-card:nth-child(4) { animation-delay: 0.4s; }
.fun-card:nth-child(5) { animation-delay: 0.5s; }

.fun-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (hover: hover) and (pointer: fine) {
  .fun-card:hover {
    transform: translateY(-14px) translateZ(12px);
  }
}

body[data-theme="dark"] .fun-card:hover {
  box-shadow: 
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .fun-card:hover {
    transform: translateY(-8px);
  }
}

.fun-card__glow {
  position: absolute;
  inset: -2px;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.fun-card--music:hover .fun-card__glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

.fun-card--nature:hover .fun-card__glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

.fun-card--family:hover .fun-card__glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

.fun-card--glazed:hover .fun-card__glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

.fun-card--heygen:hover .fun-card__glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.1) 40%, transparent 70%);
  filter: blur(20px);
}

.fun-card__icon {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.fun-card:hover .fun-card__icon {
  transform: scale(1.15) rotate(5deg) translateZ(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .fun-card:hover .fun-card__icon {
    transform: scale(1.05);
  }
}

.fun-card--music .fun-card__icon {
  background: rgba(139, 92, 246, 0.1);
  color: var(--fun-music);
}

.fun-card--nature .fun-card__icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--fun-nature);
}

.fun-card--family .fun-card__icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--fun-family);
}

.fun-card--glazed .fun-card__icon {
  background: rgba(236, 72, 153, 0.1);
}

.fun-card--heygen .fun-card__icon {
  background: rgba(6, 182, 212, 0.1);
  color: var(--fun-heygen);
}

.fun-card--glazed .fun-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.fun-card__title {
  font-family: var(--fun-font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.fun-card__desc {
  color: var(--fun-text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.fun-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fun-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.125rem;
  background: rgba(74, 144, 164, 0.06);
  border-radius: 0.625rem;
  color: var(--fun-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.fun-card__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(74, 144, 164, 0.08);
  transition: width 0.3s ease;
}

.fun-card__link:hover {
  background: rgba(74, 144, 164, 0.12);
  border-color: var(--fun-accent);
  transform: translateX(6px);
  box-shadow: 0 2px 8px rgba(74, 144, 164, 0.15);
}

.fun-card__link:hover::before {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .fun-card__link:hover {
    transform: translateX(2px);
  }
}

.fun-card__link i {
  font-size: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.fun-card__link:hover i {
  opacity: 1;
}

/* About */
.fun-about {
  background: var(--fun-surface);
  padding: 6rem 2rem;
  margin: 6rem 0 0;
  border-top: 1px solid var(--fun-border);
  position: relative;
  overflow: hidden;
}

.fun-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--fun-music),
    var(--fun-nature),
    var(--fun-heygen),
    var(--fun-family),
    var(--fun-glazed),
    transparent
  );
  opacity: 0.6;
}

.fun-about__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fun-about__title {
  font-family: var(--fun-font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fun-about__text {
  font-size: 1.125rem;
  color: var(--fun-text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.fun-about__text:last-child {
  margin-bottom: 0;
}

/* Footer */
.fun-footer {
  background: var(--fun-surface);
  padding: 2.5rem 2rem;
  margin-top: auto;
  border-top: 1px solid var(--fun-border);
}

.fun-footer__main {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  color: var(--fun-text-soft);
  font-size: 0.9rem;
}

.fun-footer__main p {
  margin-bottom: 0.5rem;
}

.fun-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fun-footer__links a {
  color: var(--fun-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fun-footer__links a:hover {
  color: var(--fun-accent-hover);
  text-decoration: underline;
}

.fun-footer__subtle {
  opacity: 0.6;
  font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 768px) {
  .fun-header {
    padding: 1rem 1.5rem;
  }
  
  .fun-hero {
    padding: 5rem 1.5rem 4rem;
    min-height: 70vh;
  }
  
  .fun-hero__canvas {
    opacity: 0.5;
  }
  
  .fun-projects {
    padding: 0 1.5rem 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fun-about {
    padding: 3rem 1.5rem;
  }
  
  .fun-card {
    padding: 2rem 1.5rem;
  }
  
  .fun-card:hover {
    transform: translateY(-8px) translateZ(10px);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fun-hero__canvas,
  .fun-hero__shader,
  .sparkle,
  .fun-hero__title-line,
  .fun-hero__kicker,
  .fun-hero__lead,
  .fun-hero__cta,
  .fun-logo__text,
  .fun-logo__sparkle,
  .fun-card__title,
  .fun-about__title,
  .fun-rainbow-text {
    animation: none !important;
  }

  body.fun-home::before {
    animation: none !important;
    background-position: 20% 30%, 80% 20%, 70% 75%, 25% 80%, 50% 50%, 0% 0%;
  }

  .fun-hero__title,
  .fun-logo__text,
  .fun-card__title,
  .fun-about__title {
    animation: none !important;
    background-position: 40% 50%;
  }

  .fun-card {
    animation: none;
  }
}

/* Print styles */
@media print {
  .fun-header,
  .fun-footer,
  .fun-hero__sparkles,
  .fun-hero__scroll {
    display: none;
  }
}
