/* ============================================================
   个人网站样式 · 花哨但不使用 emoji
   ============================================================ */

@font-face {
  font-family: "Noto Sans SC";
  src: url("../fonts/NotoSansSC.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a14;
  --bg-soft: #12121f;
  --text: #f4f4ff;
  --text-dim: #a6a6c8;
  --pink: #3b82f6;
  --violet: #7c3aed;
  --cyan: #22d3ee;
  --sky: #60a5fa;
  --lime: #a3e635;
  --amber: #fbbf24;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --radius: 22px;
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--violet);
  color: #fff;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--violet), var(--cyan));
  border-radius: 10px;
}

/* 颗粒噪点层 */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* 阅读进度条 */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
}

/* ---------- 导航 ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.35);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: blur(90px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 44vw;
  height: 44vw;
  left: -10vw;
  top: -12vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.75), transparent 65%);
}

.blob-2 {
  width: 38vw;
  height: 38vw;
  right: -8vw;
  top: 4vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent 65%);
  animation-delay: -6s;
}

.blob-3 {
  width: 30vw;
  height: 30vw;
  left: 22vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.65), transparent 65%);
  animation-delay: -12s;
}

.blob-4 {
  width: 18vw;
  height: 18vw;
  right: 18vw;
  bottom: 8vw;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.5), transparent 65%);
  animation-delay: -3s;
}

@keyframes drift {
  from { transform: translate3d(-4%, -4%, 0) scale(1); }
  to   { transform: translate3d(6%, 6%, 0) scale(1.15); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
}

.hero-title {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(100deg, var(--pink) 0%, var(--sky) 28%, var(--cyan) 56%, var(--violet) 100%);
  background-size: 280% 280%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 9s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.hero-role {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--text);
  min-height: 2em;
  margin-bottom: 18px;
}

.hero-role::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 6px;
  vertical-align: -0.12em;
  background: var(--cyan);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, filter 0.35s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--pink), var(--violet));
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.12);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.55);
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
}

.chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(6px, 6px); }
}

/* ---------- 跑马灯 ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08), rgba(34, 211, 238, 0.08));
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 255, 0.55);
}

.marquee-track b {
  color: var(--pink);
  font-size: 1.3rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ---------- 通用区块 ---------- */
.about,
.gallery {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 54px;
}

.section-index {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.section-head p {
  color: var(--text-dim);
}

/* 玻璃卡片 */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-glow);
}

.card-body {
  padding: 30px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-body p {
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* ---------- 介绍区 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: start;
}

.avatar {
  position: relative;
  height: clamp(260px, 38vw, 380px);
  overflow: hidden;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 20, 0.85));
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.card:hover .avatar img {
  transform: scale(1.06);
}

.about-side {
  display: grid;
  gap: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat {
  padding: 26px 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--amber), var(--pink), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.stat span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.timeline {
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 22px 26px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 14px var(--violet);
}

.timeline span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 8px;
}

.timeline p {
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text);
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.16), rgba(139, 92, 246, 0.16), rgba(34, 211, 238, 0.16));
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tags span:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

/* ---------- 照片墙 ---------- */
.wall {
  columns: 3 300px;
  column-gap: 22px;
}

.shot {
  position: relative;
  break-inside: avoid;
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.2));
  transform: translateZ(0);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 20, 0.78));
  opacity: 0;
  transition: opacity 0.5s;
}

.shot figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.shot:hover img {
  transform: scale(1.08);
  filter: saturate(1.25) brightness(1.05);
}

.shot:hover::after,
.shot:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.shot:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 50px rgba(139, 92, 246, 0.4);
}

/* ---------- 页脚 ---------- */
.footer {
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.1));
  padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 80px);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  text-align: center;
}

