/* ============================================
   暗夜人偶馆 - 全站样式表
   CSS前缀: wo-
   干扰标签前缀: doll-
   ============================================ */

/* === 干扰标签隐藏 === */
.doll-jammer-block { display: none !important; }

/* === CSS Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --wo-primary: #1a0a2e;
  --wo-secondary: #2c003e;
  --wo-accent: #ffd700;
  --wo-text: #e0d0f0;
  --wo-link: #c9a0dc;
  --wo-bg-dark: #0d0518;
  --wo-card-bg: rgba(44, 0, 62, 0.6);
  --wo-card-border: rgba(255, 215, 0, 0.25);
  --wo-gold-glow: rgba(255, 215, 0, 0.15);
  --wo-font-title: 'Noto Serif SC', 'Georgia', serif;
  --wo-font-body: 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--wo-font-body);
  background-color: var(--wo-primary);
  color: var(--wo-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--wo-link);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--wo-accent); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wo-font-title);
  color: var(--wo-accent);
  line-height: 1.4;
}

/* === 动画关键帧 === */
@keyframes wo-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wo-glowPulse {
  0%, 100% { box-shadow: 0 0 8px var(--wo-gold-glow); }
  50% { box-shadow: 0 0 20px var(--wo-gold-glow), 0 0 40px rgba(255, 215, 0, 0.08); }
}

@keyframes wo-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wo-animate-in {
  opacity: 0;
  animation: wo-fadeInUp 0.8s ease forwards;
}

/* === 导航栏 === */
#wo-header {
  background: rgba(44, 0, 62, 0.8);
  padding: 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--wo-card-border);
}

.wo-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.wo-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wo-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--wo-accent);
}

.wo-logo-text {
  font-family: var(--wo-font-title);
  font-size: 1.15rem;
  color: var(--wo-accent);
  letter-spacing: 2px;
}

.wo-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.wo-nav-links li a {
  display: block;
  padding: 8px 14px;
  color: var(--wo-accent);
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s;
}

.wo-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--wo-accent);
  transition: width 0.4s ease, left 0.4s ease;
}

.wo-nav-links li a:hover::after,
.wo-nav-links li a.wo-active::after {
  width: 80%;
  left: 10%;
}

/* 汉堡菜单 */
.wo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.wo-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--wo-accent);
  transition: transform 0.3s, opacity 0.3s;
}

.wo-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(26, 10, 46, 0.96);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 60px 24px 24px;
  transition: right 0.35s ease;
  border-left: 1px solid var(--wo-card-border);
}

.wo-mobile-menu.wo-open { right: 0; }

.wo-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--wo-accent);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.wo-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--wo-accent);
  font-size: 1.8rem;
  cursor: pointer;
}

.wo-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.wo-mobile-overlay.wo-open { display: block; }

/* === Hero轮播 === */
.wo-hero-showcase {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--wo-bg-dark);
}

.wo-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.wo-hero-slide.wo-active { opacity: 1; }

.wo-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wo-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px 40px;
  background: linear-gradient(transparent, rgba(13, 5, 24, 0.9));
}

.wo-hero-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.wo-hero-overlay p {
  font-size: 1.1rem;
  max-width: 600px;
  opacity: 0.9;
}

.wo-hero-dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 10px;
}

.wo-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--wo-accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.wo-hero-dot.wo-active { background: var(--wo-accent); }

/* === 通用Section === */
.wo-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 24px;
}

.wo-section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}

.wo-section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--wo-link);
  margin-bottom: 40px;
  font-style: italic;
}

.wo-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wo-accent), transparent);
  margin: 12px auto 0;
}

/* === 卡片系统 === */
.wo-card {
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

.wo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px var(--wo-gold-glow);
}

.wo-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.wo-card-body {
  padding: 20px;
}

.wo-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.wo-card-body p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
}

.wo-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--wo-link);
}

/* === 网格布局 === */
.wo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === 人偶档案室 - 时间线 === */
.wo-profile-archive {
  background: linear-gradient(180deg, var(--wo-bg-dark), var(--wo-primary));
  padding: 60px 0;
}

.wo-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.wo-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--wo-accent), transparent);
  transform: translateX(-50%);
}

.wo-timeline-item {
  position: relative;
  width: 45%;
  padding: 20px;
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  margin-bottom: 30px;
}

.wo-timeline-item:nth-child(odd) { margin-left: 0; }
.wo-timeline-item:nth-child(even) { margin-left: 55%; }

.wo-timeline-item::before {
  content: '';
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wo-accent);
  border: 3px solid var(--wo-primary);
}

.wo-timeline-item:nth-child(odd)::before { right: -32px; }
.wo-timeline-item:nth-child(even)::before { left: -32px; }

.wo-timeline-year {
  font-family: var(--wo-font-title);
  color: var(--wo-accent);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* === 今日爆料墙 === */
.wo-gossip-wall {
  background: var(--wo-primary);
  padding: 60px 0;
}

.wo-gossip-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.wo-gossip-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: background 0.3s;
}

