/* ============================================================
   大大小小的九月 · 暖夜（Warm Night）美学
   配色：#2A2840 墨蓝紫 / #F2E8DC 米黄白 / #F5D547 珉珂黄
        / #A8D5BA 薄荷 / #F8B5C0 樱粉 / #9B8FA8 紫灰
   ============================================================ */

@import url("https://fontsapi.zeoseven.com/31/main/result.css");  /* Ma Shan Zheng */
@import url("https://fontsapi.zeoseven.com/264/main/result.css"); /* ZCOOL QingKe HuangYou */
@import url("https://fontsapi.zeoseven.com/265/main/result.css"); /* ZCOOL XiaoWei */
@import url("https://fontsapi.zeoseven.com/285/main/result.css"); /* Noto Serif CJK */
@import url("https://fontsapi.zeoseven.com/332/main/result.css"); /* EB Garamond */
@import url("https://fontsapi.zeoseven.com/521/main/result.css"); /* JetBrains Maple Mono */

/* ==================== 基础 ==================== */
html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  background: #2A2840;
  background-image:
    radial-gradient(at 20% 10%, rgba(155, 143, 168, 0.12) 0%, transparent 50%),
    radial-gradient(at 80% 30%, rgba(245, 213, 71, 0.06) 0%, transparent 50%),
    radial-gradient(at 50% 90%, rgba(168, 213, 186, 0.08) 0%, transparent 50%);
}

/* ==================== 鼠标光晕 ==================== */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
    rgba(245, 213, 71, 0.08) 0%,
    rgba(168, 213, 186, 0.04) 30%,
    transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  will-change: left, top;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ==================== 背景粒子（fixed 装饰星点） ==================== */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #F5D547;
  border-radius: 50%;
  opacity: 0;
  animation: particleTwinkle 4s ease-in-out infinite;
}

@keyframes particleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 0.6; transform: scale(1); }
}

/* ==================== 顶部导航 ==================== */
.logo-mark {
  transition: transform 0.3s ease;
}

.logo-mark:hover {
  transform: translateX(2px);
}

.nav-links a {
  position: relative;
  padding: 0.5rem 1rem;
  letter-spacing: 0.2em;
  color: rgba(242, 232, 220, 0.7);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F5D547;
  background: rgba(245, 213, 71, 0.1);
  box-shadow: 0 0 20px rgba(245, 213, 71, 0.18);
}

.nav-links a.active {
  font-weight: 500;
}

/* ==================== Hero 区 ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 0;
  overflow: hidden;
}

/* 顶部装饰：时间戳 */
.hero-meta {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 0.5s ease-out forwards;
}

/* 主内容（z-10 浮在水波之上） */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

/* 主标艺术字 */
.hero-title {
  font-family: '"Ma Shan Zheng"', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.05em;
}

.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateZ(-5deg);
  color: #F2E8DC;
  animation: titleIn 0.8s ease-out forwards;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  cursor: default;
}

.title-char:hover {
  transform: translateY(-8px) rotateZ(0deg) !important;
  color: #F5D547;
}

.title-char:nth-child(1) { animation-delay: 0.2s; }
.title-char:nth-child(2) { animation-delay: 0.3s; }
.title-char:nth-child(3) { animation-delay: 0.4s; }
.title-char:nth-child(4) { animation-delay: 0.5s; }
.title-char:nth-child(5) { animation-delay: 0.6s; }
.title-char:nth-child(6) { animation-delay: 0.75s; }
.title-char:nth-child(7) { animation-delay: 0.9s; }

/* "九月" 二字：金色 + 微微发光 */
.title-accent {
  background: linear-gradient(135deg, #F5D547 0%, #FFE5A0 50%, #F5D547 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(245, 213, 71, 0.4));
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateZ(0deg);
  }
}

/* 细金线分隔 */
.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F5D547 50%, transparent);
  margin: 2.5rem auto;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease-out forwards;
  position: relative;
}

.hero-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F5D547;
  font-size: 0.5rem;
  background: #2A2840;
  padding: 0 0.5rem;
}

/* 副标 */
.hero-subtitle {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 2.4;
  color: rgba(242, 232, 220, 0.85);
  opacity: 0;
  animation: fadeIn 1s 1.5s ease-out forwards, subtleBreathe 5s 2.5s ease-in-out infinite;
  letter-spacing: 0.08em;
}

@keyframes subtleBreathe {
  0%, 100% { opacity: 0.78; }
  50%      { opacity: 1; }
}

