:root {
  --color-primary: #F0168E;
  --color-primary-light: #FF69B4;
  --color-primary-shadow: rgba(240, 22, 142, 0.12);
  --color-bg: #F7F0E8;
  --color-accent-green: #AAEE44;
  --color-accent-yellow: #FFE566;
  --color-text-pink: #FFB3D0;
  --color-text-dark: #2D2D2D;
  --color-white: #FFFFFF;
  --color-card-border: rgba(0, 0, 0, 0.06);

  --font-en: 'PingFang SC', 'PingFang TC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-cn: 'PingFang SC', 'PingFang TC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;

  --text-display: 56px;
  --text-h1: 40px;
  --text-h2: 28px;
  --text-h3: 20px;
  --text-body: 16px;
  --text-caption: 13px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px var(--color-primary-shadow);
  --shadow-md: 0 4px 24px var(--color-primary-shadow);
  --shadow-lg: 0 8px 40px var(--color-primary-shadow);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 220ms;
  --duration-slow: 400ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-cn);
  color: var(--color-text-dark);
  background:
    radial-gradient(circle at top left, rgba(240, 22, 142, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(170, 238, 68, 0.18), transparent 20%),
    linear-gradient(180deg, #FFF7F1 0%, var(--color-bg) 42%, #FDF4EF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

.interactive {
  transition: transform var(--duration-normal) var(--ease-spring),
    box-shadow var(--duration-normal) ease,
    background-color var(--duration-normal) ease,
    color var(--duration-normal) ease,
    opacity var(--duration-normal) ease;
}

.interactive:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.interactive:active {
  transform: scale(0.97);
  transition-duration: var(--duration-fast);
}

.interactive:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.nav-link {
  border: 0;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-2);
}

.nav-link + .nav-link {
  border-left: 2px solid rgba(255, 255, 255, 0.45);
}

.nav-left {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  justify-content: flex-start;
  padding-left: 18px;
}

.nav-left {
  background: linear-gradient(to right, #F7F0E8 0%, #F0168E 100%);
  border-right: 2px solid rgba(255, 255, 255, 0.45);
}

.nav-center,
.nav-right {
  background: #F0168E;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.18);
}

.nav-center,
.nav-right {
  justify-content: center;
}

.section {
  position: relative;
  padding: calc(48px + var(--space-6)) var(--space-3) var(--space-8);
  min-height: 100vh;
  overflow: hidden;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto var(--space-4);
}

.section-kicker {
  margin: 0 0 var(--space-1);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
}

.section h2,
.hero-section h1 {
  margin: 0;
  line-height: 0.95;
}

.section h2 {
  font-size: var(--text-h1);
}

.hero-section {
  display: grid;
  align-items: center;
  min-height: 100vh;
}

#beam {
  position: absolute;
  top: 64px;
  left: -10vw;
  width: 118vw;
  height: 92vh;
  background: linear-gradient(
    135deg,
    rgba(170, 238, 68, 0.82) 0%,
    rgba(170, 238, 68, 0.42) 36%,
    transparent 100%
  );
  clip-path: polygon(0 0, 100% 20%, 64% 100%, 0 48%);
  transform-origin: top left;
  pointer-events: none;
  opacity: 0.88;
  mix-blend-mode: multiply;
}

#ufo {
  position: absolute;
  top: 70px;
  left: -30px;
  width: min(28vw, 360px);
  max-width: 360px;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.78));
  z-index: 2;
  transform: rotate(-10deg);
  background: transparent;
  mix-blend-mode: multiply;
}

#hi-bubble {
  position: absolute;
  top: 31%;
  left: 21%;
  width: 148px;
  height: auto;
  display: block;
  background: transparent;
  clip-path: none;
  box-shadow: none;
  z-index: 3;
  object-fit: contain;
}

#lets-text {
  position: absolute;
  top: calc(57.5% - 50px);
  left: 27.8%;
  width: 74px;
  height: auto;
  transform: rotate(0deg);
  z-index: 3;
  object-fit: contain;
}