.footer-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-sub {
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(59, 130, 246, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-note {
  color: rgba(166, 166, 200, 0.6);
  font-size: 0.85rem;
}

.footer-counter {
  color: rgba(166, 166, 200, 0.7);
  font-size: 0.9rem;
}


/* ---------- 灯箱 ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 12, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  max-width: min(88vw, 1080px);
  max-height: 82vh;
  text-align: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(139, 92, 246, 0.3);
}

.lightbox-stage figcaption {
  margin-top: 14px;
  color: var(--text-dim);
}

.lightbox button {
  position: absolute;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lightbox button:hover {
  background: rgba(139, 92, 246, 0.4);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.6);
}

.lightbox-close {
  top: 26px;
  right: 26px;
}

.lightbox-prev {
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ---------- 滚动显现动画 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.gallery .shot:nth-child(2n) {
  transition-delay: 0.08s;
}
.gallery .shot:nth-child(3n) {
  transition-delay: 0.16s;
}

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .nav-links a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    font-size: 0.78rem;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-prev {
    left: 12px;
  }
  .lightbox-next {
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* ---------- 独立页面顶部留白 ---------- */
.page {
  padding-top: 96px;
}

/* 导航当前页高亮 */
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.3);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

/* ---------- 首页入口卡片 ---------- */
.features {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 80px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  position: relative;
  display: block;
  min-height: 280px;
  padding: 44px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -90px;
  top: -110px;
  filter: blur(70px);
  opacity: 0.5;
  transition: opacity 0.5s, transform 0.5s;
}

.feature-card:nth-child(1)::before {
  background: radial-gradient(circle, var(--pink), transparent 65%);
}

.feature-card:nth-child(2)::before {
  background: radial-gradient(circle, var(--cyan), transparent 65%);
}

.feature-card:nth-child(3)::before {
  background: radial-gradient(circle, var(--violet), transparent 65%);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.35);
}

.feature-card:hover::before {
  opacity: 0.9;
  transform: scale(1.2);
}

.feature-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 26px;
  background: linear-gradient(120deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-dim);
  max-width: 420px;
  margin-bottom: 28px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--cyan);
}

.arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}

.feature-card:hover .arrow {
  transform: rotate(45deg) translate(4px, -4px);
}

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

/* ---------- 我喜欢的东西 ---------- */
.likes {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 10vw, 130px);
}

.likes-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.likes .card {
  min-height: 220px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.likes .card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -70px;
  bottom: -90px;
  filter: blur(60px);
  opacity: 0.45;
  transition: opacity 0.5s, transform 0.5s;
}

.likes .card:nth-child(1)::before {
  background: radial-gradient(circle, var(--pink), transparent 65%);
}

.likes .card:nth-child(2)::before {
  background: radial-gradient(circle, var(--cyan), transparent 65%);
}

.likes .card:hover::before {
  opacity: 0.85;
  transform: scale(1.2);
}

.likes .card-body {
  position: relative;
  z-index: 1;
  width: 100%;
}

.likes .card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.likes-placeholder {
  color: var(--text-dim);
  font-size: 1rem;
}

.likes a.card {
  text-decoration: none;
  color: var(--text);
}

.likes .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.likes-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.likes-text {
  flex: 1;
  min-width: 0;
}

.likes-text h3 {
  margin-bottom: 8px;
}

.likes .feature-link {
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (max-width: 560px) {
  .likes .card-body {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

/* ---------- 详情页通用 ---------- */
.page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) 70px;
}

.detail-hero {
  position: relative;
  padding: 150px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.detail-hero .aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: blur(80px);
}

.detail-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.detail-sub {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* 页头乐队照片轮播 */
.band-hero-slider {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 70px rgba(59, 130, 246, 0.35);
  aspect-ratio: 2000 / 1336;
}

.band-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease), transform 1.2s var(--ease);
}

.band-slide-img.show {
  opacity: 1;
  transform: scale(1);
}

.band-slider-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--text-dim);
}

.band-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.band-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.band-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.15);
}

.band-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
  transform: scale(1.2);
}

.band-hero-slider figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.band-hero-slider figcaption img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .band-hero-slider img {
    opacity: 0;
  }
  .band-hero-slider img:first-child {
    opacity: 1;
  }
}

/* 信息列表 */
.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list span {
  color: var(--text-dim);
}