/* 标语行 */
.hero-tagline {
  margin-top: 2.5rem;
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 0.875rem;
  color: rgba(155, 143, 168, 0.9);
  letter-spacing: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease-out forwards;
}

.tag-dot {
  font-size: 0.4rem;
  color: #F5D547;
}

/* ==================== 水面 Canvas + 鱼层 ==================== */
.water-zone {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  pointer-events: auto;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.5s 1.5s ease-out forwards;
  overflow: visible; /* 让跃起的鱼能突破上沿 */
}

.water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fish-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible; /* 鱼跃出水面时不裁剪 */
}

.geo-fish {
  position: absolute;
  width: 84px;
  height: 42px;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(168, 213, 186, 0.6))
          drop-shadow(0 0 24px rgba(245, 213, 71, 0.25));
  will-change: transform, left, top;
}

/* 滚动提示 */
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s 2.2s ease-out forwards;
  transition: opacity 0.3s ease;
}

.scroll-arrow {
  font-size: 1.2rem;
  color: #F5D547;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ==================== 区块通用 ==================== */
.section-container {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  z-index: 5;
}

@media (min-width: 768px) {
  .section-container {
    padding: 8rem 2rem;
  }
}

/* 区块小标题（含序号） */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.label-num {
  font-size: 0.875rem;
  color: #9B8FA8;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(155, 143, 168, 0.3);
  border-radius: 999px;
}

.label-text {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
}

/* 区块内极小分隔（金线） */
.divider-mini {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F5D547, transparent);
  margin: 3rem auto;
  opacity: 0.6;
}

/* 滚动淡入 */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== 视频区 ==================== */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: rgba(42, 40, 64, 0.85);
  border: 2px solid #F5D547;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(245, 213, 71, 0.3);
}

.play-icon {
  color: #F5D547;
  font-size: 1.75rem;
  padding-left: 4px;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(42, 40, 64, 0.95);
  box-shadow: 0 0 50px rgba(245, 213, 71, 0.5);
}

.poster-img {
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.poster-img:hover {
  transform: scale(1.01);
  box-shadow: 0 0 40px rgba(168, 213, 186, 0.2);
}

/* 视频未上线角标 */
.video-pending-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(42, 40, 64, 0.88);
  border: 1px solid rgba(245, 213, 71, 0.55);
  border-radius: 999px;
  color: #F5D547;
  font-family: '"JetBrains Maple Mono"', '"JetBrains Mono"', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  z-index: 10;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: pendingBlink 2.4s ease-in-out infinite;
}

.video-pending-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #F5D547;
  border-radius: 50%;
  animation: dotPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245, 213, 71, 0.8);
}

@keyframes pendingBlink {
  0%, 100% { opacity: 0.92; }
  50%      { opacity: 1; }
}

/* 友好 Toast（替代 alert） */
.site-toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: rgba(54, 51, 82, 0.95);
  color: #F2E8DC;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 213, 71, 0.5);
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 32px rgba(245, 213, 71, 0.18);
  backdrop-filter: blur(10px);
  max-width: 90vw;
  text-align: center;
}

.site-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==================== 工具区 ==================== */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.tool-group-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.status-active {
  background: #A8D5BA;
  box-shadow: 0 0 12px rgba(168, 213, 186, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.status-working {
  background: #F5D547;
  box-shadow: 0 0 12px rgba(245, 213, 71, 0.6);
  animation: dotPulse 2s 0.5s ease-in-out infinite;
}

.status-idle {
  background: #F8B5C0;
  box-shadow: 0 0 8px rgba(248, 181, 192, 0.4);
  opacity: 0.6;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.3); }
}

.tool-status {
  font-size: 0.75rem;
  color: #9B8FA8;
  letter-spacing: 0.05em;
  margin-left: auto;
  opacity: 0.7;
}