.wo-gossip-item:hover {
  background: rgba(44, 0, 62, 0.4);
}

.wo-gossip-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wo-secondary);
  border: 2px solid var(--wo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wo-font-title);
  color: var(--wo-accent);
  font-size: 0.75rem;
}

.wo-gossip-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.wo-gossip-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* === 作品陈列柜 - 瀑布流 === */
.wo-works-showcase {
  background: linear-gradient(180deg, var(--wo-primary), var(--wo-bg-dark));
  padding: 60px 0;
}

.wo-masonry {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  columns: 3;
  column-gap: 20px;
}

.wo-masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--wo-card-border);
  background: var(--wo-card-bg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wo-masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--wo-gold-glow);
}

.wo-masonry-item img {
  width: 100%;
  display: block;
}

.wo-masonry-caption {
  padding: 14px;
  font-size: 0.9rem;
}

/* === 真面目追踪 === */
.wo-facereveal-tracker {
  background: var(--wo-bg-dark);
  padding: 60px 0;
}

.wo-tracker-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.wo-tracker-main {
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  overflow: hidden;
}

.wo-tracker-main img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.wo-tracker-main .wo-card-body { padding: 24px; }

.wo-tracker-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wo-tracker-mini {
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.3s;
}

.wo-tracker-mini:hover { transform: translateX(4px); }

.wo-tracker-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wo-secondary);
  border: 2px solid var(--wo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* === 口罩女神图鉴 === */
.wo-mask-gallery {
  background: var(--wo-primary);
  padding: 60px 0;
}

.wo-gallery-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wo-gallery-frame {
  position: relative;
  border: 3px solid var(--wo-accent);
  border-radius: 4px;
  padding: 6px;
  background: var(--wo-bg-dark);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wo-glowPulse 4s ease infinite;
}

.wo-gallery-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--wo-gold-glow);
}

.wo-gallery-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

.wo-gallery-label {
  text-align: center;
  padding: 8px 4px;
  font-size: 0.85rem;
  color: var(--wo-accent);
  font-family: var(--wo-font-title);
}

/* === 粉丝手作坊 === */
.wo-fanart-workshop {
  background: linear-gradient(180deg, var(--wo-primary), var(--wo-bg-dark));
  padding: 60px 0;
}

/* === 暗夜茶话会 === */
.wo-community-talk {
  background: var(--wo-bg-dark);
  padding: 60px 0;
}

.wo-poll-box {
  max-width: 700px;
  margin: 0 auto 30px;
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  padding: 24px;
}

.wo-poll-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--wo-accent);
}

.wo-poll-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin-bottom: 8px;
  background: rgba(26, 10, 46, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.wo-poll-option:hover {
  border-color: var(--wo-accent);
  background: rgba(44, 0, 62, 0.8);
}

.wo-poll-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--wo-accent);
  flex-shrink: 0;
}

.wo-poll-option.wo-selected .wo-poll-radio {
  background: var(--wo-accent);
  box-shadow: inset 0 0 0 3px var(--wo-primary);
}

.wo-hot-comments {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.wo-comment-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.wo-comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wo-secondary);
  border: 2px solid var(--wo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--wo-accent);
  flex-shrink: 0;
}

.wo-comment-text {
  font-size: 0.9rem;
  line-height: 1.7;
}

.wo-comment-author {
  font-size: 0.8rem;
  color: var(--wo-accent);
  margin-bottom: 4px;
}

/* === 人偶收藏指南 === */
.wo-collection-guide {
  background: var(--wo-primary);
  padding: 60px 0;
}

.wo-guide-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.wo-guide-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  margin-bottom: 20px;
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wo-guide-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px var(--wo-gold-glow);
}

.wo-guide-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--wo-card-border);
  flex-shrink: 0;
}

.wo-guide-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.wo-guide-info p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.wo-guide-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--wo-accent);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--wo-accent);
  margin-right: 6px;
}

/* === 馆长信箱 === */
.wo-curator-mailbox {
  background: linear-gradient(180deg, var(--wo-primary), var(--wo-bg-dark));
  padding: 60px 0;
}

.wo-mailbox-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wo-mailbox-card {
  background: var(--wo-card-bg);
  border: 1px solid var(--wo-card-border);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wo-mailbox-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px var(--wo-gold-glow);
}

.wo-mailbox-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.wo-mailbox-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.wo-mailbox-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* === 按钮 === */
.wo-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--wo-accent);
  background: var(--wo-secondary);
  color: var(--wo-accent);
  font-family: var(--wo-font-title);
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  text-align: center;
}

.wo-btn:hover {
  background: var(--wo-accent);
  color: var(--wo-primary);
  box-shadow: 0 0 20px var(--wo-gold-glow);
}