.info-list b {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.band-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

/* 作品列表 */
.work-list {
  list-style: none;
  counter-reset: work;
  display: grid;
  gap: 20px;
}

.work-list li {
  counter-increment: work;
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 22px 30px 22px 22px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.work-list li::before {
  content: counter(work, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(10, 10, 20, 0.72);
  border-radius: 10px;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.work-cover {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.work-body {
  flex: 1;
  min-width: 0;
}

.work-list li:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.28);
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.work-head span {
  font-size: 1.15rem;
  font-weight: 700;
}

.work-head time {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
}

.work-list p {
  color: var(--text-dim);
  margin-bottom: 0;
}

/* 歌曲列表 */
.song-list {
  list-style: none;
  counter-reset: song;
  display: grid;
  gap: 14px;
}

.song-list li {
  counter-increment: song;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.song-list li::before {
  content: counter(song, decimal-leading-zero);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.song-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.song-cover {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.song-name {
  font-weight: 700;
  margin-right: auto;
  margin-left: 14px;
}

.song-album {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* 引用块 */
.quote {
  position: relative;
  padding: 38px 40px;
  font-size: 1.2rem;
  line-height: 1.9;
  border-left: 4px solid var(--cyan);
  color: var(--text);
  margin: 0;
  overflow: hidden;
  transition: border-color 0.4s;
}

/* 引用块动态悬停：扫光 + 呼吸光晕 */
.quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.quote:hover {
  animation: quotePulse 1.8s ease-in-out infinite;
}

.quote:hover::after {
  opacity: 1;
  animation: quoteSweep 1.1s ease-out forwards;
}

@keyframes quoteSweep {
  from { left: -75%; }
  to   { left: 130%; }
}

@keyframes quotePulse {
  0%, 100% {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
  }
  50% {
    border-color: rgba(59, 130, 246, 0.95);
    box-shadow: 0 0 42px rgba(59, 130, 246, 0.5), inset 0 0 26px rgba(34, 211, 238, 0.08);
  }
}

/* 理由列表 */
.reasons {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.reasons li {
  position: relative;
  padding: 16px 22px 16px 46px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
}

.reasons li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
}

/* 场景歌单 */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scene-grid .card-body p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .band-grid {
    grid-template-columns: 1fr;
  }
  .scene-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .work-list li {
    padding: 18px;
    gap: 16px;
  }
  .work-list li::before {
    left: 14px;
    top: 12px;
  }
  .work-cover {
    width: 92px;
    height: 92px;
  }
  .song-list li {
    flex-wrap: wrap;
  }
  .song-album {
    margin-left: 92px;
  }
}

/* ---------- 音乐播放器 ---------- */
.player-room {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 10vw, 130px);
}

.player-card {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr 260px;
  align-items: center;
  gap: 30px;
  padding: 32px;
  border-radius: 26px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.player-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -160px;
  filter: blur(80px);
  opacity: 0.35;
  background: radial-gradient(circle, var(--pink), transparent 65%);
  transition: opacity 0.5s;
  pointer-events: none;
}

.player-card.playing {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 24px 70px rgba(59, 130, 246, 0.28);
}

.player-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vinyl-stage {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 30%, rgba(5, 5, 12, 0.9) 30%),
    repeating-radial-gradient(circle at center, #1a1a26 0 2px, #10101a 2px 4px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 46px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.vinyl-label {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.vinyl-label img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vinyl-hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0a0a14;
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.player-card.playing .vinyl {
  animation: discSpin 12s linear infinite;
}

.cover-plain {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 50px rgba(59, 130, 246, 0.35);
}

.cover-plain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-card.no-vinyl .vinyl {
  display: none;
}

.player-card.no-vinyl .cover-plain {
  display: block;
}

.vinyl-toggle {
  margin-top: 20px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.vinyl-toggle:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

@keyframes discSpin {
  to { transform: rotate(360deg); }
}

.player-main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.player-info h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.player-info p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 20px;
  color: var(--text-dim);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.player-progress input[type="range"],
.player-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

.player-progress input[type="range"] {
  flex: 1;
  min-width: 60px;
}

.player-progress input[type="range"]::-webkit-slider-thumb,
.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.7);
}

.player-progress input[type="range"]::-moz-range-thumb,
.player-volume input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.7);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ctl {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.ctl:hover {
  transform: scale(1.1);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.25);
}

.ctl-play {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border: none;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
  transition: all 0.3s;
}

.ctl-play.active .play-icon {
  border: none;
  width: 7px;
  height: 21px;
  background: #fff;
  box-shadow: 11px 0 0 #fff;
  margin-left: 0;
}

.ctl-mode {
  width: auto;
  min-width: 76px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.ctl-mode.active {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.35);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.player-volume input[type="range"] {
  width: 90px;
}

.player-queue {
  position: relative;
  z-index: 1;
  border-left: 1px solid var(--glass-border);
  padding-left: 26px;
}

.queue-title {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

#playerQueue {
  list-style: none;
  display: grid;
  gap: 10px;
}

#playerQueue li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

#playerQueue li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

#playerQueue li.active {
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.14));
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

#playerQueue img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.queue-text {
  min-width: 0;
}

.queue-name {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-album {
  display: block;
  color: var(--text-dim);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 歌词面板 */
.lyrics-panel {
  margin-top: 26px;
  overflow: hidden;
}

.lyrics-head {
  padding: 18px 30px 0;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.lyrics-body {
  height: 330px;
  overflow-y: auto;
  padding: 26px 10px 46px;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.lyric-block {
  padding: 10px 26px;
  text-align: center;
  transition: transform 0.35s, opacity 0.35s;
}

.lyric-jp {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.6;
  transition: color 0.35s, font-size 0.35s;
}

.lyric-zh {
  color: rgba(166, 166, 200, 0.45);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 4px;
  transition: color 0.35s, font-size 0.35s;
}

.lyric-block.active {
  transform: scale(1.05);
}

.lyric-block.active .lyric-jp {
  font-size: 1.28rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)), var(--song-c1, var(--pink)));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlowLR 4s linear infinite;
}

.lyric-block.active .lyric-zh {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.lyric-empty {
  text-align: center;
  padding: 60px 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)), var(--song-c1, var(--pink)));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlowLR 4s linear infinite;
}

.player-tip {
  margin-top: 16px;
  text-align: center;
  color: rgba(166, 166, 200, 0.55);
  font-size: 0.85rem;
  transition: color 0.4s;
}

.player-tip.show {
  color: var(--cyan);
}

@media (max-width: 960px) {
  .player-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .player-left {
    width: 240px;
    margin: 0 auto;
  }
  .player-progress {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .player-controls {
    justify-content: center;
  }
  .player-queue {
    border-left: none;
    border-top: 1px solid var(--glass-border);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 560px) {
  .player-volume {
    display: none;
  }
  .lyrics-body {
    height: 260px;
  }
}

/* ---------- 照片下方的乐队签名 ---------- */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.82;
  animation: blobFlow 9s ease-in-out infinite alternate, blobHue 7s linear infinite;
}

.bg-blob-1 {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  top: -10vw;
  background: radial-gradient(circle, #3b82f6 0%, #60a5fa 32%, transparent 72%);
  animation-delay: 0s, 0s;
}

.bg-blob-2 {
  width: 40vw;
  height: 40vw;
  right: -10vw;
  top: 8vw;
  background: radial-gradient(circle, #7c3aed 0%, #a78bfa 32%, transparent 72%);
  animation-delay: -3s, -2s;
}

.bg-blob-3 {
  width: 34vw;
  height: 34vw;
  left: 20vw;
  bottom: -12vw;
  background: radial-gradient(circle, #22d3ee 0%, #67e8f9 32%, transparent 72%);
  animation-delay: -6s, -4s;
}

.bg-blob-4 {
  width: 22vw;
  height: 22vw;
  right: 16vw;
  bottom: 6vw;
  background: radial-gradient(circle, #fbbf24 0%, #fde68a 32%, transparent 72%);
  animation-delay: -2s, -5s;
}

@keyframes blobFlow {
  from { transform: translate3d(-4%, -4%, 0) scale(1); }
  to   { transform: translate3d(6%, 6%, 0) scale(1.18); }
}

@keyframes blobHue {
  0%   { filter: blur(72px) hue-rotate(0deg); }
  50%  { filter: blur(72px) hue-rotate(90deg); }
  100% { filter: blur(72px) hue-rotate(0deg); }
}

.site-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 20, 0.32), rgba(10, 10, 20, 0.54) 50%, rgba(10, 10, 20, 0.78));
}

.band-logo-line {
  position: relative;
  z-index: 1;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.band-logo-line::before,
.band-logo-line::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 180px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.band-logo-line::after {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.band-logo-line img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 72vw;
  object-fit: contain;
}

/* ---------- 播放器入口卡片 ---------- */
.player-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 10vw, 130px);
}

.player-cta-body {
  text-align: center;
  padding: 48px 30px;
}

.player-cta-body h3 {
  font-size: 1.6rem;
}

.player-cta-body p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--text-dim);
}

/* ---------- 全屏播放器 ---------- */
.page-full {
  min-height: 100vh;
}

.player-screen {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 88px clamp(20px, 4vw, 60px) 22px;
  box-sizing: border-box;
  overflow: hidden;
}

.player-screen::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 45% at 15% 20%, rgba(59, 130, 246, 0.32), transparent 70%),
    radial-gradient(45% 40% at 85% 15%, rgba(124, 58, 237, 0.28), transparent 70%),
    radial-gradient(50% 45% at 75% 85%, rgba(34, 211, 238, 0.26), transparent 70%);
  filter: blur(80px);
}

