/* ── Premium showcase visuals (phone / tarot / astro / community) ── */

/* ═══ Device mockup ═══ */
.hero-visual {
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.device-stage {
  position: relative;
  transform: rotateY(-12deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}

.device-stage:hover {
  transform: rotateY(-8deg) rotateX(2deg) translateY(-4px);
}

.device-shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 220px;
  height: 48px;
  background: radial-gradient(ellipse, rgba(60, 40, 90, 0.35) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.device-frame {
  position: relative;
  width: min(272px, 100%);
  padding: 3px;
  border-radius: 46px;
  background: linear-gradient(155deg, #3a3a42 0%, #1c1c22 40%, #2a2a32 70%, #484850 100%);
  box-shadow:
    0 40px 80px rgba(40, 25, 65, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.device-bezel {
  border-radius: 44px;
  overflow: hidden;
  background: #0a0a0e;
}

.device-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-screen {
  position: relative;
  min-height: 520px;
  background: linear-gradient(180deg, #faf8ff 0%, #f3eeff 45%, #eef4ff 100%);
}

.device-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,0.35) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
  z-index: 5;
}

.ds-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.ds-status-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ds-signal, .ds-battery {
  width: 16px;
  height: 10px;
  opacity: 0.85;
}

.app-home {
  padding: 8px 16px 56px;
  position: relative;
  z-index: 1;
}

.app-home-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.app-home-header img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(90, 56, 128, 0.2);
}

.app-home-header > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-home-header span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.app-home-header small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
}

.app-mood-card {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(90, 56, 128, 0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
}

.app-mood-card label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-mood-card .tags span {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(248, 244, 252, 0.9);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.app-mood-card .tags span.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(122, 88, 168, 0.35);
}

.app-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 224, 240, 0.8);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(90, 56, 128, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.app-tile-lg {
  grid-row: span 2;
  min-height: 154px;
  background: linear-gradient(155deg, rgba(255,232,244,0.95) 0%, rgba(232,224,252,0.95) 55%, rgba(220,232,255,0.95) 100%);
  border-color: rgba(139, 104, 184, 0.2);
}

.app-tile-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-dark);
  opacity: 0.9;
}

.app-tile-lg .app-tile-icon { width: 26px; height: 26px; }

.app-tile-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.app-tabbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 28px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(232, 224, 240, 0.6);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.app-tabbar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-3);
}

.app-tabbar span svg { width: 20px; height: 20px; opacity: 0.45; }

.app-tabbar span.is-active { color: var(--brand-dark); }
.app-tabbar span.is-active svg { opacity: 1; color: var(--brand); }

.device-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  z-index: 6;
}

/* Hide legacy phone styles */
.phone-glow, .phone-float, .phone-notch, .phone-status,
.phone-insight, .phone-mini-chat, .mood-meter, .phone-grid { display: none !important; }

/* ═══ Feature media panels (premium) ═══ */
.media-panel.media-tarot,
.media-panel.media-astro,
.media-panel.media-community {
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(30, 18, 50, 0.18),
    0 0 0 1px rgba(139, 104, 184, 0.12);
}

