/* =========================================
   MOMOKITTY | Ultimate Trend & Premium CSS
   ========================================= */

/* --- 1. Variables & Base Settings --- */
:root {
  --bg-color: #fafafc;
  --surface-color: rgba(255, 255, 255, 0.7);
  --text-main: #1d1d1f;
  --text-muted: #86868b;
  --accent-pink: #FF6B8B;
  --accent-peach: #FF8E53;
  --accent-blue: #7DD3FC;
  --accent-dark: #000000;
  --ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
  --gradient-main: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-peach) 100%);
}

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

html {
  scroll-behavior: smooth;
  /* 专属猫爪鼠标指针（需要准备一张 momokitty-paw-cursor.png 图片） */
  cursor: url('momokitty-paw-cursor.png'), auto;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* 全局纸张网格纹理 + 弥散光背景 */
  background-color: var(--bg-color);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 107, 139, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(125, 211, 252, 0.08) 0%, transparent 40%),
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 2. Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseRotate {
  0% { transform: scale(1) rotate(15deg); }
  50% { transform: scale(1.1) rotate(5deg); }
  100% { transform: scale(1) rotate(15deg); }
}

@keyframes gradientStroke {
  0% { -webkit-text-stroke-color: var(--accent-pink); }
  50% { -webkit-text-stroke-color: var(--accent-peach); }
  100% { -webkit-text-stroke-color: var(--accent-pink); }
}

/* --- 3. Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s var(--ease-apple);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex; justify-content: space-between; align-items: center; height: 100%;
}

.logo {
  font-weight: 900; font-size: 20px; color: var(--text-main);
  text-decoration: none; letter-spacing: -0.5px;
  text-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

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

.nav-links a {
  text-decoration: none; color: var(--text-main); font-size: 14px;
  font-weight: 600; padding: 8px 16px; border-radius: 20px;
  transition: all 0.3s var(--ease-apple);
}

.nav-links a:hover {
  background: var(--surface-color); color: var(--accent-pink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.highlight-link {
  background: var(--accent-dark) !important; color: #fff !important;
}

.highlight-link:hover {
  background: var(--gradient-main) !important; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 133, 153, 0.4);
}

/* --- 4. Hero Sections (Shared for Index & Story) --- */
.hero, .story-hero {
  padding-top: 180px; padding-bottom: 100px;
  text-align: center; position: relative; overflow: hidden;
}

/* 潮流描边文字动画 */
.hero-title, .story-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: transparent;
  -webkit-text-stroke: 1.5px var(--accent-pink);
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: fadeUp 1s var(--ease-apple) forwards, gradientStroke 5s infinite;
}

.hero-subtitle, .story-subtitle {
  font-size: 1.5rem; color: var(--text-muted); font-weight: 600;
  max-width: 700px; margin: 0 auto 40px auto;
  animation: fadeUp 1s var(--ease-apple) 0.2s forwards; opacity: 0;
}

.cta-group {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 80px;
  animation: fadeUp 1s var(--ease-apple) 0.3s forwards; opacity: 0;
}

.btn-primary, .btn-secondary {
  text-decoration: none; padding: 18px 36px; border-radius: 40px;
  font-weight: 800; font-size: 1rem; transition: all 0.4s var(--ease-apple);
}

.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 10px 20px rgba(255, 133, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 133, 153, 0.5);
}

.btn-secondary {
  background-color: var(--surface-color); color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.8); backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: #fff; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hero-image-wrapper {
  max-width: 800px; margin: 0 auto; border-radius: 40px; position: relative;
  opacity: 0; animation: fadeUp 1s var(--ease-apple) 0.4s forwards, float 6s ease-in-out infinite 1.4s;
}

.hero-image {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 30px 40px rgba(255, 133, 153, 0.25));
}

/* --- 5. Bento Grid Section (Index Page) --- */
.bento-section { padding: 100px 0; position: relative; z-index: 2; }

.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 320px; gap: 24px;
}

.bento-card {
  border-radius: 40px; padding: 40px; text-decoration: none; color: var(--text-main);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease-apple);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.5);
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08), inset 0 0 0 2px rgba(255,255,255,0.8);
}