.player-top {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.cover-area {
  height: 100%;
  max-height: min(64vh, 620px);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cover-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
}

.player-screen.playing .vinyl {
  animation: discSpin 12s linear infinite;
}

.player-screen.no-vinyl .vinyl {
  display: none;
}

.player-screen.no-vinyl .cover-plain {
  display: block;
}

.cover-plain {
  position: relative;
}

/* 封面渐变切换图层 */
.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.layer.show {
  opacity: 1;
  transform: scale(1);
}

.vinyl-label .layer {
  inset: 7px;
  width: auto;
  height: auto;
  border-radius: 50%;
}

.cover-plain .layer {
  border-radius: 24px;
}

.lyrics-panel {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lyrics-body {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  height: 100%;
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px 10px 30px;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

/* 隐藏歌词滚动条 */
.lyrics-body::-webkit-scrollbar {
  display: none;
}

.lyrics-body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.player-bottom {
  display: grid;
  gap: 12px;
  padding: 16px 22px 14px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.player-track {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.player-track h3 {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)), var(--song-c1, var(--pink)));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlowLR 4s linear infinite;
}

.player-track h3.swap {
  animation: gradientFlowLR 4s linear infinite, titleIn 0.55s var(--ease);
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes gradientFlowLR {
  from { background-position: 200% 0; }
  to   { background-position: 0% 0; }
}

.player-track p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.queue-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.queue-strip::-webkit-scrollbar {
  height: 6px;
}

.queue-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.queue-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.queue-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.queue-chip.active {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.3);
}

.player-progress {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.player-controls {
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .player-screen {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .player-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .cover-area {
    max-height: none;
  }
  .cover-stage {
    max-width: 300px;
  }
  .lyrics-panel {
    height: auto;
  }
  .lyrics-body {
    max-height: 42vh;
    height: 42vh;
  }
}

/* ---------- 全屏模糊背景 ---------- */
.player-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: blur(72px) saturate(1.25);
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.bg-layer.show {
  opacity: 0.5;
}

.player-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.42);
}

/* ---------- 左：专辑封面 ---------- */
.cover-stage {
  max-width: 520px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.cover-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.cover-layer.show {
  opacity: 1;
  transform: scale(1);
}

/* ---------- 右：歌词玻璃面板 ---------- */
.lyrics-panel {
  background: rgba(10, 10, 20, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

/* ---------- 底部控制 ---------- */
.player-transport {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left center right";
  align-items: center;
  gap: 18px;
  padding: 4px 0;
}

.transport-center {
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.icon-btn {
  background: transparent;
  border: none;
  color: rgba(244, 244, 255, 0.72);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s, transform 0.3s, filter 0.3s;
}

.icon-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.55));
}

.icon-play {
  width: 58px;
  height: 58px;
  color: #fff;
}

.icon-play svg {
  width: 42px;
  height: 42px;
}

.pause-icon {
  display: none;
}

.icon-play.active .play-icon {
  display: none;
}

.icon-play.active .pause-icon {
  display: block;
}

.icon-close {
  color: var(--text-dim);
  font-size: 1.6rem;
  line-height: 1;
}

/* 音量悬停条 */
.side-tools {
  grid-area: right;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  justify-self: end;
}

.vol-wrap {
  position: relative;
  display: flex;
}

.vol-pop {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 36px;
  height: 124px;
  background: rgba(18, 18, 31, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 80;
}

.vol-wrap:hover .vol-pop,
.vol-wrap:focus-within .vol-pop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

#playerVolume {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 86px;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(180deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)));
  writing-mode: vertical-lr;
  direction: rtl;
}

#playerVolume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
}

#playerVolume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.7);
}

/* 进度条通栏 */
.player-progress {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* 安装程序式进度条：一条横线，播放时从左到右填充，无小球 */
.seek-wrap {
  position: relative;
  flex: 1;
  height: 18px;
  min-width: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.seek-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.seek-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--song-c1, var(--pink)), var(--song-c2, var(--cyan)), var(--song-c1, var(--pink)));
  background-size: 200% 100%;
  animation: gradientFlowLR 4s linear infinite;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.35);
  pointer-events: none;
}