/* ═══ Tarot ═══ */
.media-tarot {
  background: linear-gradient(165deg, #1a1028 0%, #2a1840 50%, #1e1430 100%);
}

.tarot-table {
  position: relative;
  padding: 40px 32px 32px;
}

.tarot-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(224, 120, 168, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(139, 104, 184, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.tarot-spread {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px;
  perspective: 900px;
  z-index: 1;
}

.tarot-card {
  position: relative;
  width: 108px;
  height: 168px;
  border-radius: 8px;
  transform-style: preserve-3d;
}

.tarot-card-side {
  z-index: 1;
}

.tarot-card-left {
  transform: rotate(-18deg) translate(28px, 24px);
  animation: tarot-left-idle 6s ease-in-out infinite;
}

.tarot-card-right {
  transform: rotate(18deg) translate(-28px, 24px);
  animation: tarot-right-idle 6s ease-in-out infinite;
}

@keyframes tarot-left-idle {
  0%, 100% { transform: rotate(-18deg) translate(28px, 24px); }
  50% { transform: rotate(-14deg) translate(32px, 18px); }
}

@keyframes tarot-right-idle {
  0%, 100% { transform: rotate(18deg) translate(-28px, 24px); }
  50% { transform: rotate(14deg) translate(-32px, 18px); }
}

.tarot-card-main {
  z-index: 3;
  margin: 0 -20px;
  transform: translateY(-16px);
  animation: tarot-main-float 5s ease-in-out infinite;
}

@keyframes tarot-main-float {
  0%, 100% { transform: translateY(-16px); }
  50% { transform: translateY(-24px); }
}

.tarot-card-back {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #4a2870 0%, #6a4098 40%, #3a2060 100%);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tarot-card-back::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 215, 180, 0.25);
  border-radius: 4px;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4 L56 30 L30 56 L4 30 Z' fill='none' stroke='rgba(255,215,180,0.15)' stroke-width='0.8'/%3E%3C/svg%3E") center/48px repeat;
}

.tarot-card-back::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255, 215, 180, 0.35);
}

.tarot-card-face {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, #faf6f0 0%, #f0ebe3 100%);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid #c8b898;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tarot-art {
  flex: 1;
  width: 100%;
  padding: 8px 8px 0;
}

.tarot-card-info {
  padding: 8px 10px 10px;
  text-align: center;
  border-top: 1px solid rgba(200, 184, 152, 0.4);
  background: rgba(255, 255, 255, 0.5);
}

.tarot-card-info .tarot-symbol {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.tarot-card-info em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.tarot-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.tarot-caption > span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tarot-caption small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hide legacy tarot */
.tarot-scene, .tarot-sparkles, .tarot-row, .tarot-meta, .tarot-deck-hint { display: none !important; }

/* ═══ Astro chart ═══ */
.media-astro {
  background: linear-gradient(165deg, #0e0a18 0%, #1a1230 45%, #120e20 100%);
}

.astro-scene {
  position: relative;
  padding: 28px 24px 24px;
}

.astro-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(139, 104, 184, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.astro-chart-wrap {
  position: relative;
  width: min(280px, 100%);
  margin: 0 auto 20px;
  aspect-ratio: 1;
}

.astro-chart-wrap::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 120, 168, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.astro-svg-premium {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 20px rgba(139, 104, 184, 0.2));
}

.astro-ring-zodiac {
  transform-origin: 120px 120px;
  animation: spin-slow 120s linear infinite;
}

.astro-ring-houses {
  transform-origin: 120px 120px;
  animation: spin-slow 90s linear infinite reverse;
}

.astro-chips {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  margin: 0 auto 10px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.astro-chips span {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: all 0.35s var(--ease);
}

.astro-chips span.active {
  background: rgba(139, 104, 184, 0.35);
  color: #fff;
  box-shadow: 0 2px 12px rgba(139, 104, 184, 0.3);
  transform: none;
}

.astro-caption {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

.astro-stars { display: none; }

/* ═══ Community feed ═══ */
.media-community {
  background: linear-gradient(180deg, #f8f4fc 0%, #fff 100%);
}

.feed-phone {
  padding: 0;
}

.feed-phone-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.9);
}

.feed-stack {
  position: relative;
  padding: 24px 20px 28px;
  min-height: 320px;
}

.feed-card-bg {
  position: absolute;
  top: 32px;
  left: 28px;
  right: 28px;
  height: 200px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(90, 56, 128, 0.06);
  transform: rotate(-2deg) scale(0.96);
  opacity: 0.55;
}

.feed-card-main {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(90, 56, 128, 0.12);
  overflow: hidden;
}

.feed-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
}

.feed-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a878c0, #e078a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 104, 184, 0.3);
}

.feed-author-info {
  flex: 1;
  min-width: 0;
}

.feed-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.feed-author-info time {
  font-size: 11px;
  color: var(--text-3);
}

.feed-topic {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-bg, #f3eeff);
  border-radius: 999px;
}

.feed-image {
  height: 140px;
  background:
    linear-gradient(135deg, rgba(255, 232, 244, 0.8) 0%, rgba(232, 224, 252, 0.9) 50%, rgba(220, 232, 255, 0.8) 100%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(139,104,184,0.15)' stroke-width='1'/%3E%3C/svg%3E") center/60px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.feed-card-main > p {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.feed-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border-light);
}

.feed-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font);
  cursor: default;
}

.feed-action svg {
  width: 18px;
  height: 18px;
}

.feed-action.is-liked {
  color: var(--accent);
}

.feed-action.is-liked svg { fill: var(--accent); stroke: var(--accent); }

/* Hide legacy community */
.media-community .feed-item { display: none !important; }

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .device-stage,
  .tarot-card-left,
  .tarot-card-right,
  .tarot-card-main,
  .astro-ring-zodiac,
  .astro-ring-houses {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .device-stage {
    transform: none;
  }
  .device-stage:hover {
    transform: translateY(-4px);
  }
}

/* ═══ 16:9 demo videos — gradient vignette, no frame ═══ */
.video-169-wrap {
  --vignette-edge: rgba(243, 236, 255, 0.65);
  --vignette-top: rgba(255, 245, 251, 0.75);
  --vignette-bottom: rgba(232, 242, 255, 0.55);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(90, 56, 128, 0.14);
}

/* Hero: full-screen video background */
.video-169-wrap--hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
  background: transparent;
}

.video-169-wrap--hero-bg .video-169-inner {
  inset: 0;
  background: transparent;
  overflow: hidden;
}