#logo {
  position: absolute;
  left: 42%;
  top: calc(52% - 105px);
  transform: translateY(-50%);
  width: 200px;
  border-radius: 20px;
  z-index: 4;
  animation: logo-float 3.6s ease-in-out infinite;
}

#update-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(410px, calc(100vw - 48px));
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--color-card-border);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.card-eyebrow {
  margin: 0 0 var(--space-1);
  color: var(--color-primary);
  font-family: var(--font-cn);
  font-size: 16px;
  font-weight: 700;
}

#update-card p:last-child {
  margin: var(--space-2) 0 0;
  font-size: var(--text-body);
  line-height: 1.6;
}

.update-list {
  display: grid;
  gap: 16px;
  margin-top: var(--space-2);
}

.update-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 8px 10px 8px 8px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.86);
}

.update-item:hover {
  transform: translateY(-1px);
}

.update-item img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.4);
}

.update-item-copy {
  min-width: 0;
}

.update-item h3 {
  margin: 0;
  font-size: var(--text-body);
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.update-play::before {
  transform: translateX(1px);
}

#s2-episodes {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  padding-top: 56px;
  padding-bottom: 0;
}

.episodes-section {
  height: calc(100vh - 48px);
  min-height: calc(100vh - 48px);
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.episodes-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
}

.basket-column,
.episodes-column {
  height: 100%;
  position: relative;
}

.basket-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(12px, 2vw, 20px);
  overflow: hidden;
}

.basket-stage {
  position: relative;
  width: min(100%, 720px);
  height: 70vh;
  max-height: 70vh;
}

.basket-image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: min(70vh, 100%);
  width: auto;
  max-width: none;
}

.sticker {
  position: absolute;
  z-index: 3;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(240, 22, 142, 0.16));
  animation: none;
}

.sticker-hotpot {
  top: 12%;
  left: 36%;
  transform: rotate(-6deg);
  width: 128px;
}

.sticker-turtle {
  top: 24%;
  left: 22%;
  transform: rotate(3deg);
  width: 128px;
}

.sticker-mental {
  top: 38%;
  left: 20%;
  transform: rotate(-3deg);
  width: 128px;
}

.sticker-tarot {
  top: 50%;
  left: 26%;
  transform: rotate(6deg);
  width: 128px;
}

.sticker-duan {
  top: 58%;
  left: 40%;
  transform: rotate(-9deg);
  width: 128px;
}

.sticker-property {
  top: 62%;
  left: 12%;
  transform: rotate(4deg);
  width: 128px;
}

.sticker-massage {
  top: 20%;
  left: 44%;
  transform: rotate(-5deg);
  width: 128px;
}

.episodes-column {
  overflow-y: auto;
  overflow-x: visible;
  height: calc(100vh - 48px);
  padding: 32px clamp(16px, 2vw, 24px) 24px 16px;
}

.tags-bar {
  position: sticky;
  top: 8px;
  z-index: 2;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 0 16px;
  scrollbar-width: none;
}

.tags-bar::-webkit-scrollbar {
  display: none;
}

.tag-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(240, 22, 142, 0.16);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text-dark);
  padding: 10px 18px;
  cursor: pointer;
  font-size: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.tag-pill.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.episodes-list {
  display: grid;
  gap: 16px;
  padding-bottom: 32px;
}

.empty-state {
  padding: 24px;
  text-align: center;
  color: rgba(45, 45, 45, 0.55);
  font-size: var(--text-body);
}