#playerSeek {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

/* 播放列表抽屉 */
.queue-drawer {
  position: fixed;
  right: 18px;
  bottom: 116px;
  z-index: 90;
  width: 290px;
  max-height: 46vh;
  display: flex;
  flex-direction: column;
  background: rgba(18, 18, 31, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  overflow: hidden;
}

.queue-drawer.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.queue-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 6px 20px;
}

.queue-drawer .queue-title {
  margin-bottom: 0;
}

#playerQueue {
  overflow-y: auto;
  padding: 10px;
  gap: 6px;
}

/* 隐藏播放列表滚动条（保留滚动功能） */
#playerQueue::-webkit-scrollbar {
  display: none;
}

#playerQueue {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 960px) {
  .cover-stage {
    max-width: 280px;
  }
  .lyrics-body {
    max-height: 38vh;
    height: 38vh;
  }
  .queue-drawer {
    width: calc(100vw - 36px);
    right: 18px;
  }
}

/* ---------- 神秘入口 ---------- */
.mystery-entry-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 20px 70px;
}

.mystery-entry-footer {
  padding: 14px 0 0;
}

.mystery-entry-player {
  position: fixed;
  right: 18px;
  bottom: 14px;
  z-index: 95;
  font-size: 0.78rem;
  padding: 7px 18px;
  background: rgba(18, 18, 31, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mystery-entry {
  color: rgba(166, 166, 200, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  padding: 10px 28px;
  border: 1px dashed rgba(166, 166, 200, 0.35);
  border-radius: 999px;
  transition: color 0.4s, border-color 0.4s, box-shadow 0.4s, letter-spacing 0.4s;
}

.mystery-entry:hover {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.35);
  letter-spacing: 0.45em;
}

/* ---------- 神秘页面 ---------- */
.mystery-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* 神秘入口页面隐藏滚动条（保留滚动功能）
   视口滚动条挂在 html 上，类名直接加在 <html> 上 */
.mystery-html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mystery-html::-webkit-scrollbar {
  display: none;
}

.mystery-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(45% 40% at 30% 25%, rgba(59, 130, 246, 0.22), transparent 70%),
    radial-gradient(40% 35% at 75% 70%, rgba(124, 58, 237, 0.2), transparent 70%),
    radial-gradient(50% 45% at 55% 90%, rgba(34, 211, 238, 0.16), transparent 70%);
  filter: blur(70px);
}

.mystery-photo-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 20, 0.48), rgba(10, 10, 20, 0.74)),
    url("../photos/rF4J0xvWaraSUrGKIhkq20.webp");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  pointer-events: none;
}

