/* Shared */
:root {
  --bg: #fff8e8;
  --paper: rgba(255, 255, 255, 0.78);
  --ink: #284057;
  --muted: #6a7d8f;
  --orange: #ffb45c;
  --pink: #ff8fb3;
  --hot: #ff5e8f;
  --mint: #7edfc2;
  --sky: #77c9ff;
  --violet: #b59cff;
  --yellow: #ffe48f;
  --deep: #173653;
  --line: rgba(42, 62, 112, .1);
  --shadow: 0 22px 55px rgba(45, 75, 104, 0.18);
  --soft-shadow: 0 12px 28px rgba(45, 75, 104, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Landing page */
.landing-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 228, 143, 0.65), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(119, 201, 255, 0.5), transparent 32%),
    linear-gradient(180deg, #fff8e8 0%, #effcff 45%, #fff2f6 100%);
  padding-bottom: 112px;
}
.landing-page::before,
.landing-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.45;
  pointer-events: none;
}
.landing-page::before {
  left: -130px;
  top: 180px;
  background: radial-gradient(circle, var(--mint), transparent 68%);
}
.landing-page::after {
  right: -150px;
  bottom: 120px;
  background: radial-gradient(circle, var(--pink), transparent 68%);
}
.page-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin: 14px auto 0;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
}
.brand, .mobile-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-cat, .mobile-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff1a8, #ffc16e 55%, #ff9f8f);
  box-shadow: 0 12px 22px rgba(255, 158, 87, 0.28), inset 0 0 0 3px rgba(255, 255, 255, 0.75);
  position: relative;
}
.logo-cat .cat-face { font-size: 28px; transform: translateY(1px); }
.logo-cat .headphone,
.logo-cat .phone {
  position: absolute;
  top: 9px;
  width: 37px;
  height: 25px;
  border: 4px solid #27516d;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}
.logo-cat .headphone::before,
.logo-cat .headphone::after,
.logo-cat .phone::before,
.logo-cat .phone::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 8px;
  height: 15px;
  border-radius: 8px;
  background: #4fc5ff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.logo-cat .headphone::before,
.logo-cat .phone::before { left: -7px; }
.logo-cat .headphone::after,
.logo-cat .phone::after { right: -7px; }
.brand-title,
.brand-text,
.mobile-title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-title strong,
.brand-text strong,
.mobile-title strong {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-title span,
.brand-text span,
.mobile-title span {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.nav-menu, .desktop-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a,
.desktop-menu a {
  position: relative;
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  color: #38556c;
  overflow: hidden;
  transition: color .28s ease, transform .28s ease, background .28s ease;
}
.nav-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--sky));
  opacity: 0;
  transform: translateX(-100%);
  transition: transform .45s ease, opacity .35s ease;
  z-index: -1;
}
.nav-menu a:hover,
.nav-menu a.active,
.desktop-menu a:hover,
.desktop-menu a.active {
  color: #16344c;
  transform: translateY(-2px);
  background: rgba(255,255,255,.55);
}
.nav-menu a:hover::before,
.nav-menu a.active::before {
  opacity: .68;
  transform: translateX(0);
}
.menu-toggle {
  display: none;
  border: 0;
  border-radius: 18px;
  background: #fff;
  width: 48px;
  height: 48px;
  box-shadow: var(--soft-shadow);
  font-size: 24px;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 38px;
  padding: 72px 0 44px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
  color: #326282;
}
.eyebrow::before { content: "✨"; }
h1 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -0.06em;
  color: var(--deep);
}
h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #ff9f57, #ff7fab, #44bfe8, #6bd8b1);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  color: #536b7f;
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  font-weight: 900;
  font-size: 16px;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); filter: saturate(1.08); }