.episode-card {
  position: relative;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.episode-summary {
  list-style: none;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
}

.episode-summary::-webkit-details-marker {
  display: none;
}

.episode-card[open] .episode-summary {
  border-bottom: 1px solid rgba(240, 22, 142, 0.12);
}

.ep-cover {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
}

.episode-summary .ep-cover {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.ep-info {
  min-width: 0;
}

.ep-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-summary-hint {
  margin: 0;
  font-size: var(--text-caption);
  line-height: 1.35;
  color: rgba(45, 45, 45, 0.55);
}

.episode-chevron {
  color: rgba(45, 45, 45, 0.5);
  font-size: 20px;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease;
}

.episode-card[open] .episode-chevron {
  transform: rotate(180deg);
}

.episode-body {
  padding: 0 16px 16px;
}

.episode-card:not([open]) .episode-body {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.episode-card:not([open]) .episode-summary {
  margin-bottom: 0;
}

.ep-desc {
  margin: 0 0 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #555;
  max-height: 320px;
  overflow-y: auto;
}

.ep-desc p {
  margin-bottom: 0.75em;
}

.ep-desc p:last-child {
  margin-bottom: 0;
}

.ep-desc br {
  line-height: 1.4;
}

.ep-desc h1,
.ep-desc h2,
.ep-desc h3,
.ep-desc h4,
.ep-desc h5,
.ep-desc h6 {
  margin: 0 0 0.75em;
  line-height: 1.25;
  font-weight: 800;
  color: var(--color-text-dark);
}

.ep-desc ul,
.ep-desc ol {
  margin: 0 0 0.9em;
  padding-left: 1.4em;
}

.ep-desc li {
  margin: 0.25em 0;
}

.ep-desc blockquote {
  margin: 0 0 0.9em;
  padding: 0.75em 0.9em;
  border-left: 4px solid rgba(240, 22, 142, 0.28);
  background: rgba(240, 22, 142, 0.05);
  border-radius: 0 12px 12px 0;
}

.ep-desc a {
  color: #F0168E;
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ep-desc strong {
  font-weight: 800;
}

.ep-desc em {
  font-style: italic;
}

.ep-desc img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0.8em 0;
  border-radius: 14px;
}

.episode-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

#s3-links {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg);
  overflow: hidden;
}

.links-section {
  position: relative;
}

#s3-links > * {
  position: absolute;
}

#host-emoji-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.host-emoji {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform, opacity, left, top;
  filter: drop-shadow(0 3px 6px rgba(240, 22, 142, 0.18));
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.45);
}

.host-emoji.is-leaving {
  transition: opacity 420ms ease;
  opacity: 0 !important;
}

.platform-btn {
  position: relative;
  background: #F0168E;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.platform-btn::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at center, rgba(255, 192, 224, 0.42), transparent 60%);
  opacity: 0.5;
  transform: scale(0.92);
  z-index: 0;
  pointer-events: none;
}

.platform-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.18), transparent 12%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.12), transparent 10%);
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

.platform-btn:hover {
  transform: translateY(-1px) scale(1.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(240, 22, 142, 0.2);
}

.platform-row {
  display: grid;
  grid-template-columns: 180px 48px 130px;
  align-items: center;
  column-gap: 20px;
  transform: translateX(20px);
}

.platform-row > img {
  justify-self: center;
  transform: none;
}

.platform-row > span {
  text-align: center;
}

#yes-wrapper:hover img {
  transform: scale(1.06) rotate(4deg);
  transition: transform 0.2s ease;
}

.contact-bar {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(calc(-50% + 60px));
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  z-index: 4;
  background: transparent;
  padding: 0;
  border: 0;
}

.contact-bar .contact-item {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  line-height: 1;
}

.contact-bar .contact-item:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.contact-bar .contact-item span,
.contact-bar .contact-item img {
  position: static;
}

.contact-bar .contact-item img {
  width: 20px;
  height: 20px;
  display: block;
}

#easter-root {
  min-height: 1px;
}

#s4-egg {
  position: fixed;
  inset: 48px 0 0 0;
  min-height: calc(100vh - 48px);
  background: #F7F0E8;
  overflow: hidden;
  z-index: 900;
  opacity: 0;
  transform: scale(0.88) translate(80px, 80px);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
}

#s4-egg :focus-visible {
  outline: none;
  box-shadow: none;
}

#s4-egg.is-open {
  opacity: 1;
  transform: scale(1) translate(0, 0);
  pointer-events: auto;
}

#s4-egg #egg-right {
  position: absolute;
}

#s4-egg #message-board {
  position: relative;
  overflow: visible;
  min-height: 0;
}

#s4-egg #msg-list {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  position: relative;
  z-index: 2;
}

#s4-egg #msg-list > .msg-note:first-child {
  margin-top: 0;
}