.mystery-photo-bg.show {
  opacity: 1;
}

.mystery-back {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 10;
  color: rgba(166, 166, 200, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 8px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.mystery-back:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.3);
}

.mystery-chair {
  background: transparent;
  border: none;
  width: 190px;
  color: rgba(244, 244, 255, 0.72);
  cursor: pointer;
  padding: 0;
  animation: chairFloat 4s ease-in-out infinite;
  transition: color 0.4s, filter 0.4s, opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.mystery-chair:hover {
  color: #fff;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.6));
}

.mystery-chair.hide {
  opacity: 0;
  transform: scale(0.86) translateY(10px);
  pointer-events: none;
  animation: none;
}

@keyframes chairFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.mystery-caption {
  margin-top: 30px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.9;
  letter-spacing: 0.14em;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.mystery-caption.hide {
  opacity: 0;
  transform: translateY(10px);
}

.mystery-hint {
  margin-top: 12px;
  color: rgba(166, 166, 200, 0.45);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.mystery-hint.hide {
  opacity: 0;
  transform: translateY(10px);
}

.mystery-video {
  width: min(90vw, 720px);
  margin-top: 46px;
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.mystery-video.show {
  display: block;
  opacity: 1;
  transform: none;
}

.mystery-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.mystery-text {
  margin-top: 34px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.mystery-text.show {
  opacity: 1;
  transform: none;
}

.mystery-line {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 2.1;
  letter-spacing: 0.03em;
  text-align: left;
  margin-bottom: 18px;
  opacity: 0;
}

.mystery-line.show {
  opacity: 1;
  animation: mysteryLineIn 1s var(--ease) forwards;
}

@keyframes mysteryLineIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 播放器入场动画 ---------- */
.page-full {
  animation: pageFadeIn 0.6s var(--ease) both;
}

.player-top {
  animation: riseIn 0.85s var(--ease) 0.1s both;
}

.player-bottom {
  animation: riseIn 0.85s var(--ease) 0.25s both;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 博客页 ---------- */
.blog {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 6vw, 80px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

.post-card {
  position: relative;
  min-height: 240px;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}

.post-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -80px;
  top: -100px;
  filter: blur(70px);
  opacity: 0.5;
  transition: opacity 0.5s, transform 0.5s;
}

.post-card:nth-child(3n+1)::before {
  background: radial-gradient(circle, var(--cyan), transparent 65%);
}

.post-card:nth-child(3n+2)::before {
  background: radial-gradient(circle, var(--violet), transparent 65%);
}

.post-card:nth-child(3n+3)::before {
  background: radial-gradient(circle, var(--pink), transparent 65%);
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.35);
}

.post-card:hover::before {
  opacity: 0.9;
  transform: scale(1.2);
}

.post-date {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--cyan);
  display: block;
  margin-bottom: 18px;
}

.post-card h3 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.post-card p {
  color: var(--text-dim);
  margin-bottom: 26px;
  line-height: 1.9;
}

a.post-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}

.blog-empty {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-empty-title {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  background: linear-gradient(120deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.blog-empty-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

/* ---------- 文章页 ---------- */
.post {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 6vw, 60px);
}

.post-header {
  margin-bottom: 54px;
}

.post-header .post-date {
  font-size: 1rem;
  margin-bottom: 22px;
}

.post-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}

.post-excerpt {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.9;
}

.post-body {
  font-size: 1.06rem;
  line-height: 2.1;
  color: var(--text);
}

.post-body p {
  margin-bottom: 24px;
}

.post-body h2 {
  margin: 52px 0 18px;
  font-size: 1.5rem;
  font-weight: 900;
}

.post-body h3 {
  margin: 40px 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
}

.post-body img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 30px 0;
  border: 1px solid var(--glass-border);
}

.post-body blockquote {
  border-left: 3px solid var(--cyan);
  padding: 4px 0 4px 20px;
  margin: 30px 0;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.post-body code {
  font-family: "Space Grotesk", Consolas, monospace;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.92em;
}

.post-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