.btn:hover::after { left: 130%; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff9f57, #ff79a7 52%, #56c8ff);
  box-shadow: 0 18px 32px rgba(255, 126, 155, .28);
}
.btn-ghost {
  color: #315875;
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 620px;
}
.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--soft-shadow);
}
.stat strong { display: block; font-size: 28px; color: var(--deep); line-height: 1; }
.stat span { display: block; margin-top: 6px; font-size: 13px; font-weight: 800; color: var(--muted); }
.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.story-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 44% 56% 48% 52% / 54% 42% 58% 46%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.95), transparent 22%), linear-gradient(145deg, rgba(255, 241, 168, .9), rgba(126, 223, 194, .65), rgba(119, 201, 255, .62));
  border: 8px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatStage 7s ease-in-out infinite;
}
@keyframes floatStage {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.story-stage::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 2px dashed rgba(255,255,255,.9);
  border-radius: inherit;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.kid-cloud {
  position: absolute;
  left: 32px;
  bottom: 56px;
  width: 255px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 25px 40px rgba(67, 134, 177, .18);
}
.kid-cloud::before,
.kid-cloud::after {
  content: "";
  position: absolute;
  bottom: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
}
.kid-cloud::before { width: 110px; height: 110px; left: 28px; }
.kid-cloud::after { width: 84px; height: 84px; right: 28px; }
.alex-hero {
  position: absolute;
  left: 74px;
  bottom: 124px;
  font-size: 122px;
  filter: drop-shadow(0 18px 18px rgba(42, 72, 94, .18));
  animation: alexFloat 4.5s ease-in-out infinite;
  z-index: 4;
}
.alex-hero::after {
  content: "🎧";
  position: absolute;
  left: 22px;
  top: -12px;
  font-size: 42px;
}
@keyframes alexFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.magic-cat,
.cat-hero {
  position: absolute;
  width: 150px;
  height: 170px;
  border-radius: 48% 48% 45% 45%;
  background: #ffc168;
  box-shadow: 0 20px 28px rgba(150, 88, 43, .2), inset 0 -24px 0 rgba(196, 116, 66, .18);
  animation: catBounce 3.8s ease-in-out infinite;
  z-index: 5;
}
.magic-cat { right: 70px; top: 130px; }
.cat-hero { right: 48px; bottom: 42px; }
@keyframes catBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.magic-cat::before,
.magic-cat::after,
.cat-hero::before,
.cat-hero::after {
  content: "";
  position: absolute;
  top: -30px;
  width: 56px;
  height: 56px;
  background: #ffc168;
  border-radius: 12px;
  transform: rotate(45deg);
  z-index: -1;
}
.magic-cat::before,
.cat-hero::before { left: 18px; }
.magic-cat::after,
.cat-hero::after { right: 18px; }
.cat-headphone,
.cat-hero .headphones {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 58px;
  border: 5px solid #263f68;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  z-index: 6;
}
.cat-headphone::before,
.cat-headphone::after,
.cat-hero .headphones::before,
.cat-hero .headphones::after {
  content: "";
  position: absolute;
  top: 36px;
  width: 16px;
  height: 34px;
  border-radius: 999px;
  background: var(--sky);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.5);
}
.cat-headphone::before,
.cat-hero .headphones::before { left: -12px; }
.cat-headphone::after,
.cat-hero .headphones::after { right: -12px; }
.cat-eyes {
  position: absolute;
  top: 52px;
  left: 29px;
  right: 29px;
  display: flex;
  justify-content: space-between;
}
.cat-eyes span {
  width: 22px;
  height: 28px;
  border-radius: 999px;
  background: #23394d;
  position: relative;
}
.cat-eyes span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
}
.cat-smile {
  position: absolute;
  top: 88px;
  left: 50%;
  width: 52px;
  height: 28px;
  border-bottom: 5px solid #7b4232;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}
.pixel-chip {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(145deg, #e9ffff, #67caff);
  box-shadow: 0 0 18px rgba(103,202,255,.8);
}
.cat-boots {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -12px;
  display: flex;
  justify-content: space-between;
}
.cat-boots span {
  width: 54px;
  height: 32px;
  border-radius: 18px 18px 10px 10px;
  background: #8a5a3e;
  border: 4px solid rgba(255,255,255,.5);
}
.tech-ring {
  position: absolute;
  right: 30px;
  top: 65px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 4px solid rgba(79, 197, 255, .5);
  box-shadow: 0 0 30px rgba(79, 197, 255, .45), inset 0 0 28px rgba(255,255,255,.45);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(.98); opacity: .75; }
  50% { transform: scale(1.04); opacity: 1; }
}
.holo-book {
  position: absolute;
  left: 52px;
  top: 178px;
  width: 86px;
  height: 64px;
  border: 2px solid rgba(79,197,255,.65);
  border-radius: 18px;
  background: rgba(79,197,255,.13);
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 0 24px rgba(79,197,255,.45);
  z-index: 3;
}
.note { position: absolute; font-size: 34px; animation: drift 5s ease-in-out infinite; }
.note:nth-child(1) { top: 42px; left: 90px; animation-delay: .2s; }
.note:nth-child(2) { top: 180px; left: 26px; animation-delay: 1s; }
.note:nth-child(3) { right: 48px; bottom: 92px; animation-delay: 1.7s; }
.note:nth-child(4) { right: 166px; bottom: 40px; animation-delay: .5s; }
@keyframes drift {
  0%,100% { transform: translateY(0) rotate(-6deg); opacity: .74; }
  50% { transform: translateY(-16px) rotate(9deg); opacity: 1; }
}
.section { padding: 54px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}
.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--deep);
}
.section-subtitle {
  max-width: 540px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 650;
}
.story-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.story-card {
  position: relative;
  min-height: 290px;
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  isolation: isolate;
}
.story-card::before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: var(--card-glow, rgba(255, 180, 92, .45));
  z-index: -1;
  transition: transform .35s ease, opacity .35s ease;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.55), transparent 62%);
  transform: translateX(-100%);
  transition: transform .72s ease;
  pointer-events: none;
}
.story-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 26px 52px rgba(45, 75, 104, .2);
  background: rgba(255, 255, 255, .88);
}
.story-card:hover::before { transform: scale(1.25); opacity: .9; }
.story-card:hover::after { transform: translateX(100%); }
.story-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  font-size: 48px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.48));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.8), 0 12px 26px rgba(48, 85, 118, .12);
}
.story-card h3 { margin: 22px 0 10px; color: var(--deep); font-size: 23px; letter-spacing: -0.03em; line-height: 1.12; }
.story-card p { margin: 0; color: var(--muted); line-height: 1.5; font-weight: 650; }
.story-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  color: #47708c;
}
.story-meta span { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.68); }
.features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.feature-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.52));
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(255,255,255,.78);
}
.feature-card .bubble {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 30px;
  background: linear-gradient(145deg, #fff0a8, #ffd1e0);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.75);
}
.feature-card h3 { margin: 16px 0 8px; font-size: 22px; color: var(--deep); }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.55; font-weight: 650; }
.floating-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  width: min(900px, calc(100% - 28px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 22px 55px rgba(45, 75, 104, 0.22);
}
.player-cover {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff0a8, #ffb45c 55%, #ff8fb3);
  font-size: 29px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.65);
}
.track-info { min-width: 0; }
.track-info strong {
  display: block;
  color: var(--deep);
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-info span { display: block; margin-top: 4px; color: var(--muted); font-weight: 750; font-size: 13px; }
.progress-wrap, .progress, .volume {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(72, 127, 164, .13);
  overflow: hidden;
  cursor: pointer;
}
.progress-bar, .progress-fill, .volume-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--sky));
  transition: width .2s linear;
}
.player-actions { display: flex; align-items: center; gap: 8px; }
.player-btn, .icon-btn, .mobile-icon-btn, .queue-play {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  background: rgba(255,255,255,.76);
  color: #315875;
  box-shadow: 0 8px 18px rgba(45, 75, 104, .12);
  font-size: 18px;
  display: grid;
  place-items: center;
}
.play-main, .play-btn {
  width: 56px;
  height: 56px;
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(145deg, #ff9f57, #ff7fab);
  font-size: 22px;
  box-shadow: 0 14px 24px rgba(255, 126, 155, .3);
}
.icon-link { display: grid; place-items: center; }
.footer { padding: 46px 0 28px; text-align: center; color: var(--muted); font-weight: 700; }
.hide-mobile { display: inline; }

/* Player page */
.player-page {
  min-height: 100vh;
  background: radial-gradient(circle at 12% 10%, rgba(255,228,143,.62), transparent 28%), radial-gradient(circle at 92% 12%, rgba(103,202,255,.46), transparent 32%), radial-gradient(circle at 50% 92%, rgba(255,94,143,.2), transparent 42%), linear-gradient(180deg, #fff8e8 0%, #effcff 48%, #fff1f7 100%);
}
.app-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 20px auto 34px;
  min-height: calc(100vh - 54px);
  display: grid;
  grid-template-columns: 214px minmax(0,1fr);
  border-radius: 34px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
  position: relative;
}
.sidebar {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.44);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.side-nav { display: grid; gap: 8px; }
.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 18px;
  font-weight: 850;
  color: #23356a;
}
.side-nav a:hover,
.side-nav a.active { color: var(--pink); transform: translateX(4px); background: rgba(255,255,255,.65); }
.side-icon { width: 24px; text-align: center; font-size: 19px; }
.daily-card {
  margin-top: auto;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,246,250,.74));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
  position: relative;
}
.daily-card::before { content: "✨"; position: absolute; top: 12px; right: 16px; }
.daily-cat {
  width: 118px;
  height: 96px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 52px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 80%, rgba(103,202,255,.28), transparent 45%);
}
.daily-card h3 { margin: 0 0 8px; font-size: 15px; }
.daily-card p { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 650; }
.mini-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 22px rgba(255,94,143,.24);
  display: inline-flex;
  justify-content: center;
}
.main { min-width: 0; display: flex; flex-direction: column; }
.topbar {
  height: 90px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.32);
}
.top-actions { display: flex; align-items: center; gap: 10px; }
.profile {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(40,58,98,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  padding: 8px 12px 8px 8px;
  font-weight: 900;
  color: #1d2e60;
  box-shadow: 0 10px 22px rgba(40,58,98,.08);
}
.profile-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1a8;
}
.content {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 24px;
  align-items: start;
}
.now-card, .queue-card, .caption-card, .player-card, .quick-card, .mobile-player-card {
  border: 1px solid rgba(255,255,255,.82);
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}
.now-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 330px minmax(0,1fr);
  gap: 24px;
  align-items: center;
}
.cover-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 330px;
  background: radial-gradient(circle at 70% 28%, rgba(103,202,255,.65), transparent 24%), linear-gradient(145deg, #d7fff1, #fff0bc 45%, #ffd9e5);
  box-shadow: 0 22px 38px rgba(40,58,98,.16);
}
.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 3px solid rgba(255,255,255,.68);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(103,202,255,.65), inset 0 0 30px rgba(255,255,255,.56);
}
.cover-wrap::after {
  content: "♪ ♫ ✨";
  position: absolute;
  top: 28px;
  right: 24px;
  color: rgba(255,255,255,.92);
  font-size: 28px;
  letter-spacing: 6px;
}
.cover-land {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -30px;
  height: 128px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(114,207,132,.7), rgba(255,199,141,.8));
}
.cover-tree {
  position: absolute;
  left: 20px;
  bottom: 64px;
  width: 78px;
  height: 110px;
  border-radius: 40px 40px 12px 12px;
  background: linear-gradient(180deg, rgba(126,223,194,.92), rgba(74,160,108,.9));
  transform: rotate(-7deg);
}
.cover-house {
  position: absolute;
  right: 16px;
  bottom: 72px;
  width: 94px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255,255,255,.58);
}
.cover-house::before {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  top: -28px;
  height: 42px;
  border-radius: 14px 14px 6px 6px;
  background: #bd8054;
  transform: skewX(-10deg);
}
.hologram {
  position: absolute;
  left: 36px;
  bottom: 142px;
  width: 78px;
  height: 62px;
  border: 2px solid rgba(103,202,255,.75);
  border-radius: 18px;
  background: rgba(103,202,255,.16);
  box-shadow: 0 0 22px rgba(103,202,255,.5);
  transform: rotate(-8deg);
  z-index: 3;
}
.hologram::after {
  content: "📖";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.episode-info h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .96;
  letter-spacing: -0.06em;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  color: #4c4b91;
  background: rgba(181,156,255,.14);
}
.badge.live { color: var(--pink); background: linear-gradient(90deg, rgba(255,94,143,.12), rgba(255,159,87,.12)); }
.star {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 19px;
  border-radius: 14px;
  background: #fff5cf;
  color: #ffae2b;
  vertical-align: middle;
}
.episode-info p { margin: 0 0 18px; max-width: 570px; color: #53617f; font-weight: 650; line-height: 1.62; font-size: 16px; }
.tags, .action-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.tag {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(40,58,98,.06);
  color: #53617f;
  font-size: 13px;
  font-weight: 900;
}
.soft-btn, .tiny-action, .mobile-tool {
  border: 1px solid rgba(40,58,98,.08);
  background: rgba(255,255,255,.72);
  color: #20346a;
  border-radius: 16px;
  padding: 12px 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.soft-btn.active { color: var(--pink); background: #fff; }
.player-card { margin-top: 22px; padding: 24px; background: linear-gradient(135deg, rgba(255,242,234,.9), rgba(255,235,244,.82), rgba(255,251,235,.88)); }
.time-row, .volume-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #25386f;
  font-size: 14px;
  font-weight: 900;
}
.progress, .volume { flex: 1; margin-top: 0; position: relative; }
.control-row {
  margin: 30px 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.ctrl-btn {
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #0d245d;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}
.ctrl-btn.skip { font-size: 18px; font-weight: 900; }
.play-btn {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 0;
  font-size: 32px;
}
.utility-actions { display: flex; align-items: center; gap: 12px; margin-left: 18px; }
.tiny-action small { display: block; font-size: 11px; }
.quick-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.quick-card { padding: 17px; display: flex; align-items: center; gap: 13px; }
.quick-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  background: rgba(255,255,255,.78);
  font-size: 25px;
}
.quick-card strong { display: block; font-size: 15px; line-height: 1.1; }
.quick-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.2; }
.right-col { display: grid; gap: 20px; }
.queue-card, .caption-card { padding: 18px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.panel-head h2 { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.queue-list, .caption-list { display: grid; gap: 12px; }
.queue-item {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 38px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  transition: transform .25s, background .25s;
}
.queue-item:hover,
.queue-item.active { transform: translateX(3px); background: linear-gradient(90deg, rgba(255,94,143,.1), rgba(255,159,87,.08)); }
.thumb {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 28px;
  background: linear-gradient(145deg, #fff0a8, #d8fff3);
}
.queue-text strong {
  display: block;
  font-size: 14px;
  color: #23356a;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.queue-text span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 800; }
.caption-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  color: #53617f;
  line-height: 1.35;
  font-size: 13px;
  font-weight: 700;
}
.caption-line.active { background: rgba(255,94,143,.1); color: #23356a; }
.mobile-only-page, .mobile-topbar { display: none; }

@media (max-width: 1120px) {
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: 1fr; }
  .content { grid-template-columns: 1fr; }
  .right-col { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy p, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 760px) {
  .landing-page { padding-bottom: 154px; }
  .site-header { top: 10px; border-radius: 26px; align-items: flex-start; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--soft-shadow);
  }
  .site-header.open .nav-menu { display: flex; }
  .hero-stats { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .section-head { display: block; text-align: center; }
  .floating-player { grid-template-columns: auto 1fr; align-items: start; }
  .player-actions { grid-column: 1 / -1; justify-content: center; }
  .hide-mobile { display: none; }

  .app-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    display: block;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    overflow: visible;
  }
  .sidebar, .topbar, .content { display: none; }
  .mobile-only-page { display: block; min-height: 100vh; padding: 14px 14px 24px; }
  .mobile-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0 16px; }
  .mobile-logo { width: 44px; height: 44px; border-radius: 16px; font-size: 22px; }
  .mobile-title strong { font-size: 13px; }
  .mobile-title span { font-size: 14px; }
  .mobile-listen { width: min(100%, 420px); margin: 0 auto; }
  .mobile-cover { border-radius: 28px; min-height: 292px; margin-top: 4px; }
  .mobile-info { text-align: center; margin: 16px auto 0; }
  .mobile-player-card { margin-top: 16px; padding: 18px 14px; background: rgba(255,255,255,.75); }
  .mobile-tools { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; border-top: 1px solid rgba(40,58,98,.08); padding-top: 14px; }
  .mobile-tool {
    background: transparent;
    border: 0;
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 0;
  }
  .mobile-tool b { font-size: 20px; line-height: 1; }
  .mobile-queue {
    margin-top: 16px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: var(--soft-shadow);
  }
}