#s4-egg #message-board > div:last-child {
  position: relative;
  z-index: 2;
}

#msg-submit {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#msg-submit:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(240, 22, 142, 0.22);
  filter: brightness(1.03);
}

#msg-submit:active {
  transform: scale(0.97);
}

#egg-close {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#egg-close:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(240, 22, 142, 0.22);
  filter: brightness(1.03);
}

#egg-close:active {
  transform: scale(0.94);
}

@keyframes msg-badge-pop {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.7);
  }

  25% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
}

#s4-egg #msg-list::-webkit-scrollbar {
  width: 10px;
}

#s4-egg #msg-list::-webkit-scrollbar-track {
  background: transparent;
}

#s4-egg #msg-list::-webkit-scrollbar-thumb {
  background: rgba(240, 22, 142, 0.32);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

@keyframes logo-float {
  0%,
  100% {
    top: calc(52% - 5px);
  }

  50% {
    top: calc(52% - 15px);
  }
}

#toast {
  position: fixed;
  left: 50%;
  bottom: var(--space-3);
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100vw - var(--space-4));
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(45, 45, 45, 0.92);
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

@media (min-width: 768px) {
  .section {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .episodes-layout {
    grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  }

  .basket-stage {
    width: min(100%, 640px);
  }

  .basket-image {
    height: 62vh;
  }

  .sticker {
    transform-origin: center;
    scale: 0.9;
  }

  .episode-card {
    border-radius: 18px;
    display: block;
    height: auto;
  }

  .episode-summary {
    grid-template-columns: 72px minmax(0, 1fr) 24px;
  }

  .episode-summary .ep-cover {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 920px) {
  .episodes-section {
    height: auto;
    min-height: 100vh;
  }

  .episodes-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .basket-column {
    justify-content: center;
    padding: 24px 16px 0;
  }

  .basket-stage {
    width: min(100%, 500px);
    height: min(52vh, 500px);
    max-height: none;
  }

  .basket-image {
    height: min(52vh, 500px);
  }

  .episodes-column {
    height: auto;
    min-height: 60vh;
    padding: 16px;
  }

  .tags-bar {
    position: static;
    margin-bottom: 12px;
  }

  .episode-card {
    min-height: 0;
    display: block;
    height: auto;
  }
}

@media (max-width: 920px) {
  #s3-links {
    min-height: 100vh;
    height: calc(100vh - 48px);
    overflow: hidden;
  }

  #s3-links > * {
    position: absolute;
  }

  #hosts-sidebar {
    left: 0 !important;
    top: 74px !important;
    gap: 24px !important;
    z-index: 3;
  }

  #hosts-sidebar img {
    width: 52px !important;
    height: auto !important;
  }

  #s3-links > img[alt="红色邮箱装饰图"] {
    left: -24px !important;
    bottom: 54px !important;
    height: 31vh !important;
    max-width: 34vw !important;
    transform: scale(1.26);
    transform-origin: left bottom;
    margin-left: 0;
    z-index: 1;
  }

  #platform-links {
    left: 50% !important;
    top: calc(44% + 4px) !important;
    transform: translate(-50%, -50%) scale(1.06) !important;
    transform-origin: center center !important;
    gap: 18px !important;
    z-index: 2;
  }

  .platform-row {
    grid-template-columns: 124px 34px 112px;
    transform: none !important;
  }

  .platform-row > img {
    max-height: 26px;
    transform: translateX(27px) scale(0.9);
  }

  .host-emoji {
    font-size: clamp(26px, 3.6vw, 44px);
  }

  .platform-btn {
    min-width: 84px;
    text-align: center;
    padding: 6px 12px;
    font-size: 12px;
  }

  #yes-wrapper {
    right: 0 !important;
    bottom: 146px !important;
    gap: 6px !important;
    z-index: 4;
  }

  #yes-wrapper img {
    width: 104px !important;
  }

  #yes-wrapper span {
    font-size: 12px !important;
    margin-top: -28px;
  }

  .contact-bar {
    left: 50% !important;
    bottom: 104px !important;
    transform: translateX(-50%) scale(0.76) !important;
    gap: 28px !important;
  }
}

