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

body {
  font-family: 'Fredoka', sans-serif;
  color: #3a3350;
  background: #fffdf6;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #4a3f75;
  margin-bottom: 28px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 48px 20px 0;
  background: linear-gradient(180deg, #7ec8f7 0%, #aadcfa 45%, #dff3ff 100%);
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  opacity: .9;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.c1 { width: 140px; height: 44px; top: 60px; left: 8%; }
.c1::before { width: 60px; height: 60px; top: -28px; left: 24px; }
.c1::after { width: 44px; height: 44px; top: -18px; left: 70px; }
.c2 { width: 110px; height: 36px; top: 130px; right: 10%; }
.c2::before { width: 48px; height: 48px; top: -22px; left: 18px; }
.c2::after { width: 36px; height: 36px; top: -14px; left: 56px; }
.c3 { width: 90px; height: 30px; top: 40px; right: 30%; opacity: .7; }
.c3::before { width: 38px; height: 38px; top: -18px; left: 16px; }
.c3::after { width: 30px; height: 30px; top: -12px; left: 46px; }

.hero-logo {
  position: relative;
  width: min(420px, 78vw);
  filter: drop-shadow(0 6px 14px rgba(58, 51, 80, .18));
}

.tagline {
  position: relative;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 500;
  color: #2f4b6e;
  margin: 14px auto 22px;
  max-width: 560px;
}

.btn-yt {
  position: relative;
  display: inline-block;
  background: #ff4d4d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 15px 38px;
  border-radius: 999px;
  box-shadow: 0 6px 0 #d63030;
  transition: transform .12s, box-shadow .12s;
}
.btn-yt:hover { transform: translateY(2px); box-shadow: 0 4px 0 #d63030; }

.hero-crew {
  position: relative;
  display: block;
  width: min(860px, 94vw);
  margin: 34px auto -4px;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -6px 24px rgba(47, 75, 110, .18);
}

/* Watch */
.watch { padding: 64px 20px; background: #fff3d6; }
.ep-card {
  display: flex;
  gap: 26px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(74, 63, 117, .12);
  transition: transform .15s;
}
.ep-card:hover { transform: scale(1.015); }
.ep-card + .ep-card { margin-top: 26px; }
.ep-card img { width: 46%; border-radius: 16px; }
.ep-info h3 { font-size: 1.5rem; color: #4a3f75; margin-bottom: 10px; }
.ep-info p { font-size: 1.02rem; line-height: 1.55; }

/* Crew cards */
.crew { padding: 64px 20px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(74, 63, 117, .10);
  text-align: center;
  padding-bottom: 20px;
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card h3 { font-size: 1.4rem; color: #4a3f75; margin: 14px 0 6px; }
.card p { font-size: .98rem; line-height: 1.5; padding: 0 18px; }

/* Parents */
.parents { padding: 64px 20px; background: #e8f6e8; }
.parents-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.parents-inner img {
  width: min(380px, 100%);
  border-radius: 22px;
  flex: 1 1 300px;
}
.parents-inner div { flex: 1 1 320px; }
.parents-inner h2 { text-align: left; margin-bottom: 14px; }
.parents-inner p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 12px; }

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #4a3f75;
  color: #efeafd;
}
.foot-logo { width: 120px; margin-bottom: 10px; }
footer p { font-size: .95rem; }

@media (max-width: 640px) {
  .ep-card { flex-direction: column; }
  .ep-card img { width: 100%; }
}

/* Crew hub + character pages */
.hero-small { padding: 32px 20px 40px; }
.hero-logo-small { width: min(260px, 56vw); }
.page-title {
  position: relative;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #4a3f75;
  margin-top: 18px;
}
a.card { text-decoration: none; color: inherit; transition: transform .15s; }
a.card:hover { transform: translateY(-4px); }
.card-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #ff4d4d;
}
.crew-foot { text-align: center; margin-top: 40px; }

.char-page { max-width: 940px; margin: 0 auto; padding: 48px 20px 64px; }
.back-link {
  display: inline-block;
  margin-bottom: 26px;
  text-decoration: none;
  font-weight: 600;
  color: #4a3f75;
}
.back-link:hover { color: #ff4d4d; }
.char-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.char-hero img {
  width: min(400px, 100%);
  flex: 1 1 300px;
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(74, 63, 117, .14);
}
.char-hero div { flex: 1 1 320px; }
.char-hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); color: #4a3f75; }
.char-tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff4d4d;
  margin: 4px 0 14px;
}
.char-hero p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 12px; }
.char-facts {
  background: #fff3d6;
  border-radius: 22px;
  padding: 30px 34px;
  margin-top: 40px;
}
.char-facts h2 { text-align: left; font-size: 1.5rem; margin-bottom: 16px; }
.char-facts ul { list-style: none; }
.char-facts li { font-size: 1.05rem; line-height: 1.9; }
.char-lyric {
  margin-top: 18px;
  padding: 14px 20px;
  background: #fff;
  border-left: 6px solid #ff4d4d;
  border-radius: 12px;
  font-size: 1.05rem;
  font-style: italic;
  color: #4a3f75;
}
.char-cta { text-align: center; margin-top: 40px; }
.char-next { text-align: center; margin-top: 22px; }
.char-next a { font-weight: 600; color: #4a3f75; text-decoration: none; }
.char-next a:hover { color: #ff4d4d; }
.foot-links a { color: #efeafd; }