.tool-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(54, 51, 82, 0.5);
  border: 1px solid rgba(155, 143, 168, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.tool-item:hover {
  background: rgba(54, 51, 82, 0.9);
  border-color: rgba(245, 213, 71, 0.4);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(245, 213, 71, 0.1);
}

.tool-arrow {
  color: #A8D5BA;
  flex-shrink: 0;
}

.tool-name {
  font-size: 1.0625rem;
  color: #F2E8DC;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.tool-item:hover .tool-name {
  color: #F5D547;
}

.tool-desc {
  font-size: 0.875rem;
  color: #9B8FA8;
  font-style: italic;
  flex: 1;
  min-width: 200px;
}

.tool-cta {
  color: #F8B5C0;
  font-size: 0.875rem;
  font-family: '"EB Garamond"', serif;
  font-style: italic;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.tool-cta:hover {
  color: #F5D547;
}

.tool-pending {
  cursor: default;
}

.tool-list-idle {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-list-idle li {
  padding: 0.5rem 1.25rem;
  color: rgba(248, 181, 192, 0.7);
  font-style: italic;
}

.tool-list-idle .tool-arrow {
  margin-right: 0.5rem;
  color: rgba(248, 181, 192, 0.5);
}

/* ==================== 想法区 ==================== */
.thoughts-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .thoughts-list {
    grid-template-columns: 1fr 1fr;
  }
}

.thought-card {
  display: block;
  padding: 2rem;
  background: rgba(54, 51, 82, 0.5);
  border: 1px solid rgba(155, 143, 168, 0.2);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.thought-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F5D547, #A8D5BA, #F8B5C0, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.thought-card:hover {
  background: rgba(54, 51, 82, 0.9);
  border-color: rgba(245, 213, 71, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.thought-card:hover::before {
  transform: scaleX(1);
}

.thought-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.thought-tag {
  font-size: 0.625rem;
  color: #A8D5BA;
  letter-spacing: 0.2em;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(168, 213, 186, 0.3);
  border-radius: 999px;
}

.thought-title {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1.25rem;
  color: #F2E8DC;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.thought-card:hover .thought-title {
  color: #F5D547;
}

.thought-excerpt {
  font-size: 0.9375rem;
  color: rgba(155, 143, 168, 0.9);
  font-style: italic;
  line-height: 1.7;
}

.thought-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: #F5D547;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.thought-card:hover .thought-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== 联系区 ==================== */
.contact-card {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(54, 51, 82, 0.4);
  border: 1px solid rgba(155, 143, 168, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  position: relative;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #F5D547;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245, 213, 71, 0.3);
}

.contact-email:hover {
  color: #FFE5A0;
  border-bottom-color: #F5D547;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(245, 213, 71, 0.4));
}

.contact-note {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1rem;
  color: rgba(242, 232, 220, 0.7);
  margin-top: 2.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ==================== 脚注 + 数据流装饰 ==================== */
.site-footer {
  position: relative;
  margin-top: 6rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(155, 143, 168, 0.15);
  text-align: center;
}

.footer-decoration {
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 2rem;
  overflow: hidden;
  pointer-events: none;
  font-size: 0.625rem;
  color: rgba(168, 213, 186, 0.3);
  white-space: nowrap;
  letter-spacing: 0.2em;
}

.footer-flow {
  display: inline-block;
  animation: footerScroll 60s linear infinite;
  padding-left: 100%;
}

@keyframes footerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.footer-content {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
}

/* ==================== 链接基础 ==================== */
a {
  text-decoration: none;
  color: inherit;
}

/* ==================== 文章页 ==================== */
.prose-content {
  color: rgba(242, 232, 220, 0.92);
}

.prose-content p {
  font-size: 1.0625rem;
}

.prose-content strong {
  color: #F5D547;
  font-weight: 500;
}

.prose-content em {
  color: #A8D5BA;
  font-style: italic;
}

.prose-content a {
  color: #F8B5C0;
  border-bottom: 1px solid rgba(248, 181, 192, 0.3);
  transition: all 0.3s ease;
}

.prose-content a:hover {
  color: #F5D547;
  border-bottom-color: #F5D547;
}

.prose-content code {
  background: rgba(155, 143, 168, 0.2);
  color: #A8D5BA;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: '"JetBrains Maple Mono"', '"JetBrains Mono"', monospace;
  font-size: 0.875em;
}

/* 文章 h2 章节标题 */
.article-h2 {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1.625rem;
  color: #F2E8DC;
  letter-spacing: 0.08em;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.article-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, #F5D547, #A8D5BA);
  border-radius: 2px;
}

/* 文章章节分隔 */
.article-divider {
  border: none;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 143, 168, 0.4), transparent);
  margin: 3rem auto !important;
  position: relative;
}

.article-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(245, 213, 71, 0.6);
  font-size: 0.5rem;
  background: #2A2840;
  padding: 0 0.5rem;
}

/* 文章列表 */
.article-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.article-list li {
  position: relative;
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.8;
}

.article-list li::before {
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #F5D547;
  font-family: '"JetBrains Maple Mono"', '"JetBrains Mono"', monospace;
  font-size: 0.875rem;
}

ul.article-list li::before {
  content: "▸";
}

ol.article-list {
  counter-reset: art-counter;
}

ol.article-list li::before {
  counter-increment: art-counter;
  content: counter(art-counter, decimal-leading-zero);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* 标题里的高亮（如 "被 AI 拿捏"） */
.title-accent {
  background: linear-gradient(135deg, #F5D547 0%, #FFE5A0 50%, #F5D547 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(245, 213, 71, 0.4));
}

/* 文章结尾备注与落款 */
.article-end-note {
  font-size: 0.9375rem !important;
  color: rgba(155, 143, 168, 0.85);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(155, 143, 168, 0.25);
}

.article-signature {
  text-align: right;
  font-family: '"Ma Shan Zheng"', cursive;
  font-size: 1.25rem !important;
  color: #F5D547;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  filter: drop-shadow(0 0 8px rgba(245, 213, 71, 0.25));
}

/* ==================== 玩玩区：游戏卡片 ==================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.game-card {
  display: block;
  padding: 2rem 1.5rem;
  background: rgba(54, 51, 82, 0.55);
  border: 1px solid rgba(155, 143, 168, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%,
              rgba(245, 213, 71, 0.08),
              transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.game-card:hover:not(.coming-soon) {
  background: rgba(54, 51, 82, 0.9);
  border-color: rgba(245, 213, 71, 0.5);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35),
              0 0 32px rgba(245, 213, 71, 0.18);
}

.game-card:hover:not(.coming-soon)::before {
  opacity: 1;
}

.game-card.coming-soon {
  cursor: not-allowed;
  opacity: 0.65;
  filter: grayscale(0.3);
}

.game-thumb {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(245, 213, 71, 0.35));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.game-card:hover:not(.coming-soon) .game-thumb {
  transform: scale(1.15) translateY(-4px);
}

.game-title {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1.125rem;
  color: #F2E8DC;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.game-card:hover:not(.coming-soon) .game-title {
  color: #F5D547;
}

.game-desc {
  font-size: 0.8125rem;
  color: rgba(155, 143, 168, 0.9);
  font-style: italic;
  line-height: 1.7;
}

.game-status {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-family: '"JetBrains Maple Mono"', '"JetBrains Mono"', monospace;
  font-size: 0.625rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.25em;
}

.game-status.playable {
  background: rgba(168, 213, 186, 0.18);
  color: #A8D5BA;
  border: 1px solid rgba(168, 213, 186, 0.4);
}

.game-status.soon {
  background: rgba(248, 181, 192, 0.15);
  color: #F8B5C0;
  border: 1px solid rgba(248, 181, 192, 0.3);
  animation: pendingBlink 2.4s ease-in-out infinite;
}

/* ==================== 游戏页通用样式 ==================== */
.game-stage {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.game-header {
  text-align: center;
  margin-bottom: 2rem;
}

.game-h1 {
  font-family: '"Ma Shan Zheng"', cursive;
  font-size: 2.5rem;
  color: #F5D547;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(245, 213, 71, 0.35));
}

.game-sub {
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(155, 143, 168, 0.9);
  letter-spacing: 0.1em;
}

.game-panel {
  background: rgba(54, 51, 82, 0.5);
  border: 1px solid rgba(155, 143, 168, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.game-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(42, 40, 64, 0.85);
  border: 1px solid rgba(245, 213, 71, 0.5);
  border-radius: 10px;
  color: #F5D547;
  font-family: '"ZCOOL XiaoWei"', '"Noto Serif CJK"', '"Noto Serif SC"', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.game-btn:hover {
  background: rgba(245, 213, 71, 0.15);
  box-shadow: 0 0 20px rgba(245, 213, 71, 0.25);
  transform: translateY(-2px);
}

.game-btn.secondary {
  border-color: rgba(168, 213, 186, 0.4);
  color: #A8D5BA;
}

.game-btn.secondary:hover {
  background: rgba(168, 213, 186, 0.12);
  box-shadow: 0 0 20px rgba(168, 213, 186, 0.2);
}

/* ==================== 响应式 ==================== */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
  .cursor-glow {
    display: none;
  }
  .hero-meta {
    top: 5rem;
  }
  .hero-tagline {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .water-zone {
    height: 25%;
  }
  .geo-fish {
    width: 40px;
    height: 22px;
  }
  .section-label {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .thoughts-list {
    grid-template-columns: 1fr;
  }
}