.video-169-wrap--hero-bg .video-169-inner video {
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.video-169-wrap--hero-bg .video-169-vignette {
  display: none;
}

.video-169-wrap--hero-bg .showcase-video-shield {
  pointer-events: auto;
}

.video-169-wrap--hero-bg .showcase-video-shield::after {
  display: none;
}

.video-169-wrap--lavender {
  --vignette-edge: rgba(248, 244, 252, 0.7);
  --vignette-top: rgba(250, 246, 255, 0.85);
  --vignette-bottom: rgba(238, 244, 255, 0.55);
}

.video-169-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f3ecff 0%, #fff5fb 45%, #e8f2ff 100%);
}

/* 视频加载中：渐变占位，避免黑屏 */
.video-169-wrap.is-video-loading .video-169-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(243, 236, 255, 0.9) 0%,
    rgba(255, 245, 251, 0.95) 40%,
    rgba(232, 242, 255, 0.9) 80%,
    rgba(243, 236, 255, 0.9) 100%
  );
  background-size: 200% 100%;
  animation: video-shimmer 1.6s ease-in-out infinite;
  pointer-events: none;
}

.video-169-wrap--hero-bg.is-video-loading .video-169-inner::before {
  background: linear-gradient(
    110deg,
    rgba(255, 245, 251, 0.85) 0%,
    rgba(243, 236, 255, 0.9) 50%,
    rgba(232, 242, 255, 0.85) 100%
  );
  background-size: 200% 100%;
}

@keyframes video-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.video-169-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.video-169-inner video.is-active.is-ready,
.video-169-inner video.is-active[poster] {
  opacity: 1;
}

.video-169-inner video.is-active:not(.is-ready):not([poster]) {
  opacity: 0;
}

.video-169-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 105% 95% at 50% 50%, transparent 50%, var(--vignette-edge) 100%),
    linear-gradient(to bottom, var(--vignette-top) 0%, transparent 22%, transparent 78%, var(--vignette-bottom) 100%),
    linear-gradient(to right, var(--vignette-edge) 0%, transparent 10%, transparent 90%, var(--vignette-edge) 100%);
}

.video-169-wrap .showcase-video-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: default;
}

.video-169-wrap .showcase-video-shield::after {
  content: "知心途";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  pointer-events: none;
}

.video-169-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 4px;
  padding: 5px 8px;
  background: rgba(26, 16, 48, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-169-dots button {
  border: none;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s;
}

.video-169-dots button.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.video-169-dots button:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hero {
    --hero-video-h: min(56.25vw, 52vh);
    min-height: max(520px, calc(var(--hero-video-h) + 280px));
    height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .video-169-wrap--hero-bg .video-169-inner {
    inset: 0;
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .video-169-wrap--hero-bg .video-169-inner video {
    object-fit: cover;
    object-position: center center;
  }

  .video-169-wrap--hero-bg .video-169-vignette {
    display: none;
  }
}

/* ═══ 缘分空间 · 银河预览 ═══ */
.fate-galaxy-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, #1a2048 0%, #0d1020 55%, #060810 100%);
  box-shadow: 0 24px 64px rgba(20, 15, 50, 0.35);
}

.fate-galaxy-panel__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 55% 35%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 75% 20%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 25% 65%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 65% 75%, rgba(255, 255, 255, 0.7), transparent);
  animation: fate-stars-twinkle 5s ease-in-out infinite alternate;
}

.fate-galaxy-panel__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #c8b8e8 45%, #8b68b8 100%);
  box-shadow: 0 0 32px rgba(180, 160, 255, 0.55), 0 0 64px rgba(139, 104, 184, 0.25);
  z-index: 2;
}

.fate-galaxy-panel__dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 180, 255, 0.9);
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.8);
  animation: fate-dot-pulse 3s ease-in-out infinite;
}

.fate-galaxy-panel__dot--1 { left: 22%; top: 28%; animation-delay: 0s; }
.fate-galaxy-panel__dot--2 { left: 72%; top: 22%; animation-delay: 0.5s; width: 8px; height: 8px; }
.fate-galaxy-panel__dot--3 { left: 80%; top: 58%; animation-delay: 1s; }
.fate-galaxy-panel__dot--4 { left: 18%; top: 62%; animation-delay: 1.5s; width: 7px; height: 7px; }
.fate-galaxy-panel__dot--5 { left: 42%; top: 18%; animation-delay: 0.8s; width: 6px; height: 6px; }
.fate-galaxy-panel__dot--6 { left: 58%; top: 72%; animation-delay: 1.2s; width: 8px; height: 8px; }

@keyframes fate-stars-twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes fate-dot-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.65; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ═══ Feed Tab 示意 ═══ */
.feed-tabs-mock {
  display: inline-flex;
  gap: 4px;
  margin-top: 20px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(139, 104, 184, 0.08);
  border: 1px solid rgba(139, 104, 184, 0.12);
}

.feed-tabs-mock__tab {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  border-radius: 999px;
}

.feed-tabs-mock__tab.is-active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}