.wo-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* === 页脚 === */
#wo-footer {
  background: var(--wo-bg-dark);
  border-top: 1px solid var(--wo-card-border);
  padding: 50px 24px 20px;
}

.wo-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.wo-footer-col h4 {
  font-size: 1rem;
  color: var(--wo-accent);
  margin-bottom: 16px;
  font-family: var(--wo-font-title);
}

.wo-footer-col ul {
  list-style: none;
}

.wo-footer-col ul li {
  margin-bottom: 8px;
}

.wo-footer-col ul li a {
  font-size: 0.88rem;
  color: var(--wo-text);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.wo-footer-col ul li a:hover {
  opacity: 1;
  color: var(--wo-accent);
}

.wo-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.wo-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--wo-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--wo-accent);
  transition: background 0.3s, color 0.3s;
}

.wo-footer-social a:hover {
  background: var(--wo-accent);
  color: var(--wo-primary);
}

.wo-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--wo-text);
  opacity: 0.6;
}

.wo-footer-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.wo-footer-badge {
  padding: 6px 16px;
  border: 1px solid var(--wo-accent);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--wo-accent);
  background: rgba(255, 215, 0, 0.05);
}

.wo-footer-filing {
  margin-top: 10px;
}

.wo-footer-filing a {
  color: var(--wo-text);
  opacity: 0.6;
  font-size: 0.78rem;
  margin: 0 8px;
}

.wo-footer-filing a:hover { opacity: 1; }

/* === 内页通用 === */
.wo-page-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.wo-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.wo-page-hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.wo-page-hero-content p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.wo-page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px;
}

.wo-article-body {
  font-size: 1rem;
  line-height: 2;
}

.wo-article-body p {
  margin-bottom: 20px;
  text-indent: 2em;
}

.wo-article-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--wo-accent);
}

.wo-article-body h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.wo-article-img {
  width: 100%;
  border-radius: 8px;
  margin: 24px 0;
  border: 1px solid var(--wo-card-border);
}

/* === 表单样式 === */
.wo-form-group {
  margin-bottom: 20px;
}

.wo-form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--wo-accent);
  margin-bottom: 6px;
  font-family: var(--wo-font-title);
}

.wo-form-input,
.wo-form-textarea,
.wo-form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(13, 5, 24, 0.8);
  border: 1px solid var(--wo-card-border);
  border-radius: 6px;
  color: var(--wo-text);
  font-size: 0.95rem;
  font-family: var(--wo-font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wo-form-input:focus,
.wo-form-textarea:focus,
.wo-form-select:focus {
  outline: none;
  border-color: var(--wo-accent);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
}

.wo-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.wo-form-select option {
  background: var(--wo-primary);
  color: var(--wo-text);
}

/* === 火漆动画 === */
@keyframes wo-sealStamp {
  0% { transform: scale(0) rotate(-30deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.wo-seal-animation {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #8b0000, #5c0000);
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wo-font-title);
  color: var(--wo-accent);
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.5);
}

.wo-seal-animation.wo-show {
  display: flex;
  animation: wo-sealStamp 0.6s ease forwards;
}

/* === 面包屑 === */
.wo-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 0.85rem;
}

.wo-breadcrumb a {
  color: var(--wo-link);
}

.wo-breadcrumb span {
  color: var(--wo-text);
  opacity: 0.6;
  margin: 0 6px;
}

/* === 响应式 === */
@media (max-width: 1024px) {
  .wo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wo-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .wo-masonry { columns: 2; }
  .wo-tracker-grid { grid-template-columns: 1fr; }
  .wo-footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wo-nav-links { display: none; }
  .wo-hamburger { display: flex; }
  .wo-mobile-menu { display: block; }

  .wo-hero-showcase { height: 60vh; min-height: 380px; }
  .wo-hero-overlay h2 { font-size: 1.5rem; }
  .wo-hero-overlay p { font-size: 0.95rem; }

  .wo-section { padding: 40px 16px; }
  .wo-section-title { font-size: 1.4rem; }

  .wo-grid-2, .wo-grid-3 { grid-template-columns: 1fr; }
  .wo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .wo-masonry { columns: 1; }
  .wo-mailbox-grid { grid-template-columns: 1fr; }

  .wo-timeline::before { left: 20px; }
  .wo-timeline-item { width: calc(100% - 50px); margin-left: 50px !important; }
  .wo-timeline-item::before { left: -36px !important; right: auto !important; }

  .wo-guide-item { flex-direction: column; }
  .wo-guide-img { width: 100%; height: 200px; }

  .wo-footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .wo-page-hero { height: 260px; }
  .wo-page-hero-content h1 { font-size: 1.6rem; }
}

@media (max-width: 360px) {
  html { font-size: 14px; }
  .wo-gallery-grid { grid-template-columns: 1fr; }
  .wo-grid-4 { grid-template-columns: 1fr; }
}