@media (max-width: 640px) {
  .basket-stage {
    width: min(100%, 420px);
    height: min(48vh, 420px);
  }

  .basket-image {
    height: min(48vh, 420px);
  }

  .sticker {
    scale: 0.7;
  }

  .episode-card {
    border-radius: 16px;
    display: block;
    height: auto;
  }

  .episode-summary {
    grid-template-columns: 64px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 12px 14px;
  }

  .episode-summary .ep-cover {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .ep-title {
    font-size: 16px;
  }

  .ep-desc {
    font-size: 14px;
  }

  .episodes-column {
    min-height: 60vh;
    padding: 16px;
  }

  .tags-bar {
    margin-bottom: 12px;
    padding: 8px 0 16px;
    gap: 12px;
  }

  .tag-pill {
    padding: 10px 18px;
    font-size: var(--text-body);
  }

  .episodes-list {
    gap: 16px;
    padding-bottom: 32px;
  }

  .episode-card {
    border-radius: var(--radius-lg);
  }

  .episode-summary {
    grid-template-columns: 64px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 12px 14px;
  }

  .episode-summary .ep-cover {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .ep-title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
  }

  .ep-summary-hint {
    line-height: 1.35;
  }

  .episode-chevron {
    font-size: 20px;
  }

  .episode-body {
    padding: 0 16px 16px;
  }

  .ep-desc {
    margin: 0 0 14px;
    font-size: 0.875rem;
    line-height: 1.75;
    max-height: 320px;
  }

  .episode-more {
    padding: 10px 16px;
    font-size: inherit;
  }
}

@media (max-width: 480px) {
  #navbar {
    height: 42px;
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-link {
    font-size: 14px;
    padding: 0 6px;
  }

  .nav-left {
    font-size: 12px;
    letter-spacing: 0.05em;
    padding-left: 6px;
  }

  .nav-link svg {
    width: 18px;
    height: 18px;
  }

  .section {
    padding-top: calc(42px + 18px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section {
    align-items: start;
    padding-top: calc(42px + 12px);
  }

  #beam {
    top: 32px;
    left: -18vw;
    width: 136vw;
    height: 58vh;
    opacity: 0.8;
  }

  #ufo {
    top: 44px;
    left: -44px;
    width: min(38vw, 188px);
    max-width: 188px;
  }

  #hi-bubble {
    top: 19%;
    left: 14%;
    width: 88px;
  }

  #lets-text {
    top: 31%;
    left: 12%;
    width: 52px;
  }

  #logo {
    left: 50%;
    top: 36%;
    width: 142px;
    transform: translate(-50%, -50%);
    animation: none;
  }

  #update-card {
    left: 16px;
    right: 16px;
    bottom: 112px;
    width: auto;
    padding: 12px;
  }

  .card-eyebrow {
    font-size: 13px;
  }

  #update-card p:last-child {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .update-list {
    gap: 12px;
    margin-top: 10px;
  }

  .update-item {
    grid-template-columns: 48px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 7px 8px 7px 7px;
    border-radius: 14px;
  }

  .update-item img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .update-item h3 {
    font-size: 14px;
    line-height: 1.2;
  }

  .update-play {
    width: 30px;
    height: 30px;
  }

  #s4-egg {
    inset: 42px 0 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #s4-egg #egg-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  #s4-egg #egg-left,
  #s4-egg #egg-right {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
  }

  #s4-egg #egg-left {
    order: 1;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    min-height: clamp(280px, 62vw, 380px) !important;
    height: clamp(280px, 62vw, 380px) !important;
    margin: 0;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
    opacity: 0.86;
    transform: scale(0.62) translateY(0);
    transform-origin: top center;
    margin-bottom: 0 !important;
    margin-top: -24px;
  }

  #s4-egg #egg-left > img[alt="银色餐盖装饰图"] {
    left: calc(2% - 165px) !important;
    top: -52px;
    width: 22%;
  }

  #s4-egg #egg-left > div:nth-of-type(1) {
    left: calc(30% - 130px) !important;
    top: calc(-2% + 210px) !important;
    width: 216px !important;
    height: 216px !important;
    transform: translateY(-88px) scale(0.92) !important;
    transform-origin: center center !important;
  }

  #s4-egg #egg-left > img[alt="T恤周边"] {
    left: calc(60% - 62px) !important;
    top: calc(28% + 50px) !important;
    width: 137px !important;
    transform: translateY(0) scale(1.21) !important;
    transform-origin: center center !important;
  }

  #s4-egg #egg-left > div:nth-of-type(2) {
    left: calc(18% - 180px) !important;
    top: calc(-22% + 400px) !important;
    width: 174px !important;
    height: 174px !important;
    transform: translateY(-140px) scale(0.9) !important;
  }

  #s4-egg #egg-left > div:nth-of-type(3) {
    left: calc(76% + 18px) !important;
    top: calc(44% - 40px) !important;
    width: 50px !important;
    height: 50px !important;
    transform: translateY(0) scale(1.1) !important;
    transform-origin: center center !important;
  }

  #s4-egg #egg-right {
    order: 2;
    padding: 0 !important;
    margin: 0 auto 0 !important;
    height: auto !important;
    min-height: 0 !important;
    transform: translateY(-24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 740px) !important;
    z-index: 2;
    align-items: stretch;
    justify-content: flex-start !important;
  }

  #s4-egg #egg-title {
    position: absolute !important;
    top: clamp(-178px, -12vw, -70px) !important;
    right: -18px !important;
    transform: none !important;
    margin: 0 !important;
    padding: 8px 14px;
    width: min(64%, 360px) !important;
    max-width: 64% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    overflow: visible;
    z-index: 3;
  }

  #s4-egg #egg-title > span {
    display: block;
    width: fit-content;
    font-size: 28px !important;
    line-height: 1.05;
    white-space: nowrap;
    align-self: flex-end;
    text-align: right;
  }

  #s4-egg #message-board {
    left: 0 !important;
    margin: 0 auto !important;
    width: min(100%, 740px) !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    max-height: none !important;
    padding: 14px 14px 8px;
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  }

  #s4-egg #msg-list {
    max-height: 90% !important;
  }

  #s4-egg #message-board > div:last-child {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    margin-top: 2px;
  }

  #s4-egg #message-board > div:last-child input {
    width: auto;
    flex: 1 1 auto;
    padding: 6px 10px;
    font-size: 13px;
  }

  #s4-egg #message-board > div:last-child button {
    width: 76px;
    flex: 0 0 92px;
    padding: 6px 10px;
    font-size: 13px;
  }

  #s4-egg #message-board > div:last-child,
  #s4-egg #msg-list {
    width: 100%;
  }

  #s4-egg #message-board > img[alt=""] {
    top: clamp(-25px, -2.5vw, -15px) !important;
  }

  #s4-egg #egg-left,
  #s4-egg #egg-right {
    align-self: stretch;
  }

  #s4-egg #egg-right,
  #s4-egg #message-board {
    align-self: center;
  }
}

.admin-page {
  background:
    radial-gradient(circle at top left, rgba(240, 22, 142, 0.12), transparent 20%),
    linear-gradient(180deg, #FFF7F1 0%, var(--color-bg) 100%);
}

.admin-shell {
  min-height: 100vh;
  padding: var(--space-4);
  display: grid;
  place-items: center;
}

.admin-panel {
  width: min(960px, 100%);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.admin-copy,
.admin-tip,
.admin-placeholder {
  color: var(--color-text-dark);
  line-height: 1.7;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.admin-card {
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  background: rgba(255, 255, 255, 0.9);
}

.admin-field {
  display: grid;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.admin-field span {
  font-size: var(--text-caption);
  color: var(--color-primary);
}

.admin-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-2);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  font: inherit;
  background: var(--color-white);
  color: var(--color-text-dark);
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-3);
  border: 0;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.admin-button-secondary {
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
}

.tag-list {
  display: grid;
  gap: var(--space-2);
}

@media (max-width: 767px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