/* 便当盒色彩 */
.card-snacks { grid-column: span 7; background: linear-gradient(145deg, #FFF0E6 0%, rgba(255,255,255,0.8) 100%); }
.card-beauty { grid-column: span 5; background: linear-gradient(145deg, #F3E8FF 0%, rgba(255,255,255,0.8) 100%); }
.card-home { grid-column: span 5; background: linear-gradient(145deg, #E0F2FE 0%, rgba(255,255,255,0.8) 100%); }
.card-toys {
  grid-column: span 7; border: none; color: #fff;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-peach) 100%);
}

.card-toys p { color: rgba(255,255,255,0.9); }
.card-toys h2 { text-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.tag {
  position: absolute; top: 12px; left: 180px; background: rgba(255,255,255,0.9);
  color: var(--accent-pink); padding: 8px 16px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 900; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 2;
}

/* 潮流巨型水印背景字 */
.bg-text {
  position: absolute; top: -10px; right: -10px;
  font-size: 8rem; font-weight: 900; line-height: 1; text-transform: uppercase;
  color: #000; opacity: 0.03; white-space: nowrap; user-select: none;
  transition: transform 0.6s var(--ease-apple); z-index: 0;
}

.card-toys .bg-text { color: #fff; opacity: 0.15; }
.bento-card:hover .bg-text { transform: translate(-15px, 10px) scale(1.05); }

/* 悬浮商品图 */
.card-img {
  position: absolute; right: -20px; bottom: -20px; height: 90%;
  object-fit: contain; z-index: 1; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  transition: transform 0.6s var(--ease-apple), filter 0.6s ease;
}

.bento-card:hover .card-img {
  transform: scale(1.08) translateY(-10px) rotate(-3deg); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.2));
}
.toy-img { height: 110%; right: -10px; bottom: -30px; }

/* 动态贴纸 */
.trendy-sticker {
  position: absolute; top: 30px; right: 30px; width: 70px; height: 70px;
  background: var(--accent-dark); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; z-index: 3;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); animation: pulseRotate 4s infinite ease-in-out;
}

.card-content { position: relative; z-index: 2; width: 60%; }
.card-content h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.03em; }
.card-content p { font-size: 1.05rem; font-weight: 600; opacity: 0.8; }

/* --- 6. Our Story Page Sections --- */
.story-content { padding: 80px 0; position: relative; z-index: 2; }

/* Z字排版的背景文字 */
.story-row::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  font-size: 12vw; font-weight: 900; color: rgba(255, 107, 139, 0.03);
  text-transform: uppercase; user-select: none; z-index: -1; pointer-events: none;
}
.story-row:nth-child(1)::after { content: 'ORIGIN'; }
.story-row:nth-child(2)::after { content: 'MAGIC'; right: 0; left: auto; }
.story-row:nth-child(3)::after { content: 'GUARD'; }

.story-row { display: flex; align-items: center; gap: 80px; margin-bottom: 120px; position: relative; }
.story-row.reverse { flex-direction: row-reverse; }

.story-text { flex: 1; }
.story-tag {
  display: inline-block; font-size: 0.85rem; font-weight: 900; color: var(--accent-pink);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 107, 139, 0.3);
}

.story-text h2 {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 24px;
  background: linear-gradient(to right, var(--accent-dark), var(--accent-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.story-text p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; font-weight: 600; }

.story-visual { flex: 1; position: relative; }
.visual-placeholder {
  width: 100%; aspect-ratio: 1/1; border-radius: 40px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.5);
  transition: all 0.5s var(--ease-apple);
}
.visual-placeholder .bg-text {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 8rem; opacity: 0.1; color: #fff;
}

.visual-placeholder.bg-pink { background: linear-gradient(145deg, #FFE4E8 0%, #FFB6C1 100%); }
.visual-placeholder.bg-blue { background: linear-gradient(145deg, #E0F2FE 0%, #BAE6FD 100%); }
.visual-placeholder.bg-peach { background: linear-gradient(145deg, #FFF0E6 0%, #FFDBC2 100%); }

.story-row:hover .visual-placeholder {
  transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* --- 7. Philosophy & Quote Sections --- */
.philosophy-section {
  padding: 120px 0; background: linear-gradient(to bottom, transparent, var(--surface-color));
  text-align: center; border-top: 1px solid rgba(255,255,255,0.8); position: relative;
}
.philosophy-section::after, .quote-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
  background: radial-gradient(ellipse at bottom, rgba(255, 107, 139, 0.1) 0%, transparent 60%);
  z-index: -1; opacity: 0.5;
}

.philosophy-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.philosophy-item { flex: 1; transition: transform 0.4s var(--ease-apple); }
.philosophy-item:hover { transform: scale(1.05) translateY(-5px); }
.philosophy-item h3 {
  font-size: 3rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.03em;
  background: linear-gradient(to right, var(--accent-dark), var(--accent-peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.philosophy-item p { font-size: 1.25rem; color: var(--text-muted); font-weight: 600; }
.divider { width: 2px; height: 80px; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent); }

.quote-section { padding: 80px 0 160px 0; position: relative; }
.quote-card {
  background: var(--surface-color); border-radius: 40px; padding: 80px 60px;
  text-align: center; position: relative; z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid rgba(255,255,255,0.8); backdrop-filter: blur(20px);
}
.quote-mark {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-size: 8rem; font-family: Georgia, serif; color: var(--accent-pink); opacity: 0.3; line-height: 1;
}
.quote-card blockquote {
  font-size: 2.5rem; font-weight: 900; line-height: 1.3; letter-spacing: -0.03em;
  color: var(--accent-dark); margin-bottom: 30px; position: relative; z-index: 2;
}
.quote-author { font-size: 1.1rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* 专属好运贴纸 */
.quote-card::before {
  content: 'LUCKY'; position: absolute; top: -20px; right: 20px;
  width: 90px; height: 90px; background: var(--gradient-main); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; letter-spacing: 1px;
  transform: rotate(-15deg); z-index: 3; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  animation: pulseRotate 4s infinite;
}

/* --- 8. Footer --- */
.footer {
  padding: 60px 0; text-align: center; background-color: var(--surface-color);
  color: var(--text-muted); font-size: 1rem; font-weight: 600;
}

/* --- 9. Responsive --- */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .card-snacks, .card-beauty, .card-home, .card-toys { grid-column: span 1; }
  .card-content { width: 100%; }
  .card-img { height: 70%; right: -10px; }
  .bg-text { font-size: 5rem; }

  .story-row, .story-row.reverse { flex-direction: column; gap: 40px; margin-bottom: 80px; }
  .story-text h2 { font-size: 2.2rem; }

  .philosophy-grid { flex-direction: column; gap: 40px; }
  .divider { width: 80px; height: 2px; background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent); }

  .hero-title, .story-title { font-size: 3.5rem; }
  .hero, .story-hero { padding-top: 140px; }
  .quote-card { padding: 60px 30px; }
  .quote-card blockquote { font-size: 1.8rem; }
}

/* --- 10. Scroll Reveal Utilities --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-apple), transform 0.8s var(--ease-apple);
  will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
/* =========================================
   Stores Page Styles (门店页专属门票排版)
   ========================================= */

.store-section {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.store-card {
  display: flex;
  background: var(--surface-color);
  border-radius: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.5s var(--ease-apple);
  position: relative;
}

.store-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* 左侧：视觉图片区 */
.store-visual {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 类似故事页的渐变底色，作为图片加载前的占位 */
}

.store-visual.bg-pink { background: linear-gradient(145deg, #FFE4E8 0%, #FFB6C1 100%); }
.store-visual.bg-blue { background: linear-gradient(145deg, #E0F2FE 0%, #BAE6FD 100%); }
.store-visual.bg-peach { background: linear-gradient(145deg, #FFF0E6 0%, #FFDBC2 100%); }

.store-visual .bg-text {
  font-size: 8rem;
  opacity: 0.15;
  color: #fff;
  z-index: 1;
}

.store-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.8s var(--ease-apple);
}

.store-card:hover .store-img {
  transform: scale(1.05);
}

/* 潮流标签：旗舰店/快闪店 */
.store-badge {
  position: absolute;
  top: 30px; left: 30px;
  background: var(--gradient-main);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.store-badge.bg-dark {
  background: var(--accent-dark);
}

/* 快闪店闪烁动画 */
@keyframes blinkWarning {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.store-badge.blink {
  animation: blinkWarning 1.5s infinite;
}

/* 右侧：门店信息区 */
.store-info {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.store-info h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
  color: var(--text-main);
}

.info-group {
  margin-bottom: 24px;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.store-info p {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.6;
}

.highlight-text {
  color: var(--accent-pink);
}

.store-actions {
  margin-top: 20px;
}

.store-actions .btn-primary {
  padding: 14px 28px;
  font-size: 0.9rem;
}

/* 响应式适配：手机端变成上下结构 */
@media (max-width: 900px) {
  .store-card {
    flex-direction: column;
  }
  .store-visual {
    height: 250px;
  }
  .store-info {
    padding: 40px 30px;
  }
  .store-info h2 {
    font-size: 2rem;
  }
}
/* =========================================
   Stores Page: Exaggerated Ticket Design
   ========================================= */

.store-section {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

/* 核心：登机牌遮罩裁剪技术 (Mask-image) */
.ticket-card {
  display: flex;
  margin-bottom: 60px;

  max-width: 950px; /* 控制最大宽度，觉得宽就改小(如850px)，觉得窄就改大 */
  margin-left: auto; margin-right: auto; /* 让变窄后的登机牌在页面中居中 */

  border-radius: 30px;
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple);
  -webkit-mask:
    radial-gradient(circle at 75% 0%, transparent 20px, black 21px) top left / 75% 51% no-repeat,
    radial-gradient(circle at 75% 100%, transparent 20px, black 21px) bottom left / 75% 51% no-repeat,
    radial-gradient(circle at 0% 0%, transparent 20px, black 21px) top right / 25.5% 51% no-repeat,
    radial-gradient(circle at 0% 100%, transparent 20px, black 21px) bottom right / 25.5% 51% no-repeat;
}

.ticket-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 107, 139, 0.15);
}

/* --- 左侧主票区 (75% 宽度) --- */
.ticket-main {
  flex: 0 0 75%;
  padding: 60px;
  position: relative;
  overflow: hidden;
  border-right: 4px dashed rgba(0,0,0,0.15); /* 门票的虚线撕开处 */
}

.ticket-main.bg-pink { background: linear-gradient(135deg, #FFE4E8 0%, #FFB6C1 100%); }
.ticket-main.bg-blue { background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%); }
.ticket-main.bg-peach { background: linear-gradient(135deg, #FFF0E6 0%, #FFDBC2 100%); }

/* 巨型城市水印 */
.ticket-watermark {
  position: absolute;
  top: -20px; right: -20px;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  opacity: 0.3;
  user-select: none;
  z-index: 1;
}

.ticket-content {
  position: relative;
  z-index: 2;
}

.ticket-badge {
  display: inline-block;
  background: var(--accent-dark);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.ticket-badge.blink {
  background: var(--accent-pink);
  animation: pulseRotate 2s infinite ease-in-out;
}

.ticket-content h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ticket-address {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* 按钮做成类似盖章的感觉 */
.btn-ticket {
  display: inline-block;
  border: 2px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-ticket:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* --- 右侧副票区 (25% 宽度) --- */
.ticket-stub {
  flex: 0 0 25%;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stub-details {
  flex: 1;
}

/* 机打排版字体 */
.mono-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.mono-value {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 24px;
  word-wrap: break-word;
}

.mono-value.highlight {
  color: var(--accent-pink);
  background: rgba(255, 107, 139, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* 假条形码与侧边检票文字 */
.stub-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding-left: 20px;
}

.barcode-lines {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-dark);
  writing-mode: vertical-rl; /* 垂直排版 */
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* 响应式适配 */
@media (max-width: 900px) {
  .ticket-card {
    flex-direction: column;
    /* 手机端把打孔位置改到上下中间 */
    -webkit-mask:
      radial-gradient(circle at 0% 70%, transparent 20px, black 21px) top left / 51% 70% no-repeat,
      radial-gradient(circle at 100% 70%, transparent 20px, black 21px) top right / 51% 70% no-repeat,
      radial-gradient(circle at 0% 0%, transparent 20px, black 21px) bottom left / 51% 30% no-repeat,
      radial-gradient(circle at 100% 0%, transparent 20px, black 21px) bottom right / 51% 30% no-repeat;
  }

  .ticket-main {
    flex: none;
    border-right: none;
    border-bottom: 4px dashed rgba(0,0,0,0.15);
    padding: 40px 30px;
  }

  .ticket-content h2 { font-size: 2.5rem; }
  .ticket-watermark { font-size: 5rem; top: 10px; }

  .ticket-stub {
    flex: none;
    flex-direction: row;
    padding: 30px;
  }

  .stub-barcode {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-left: 0; padding-top: 20px; margin-left: 0; margin-top: 20px;
    writing-mode: horizontal-tb;
  }

  .barcode-lines { writing-mode: horizontal-tb; margin-bottom: 0; margin-right: 20px; }
  .vertical-text { writing-mode: horizontal-tb; }
}
/* =========================================
   Contact Page Styles (联系我们表单页)
   ========================================= */

.contact-section {
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* 左表单大，右信息小 */
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- 左侧表单区 --- */
.contact-form-wrapper {
  background: var(--surface-color);
  padding: 50px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: relative;
}

.contact-form-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* 输入框高级质感设计 */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s var(--ease-apple);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.3);
  font-weight: 500;
}

/* 聚焦时的潮流发光边界 */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 4px rgba(255, 107, 139, 0.15);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
}

/* --- 右侧信息区 (Mini Bento Boxes) --- */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.4s var(--ease-apple);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-card.bg-pink { background: linear-gradient(135deg, #FFE4E8 0%, #fff 100%); }
.info-card.bg-blue { background: linear-gradient(135deg, #E0F2FE 0%, #fff 100%); }
.social-card { background: var(--surface-color); backdrop-filter: blur(10px); }

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.info-link {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-pink);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}

.info-link:hover {
  color: var(--accent-peach);
  text-decoration: underline;
}

/* 社交媒体卡片内的链接排版 */
.social-links {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.social-links a {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-2px);
}

/* 响应式 */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 30px;
  }
}
/* =========================================
   新增优化：滚动条、导航栏状态、占位符增强
   ========================================= */

/* 1. 潮流自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-pink);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-peach);
}

/* 2. 导航栏状态优化 */
.nav-links a {
  position: relative;
}
/* 当前所在页面的文字高亮 */
.nav-links a.active-page {
  color: var(--accent-pink);
  font-weight: 800;
}
.nav-links a.active-page::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent-pink);
  border-radius: 2px;
}
/* 固定的黑色联系按钮 */
.btn-nav-cta {
  background: var(--accent-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-nav-cta:hover {
  background: var(--gradient-main) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 133, 153, 0.4);
}

/* 3. 增强 Story 页面的图片占位符（加入emoji作为默认视觉中心） */
.visual-emoji {
  font-size: 6rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  animation: float 6s ease-in-out infinite;
}

/* 4. Ticket 门票 Mask 兼容性增强 */
.ticket-card {
  /* 增加标准的 mask 属性以兼容更多现代浏览器 */
  mask:
    radial-gradient(circle at 75% 0%, transparent 20px, black 21px) top left / 75% 51% no-repeat,
    radial-gradient(circle at 75% 100%, transparent 20px, black 21px) bottom left / 75% 51% no-repeat,
    radial-gradient(circle at 0% 0%, transparent 20px, black 21px) top right / 25.5% 51% no-repeat,
    radial-gradient(circle at 0% 100%, transparent 20px, black 21px) bottom right / 25.5% 51% no-repeat;
}
@media (max-width: 900px) {
  .ticket-card {
    mask:
      radial-gradient(circle at 0% 70%, transparent 20px, black 21px) top left / 51% 70% no-repeat,
      radial-gradient(circle at 100% 70%, transparent 20px, black 21px) top right / 51% 70% no-repeat,
      radial-gradient(circle at 0% 0%, transparent 20px, black 21px) bottom left / 51% 30% no-repeat,
      radial-gradient(circle at 100% 0%, transparent 20px, black 21px) bottom right / 51% 30% no-repeat;
  }
}
/* =========================================
   MOMOKITTY | 顶级质感与微交互升级 (Pro Update)
   ========================================= */

/* 1. 品牌专属文字选中颜色 */
::selection {
  background-color: var(--accent-pink);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background-color: var(--accent-pink);
  color: #fff;
}

/* 2. 纯 CSS 胶片噪点材质 (覆盖全屏的微弱肌理) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* 确保不会阻挡鼠标点击 */
  z-index: 9999;
  /* 利用 SVG 滤镜生成噪点，极致轻量 */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.6; /* 调节这里控制噪点强弱，0.6 刚刚好 */
  mix-blend-mode: multiply;
}

/* 3. 卡片“流光扫过”反光特效 */
.bento-card::after, .visual-placeholder::after, .info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  /* 一道透明到白色的渐变光束 */
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s var(--ease-apple);
  z-index: 10;
  pointer-events: none;
}
/* 鼠标悬浮时，光束从左滑到右 */
.bento-card:hover::after, .visual-placeholder:hover::after, .info-card:hover::after {
  left: 200%;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 4. 按钮和标题的动态呼吸光晕 */
@keyframes glowPulse {
  0% { box-shadow: 0 10px 20px rgba(255, 133, 153, 0.3); }
  50% { box-shadow: 0 15px 35px rgba(255, 133, 153, 0.5); }
  100% { box-shadow: 0 10px 20px rgba(255, 133, 153, 0.3); }
}

.btn-primary {
  animation: glowPulse 3s infinite ease-in-out;
}
.btn-primary:hover {
  animation: none; /* 悬浮时停止呼吸，交由原本的 hover 逻辑接管 */
}

/* 让 Hero Title 有微弱的发光投影，配合描边更立体 */
.hero-title, .story-title {
  filter: drop-shadow(0 0 20px rgba(255, 107, 139, 0.25));
}

/* 5. 补充：表单输入框的高级交互 */
.contact-form input:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown) {
  /* 当用户输入了内容后，背景微微变白，代表已填写 */
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.1);
}
