/* ========================================
   皇冠体育·流浪者真人娱乐营地 - 波西米亚嬉皮风格样式
   流苏挂毯式瀑布流布局 (Tassel Tapestry Masonry Layout)
   ======================================== */

/* --- 谷歌字体导入 --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS自定义属性 --- */
:root {
  --ginger-yellow: #f4a261;
  --teal-green: #2a9d8f;
  --terracotta-red: #e76f51;
  --linen-white: #fefae0;
  --dark-brown: #3d2c2c;
  --warm-cream: #f5e6c8;
  --deep-purple: #4a2c5e;
  --font-title: 'Playfair Display', 'STSong', serif;
  --font-body: 'Montserrat', 'Microsoft YaHei', sans-serif;
  --shadow-boho: 0 4px 15px rgba(61, 44, 44, 0.15);
  --border-boho: 2px dashed var(--ginger-yellow);
}

/* --- 全局重置 --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-brown);
  background-color: var(--linen-white);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4a261' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  line-height: 1.8;
  overflow-x: hidden;
}

/* --- 干扰标签隐藏 --- */
.jammer-block {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- 通用容器 --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 导航栏（非sticky） --- */
.bohemian-nav {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #5a3e3e 100%);
  padding: 0;
  position: relative;
  z-index: 100;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ginger-yellow);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
}

.nav-menu li a {
  display: block;
  color: var(--linen-white);
  text-decoration: none;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--ginger-yellow);
  border-bottom-color: var(--ginger-yellow);
}

/* --- Hero全屏视频模块 --- */
#wanderer-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark-brown);
}

#wanderer-hero .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}

#wanderer-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(61,44,44,0.3) 0%, rgba(61,44,44,0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

#wanderer-hero .hero-slogan {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--linen-white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.4;
}

.cta-rope {
  display: inline-block;
  padding: 16px 40px;
  background: var(--teal-green);
  color: var(--linen-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  border: 3px solid var(--ginger-yellow);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42,157,143,0.4);
}

.cta-rope:hover {
  background: var(--terracotta-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231,111,81,0.4);
}

.hero-play-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(244,162,97,0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-play-btn:hover {
  background: var(--ginger-yellow);
}

.hero-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--linen-white);
  margin-left: 3px;
}

/* --- 通用模块样式 --- */
.boho-section {
  padding: 60px 0;
  position: relative;
}

.boho-section:nth-child(even) {
  background-color: rgba(244,162,97,0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--dark-brown);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta-red), var(--ginger-yellow), var(--teal-green));
  border-radius: 2px;
}

.section-title h2 span {
  color: var(--teal-green);
}

.section-title p {
  margin-top: 15px;
  color: #6b5b5b;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 品牌宣言模块 --- */
#manifesto-camp {
  background-image: url('../images/dealer-tent-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

#manifesto-camp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254,250,224,0.92);
}

#manifesto-camp .container {
  position: relative;
  z-index: 1;
}

.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--linen-white);
  padding: 40px;
  border: var(--border-boho);
  border-radius: 8px;
  box-shadow: var(--shadow-boho);
  position: relative;
}

.manifesto-content::before {
  content: '☮';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  background: var(--linen-white);
  padding: 0 15px;
}

.manifesto-content h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--teal-green);
  margin: 25px 0 10px;
}

.manifesto-content p {
  margin-bottom: 15px;
  text-align: justify;
  line-height: 1.9;
}

/* --- 荷官展示模块 --- */
#woodstock-dealers {
  background: linear-gradient(135deg, rgba(244,162,97,0.1) 0%, rgba(42,157,143,0.1) 100%);
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.dealer-card {
  background: var(--linen-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-boho);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  border: 3px solid transparent;
}

.dealer-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--ginger-yellow);
}

.dealer-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 3px dashed var(--ginger-yellow);
}

.dealer-card h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin: 15px 0 5px;
  color: var(--teal-green);
}

.dealer-card .dealer-origin {
  font-size: 0.85rem;
  color: var(--terracotta-red);
  margin-bottom: 8px;
}

.dealer-card .dealer-motto {
  font-style: italic;
  font-size: 0.9rem;
  color: #6b5b5b;
  padding: 0 15px;
  line-height: 1.6;
}

/* --- 明信片评论模块 --- */
#postcard-reviews {
  background-image: url('../images/postcard-wall-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

#postcard-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254,250,224,0.88);
}

#postcard-reviews .container {
  position: relative;
  z-index: 1;
}

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

.postcard-item {
  background: var(--linen-white);
  border: 1px solid #e0d5c0;
  border-radius: 4px;
  padding: 25px;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.postcard-item:hover {
  transform: rotate(-1deg) scale(1.02);
}

.postcard-item::before {
  content: '✉';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.postcard-item .reviewer-name {
  font-weight: 700;
  color: var(--teal-green);
  font-size: 0.95rem;
}

.postcard-item .reviewer-location {
  font-size: 0.8rem;
  color: var(--terracotta-red);
  margin-bottom: 10px;
}

.postcard-item .review-text {
  font-style: italic;
  line-height: 1.7;
  color: #5a4a4a;
}

/* --- 核心游戏入口模块 --- */
#game-campfire {
  padding: 70px 0;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.game-card {
  background: var(--linen-white);
  border: 3px solid var(--ginger-yellow);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-boho);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 60%, rgba(244,162,97,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-green);
}

.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.game-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.game-card p {
  font-size: 0.9rem;
  color: #6b5b5b;
  margin-bottom: 15px;
}

.btn-teal {
  display: inline-block;
  padding: 10px 28px;
  background: var(--teal-green);
  color: var(--linen-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-teal:hover {
  background: var(--terracotta-red);
  transform: scale(1.05);
}

/* --- 在路上文章模块 --- */
#road-stories {
  background: rgba(42,157,143,0.05);
}

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

.article-card {
  background: var(--linen-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-boho);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card .article-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--ginger-yellow), var(--terracotta-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.article-card .article-body {
  padding: 20px;
  flex: 1;
}

.article-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-brown);
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.article-card h3 a:hover {
  color: var(--teal-green);
}

.article-card p {
  font-size: 0.88rem;
  color: #6b5b5b;
  line-height: 1.7;
}

.article-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.article-card .read-more:hover {
  color: var(--terracotta-red);
}

/* --- 音乐节门票注册模块 --- */
#festival-ticket {
  background-image: url('../images/music-festival-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}

#festival-ticket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61,44,44,0.85);
}

#festival-ticket .container {
  position: relative;
  z-index: 1;
}

.ticket-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--warm-cream);
  border: 3px dashed var(--ginger-yellow);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.ticket-wrapper::before,
.ticket-wrapper::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--dark-brown);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket-wrapper::before { left: -18px; }
.ticket-wrapper::after { right: -18px; }

.ticket-wrapper h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--terracotta-red);
  margin-bottom: 10px;
}

.ticket-wrapper .ticket-subtitle {
  color: #6b5b5b;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.ticket-form .form-group {
  margin-bottom: 15px;
}

.ticket-form input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--ginger-yellow);
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--linen-white);
  outline: none;
  transition: border-color 0.3s;
}

.ticket-form input:focus {
  border-color: var(--teal-green);
}

.ticket-form .btn-register {
  width: 100%;
  padding: 14px;
  background: var(--terracotta-red);
  color: var(--linen-white);
  border: none;
  border-radius: 25px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  margin-top: 10px;
}

.ticket-form .btn-register:hover {
  background: var(--teal-green);
  transform: scale(1.03);
}

.ticket-bonus {
  margin-top: 20px;
  padding: 15px;
  background: rgba(42,157,143,0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--teal-green);
  font-weight: 600;
}

/* --- 负责任博彩模块 --- */
#peace-gaming {
  padding: 60px 0;
}

.responsible-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--linen-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-boho);
  border-left: 5px solid var(--teal-green);
}

.responsible-content .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--terracotta-red);
  color: var(--linen-white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.responsible-content h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--teal-green);
  margin: 15px 0 8px;
}

.responsible-content p {
  line-height: 1.8;
  margin-bottom: 10px;
}

.responsible-content a {
  color: var(--terracotta-red);
  text-decoration: underline;
}

/* --- GSC牌照模块 --- */
#celtic-license {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #5a3e3e 100%);
  padding: 60px 0;
  color: var(--linen-white);
}

.license-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.license-inner img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--ginger-yellow);
  margin-bottom: 25px;
}

.license-inner h2 {
  font-family: var(--font-title);
  color: var(--ginger-yellow);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.license-inner .license-number {
  font-size: 1.1rem;
  color: var(--teal-green);
  margin-bottom: 15px;
  font-weight: 600;
}

.license-inner p {
  line-height: 1.8;
  color: rgba(254,250,224,0.85);
}

/* --- FAQ塔罗牌模块 --- */
#tarot-faq {
  padding: 70px 0;
  background: rgba(74,44,94,0.03);
}

.tarot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.tarot-card {
  background: linear-gradient(135deg, var(--deep-purple), #6b3fa0);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--linen-white);
}

.tarot-card .tarot-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tarot-card .tarot-front .tarot-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tarot-card .tarot-front .tarot-name {
  font-family: var(--font-title);
  font-size: 1rem;
}

.tarot-card .tarot-back {
  display: none;
  text-align: left;
}

.tarot-card .tarot-back h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--ginger-yellow);
}

.tarot-card .tarot-back p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(254,250,224,0.9);
}

.tarot-card.flipped {
  background: linear-gradient(135deg, #3d2c5e, #5a3fa0);
}

.tarot-card.flipped .tarot-front {
  display: none;
}

.tarot-card.flipped .tarot-back {
  display: block;
}

.tarot-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(74,44,94,0.3);
}

/* --- 页脚 --- */
.boho-footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #2a1f1f 100%);
  color: var(--linen-white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-family: var(--font-title);
  color: var(--ginger-yellow);
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(244,162,97,0.3);
}

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

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

.footer-col ul li a {
  color: rgba(254,250,224,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--ginger-yellow);
}

.footer-col p {
  color: rgba(254,250,224,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(244,162,97,0.2);
  border-radius: 50%;
  color: var(--ginger-yellow);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--ginger-yellow);
  color: var(--dark-brown);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.payment-icons span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(254,250,224,0.1);
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(254,250,224,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(254,250,224,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(254,250,224,0.5);
}

.footer-bottom .age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--terracotta-red);
  border-radius: 50%;
  color: var(--terracotta-red);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* --- 面包屑导航 --- */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--teal-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
  margin: 0 8px;
}

/* --- 内页通用样式 --- */
.inner-hero {
  background: linear-gradient(135deg, var(--ginger-yellow), var(--terracotta-red));
  padding: 60px 0 40px;
  text-align: center;
  color: var(--linen-white);
}

.inner-hero h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.inner-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.inner-content {
  padding: 40px 0 60px;
}

.inner-content .content-body {
  max-width: 800px;
  margin: 0 auto;
}

.inner-content h2, .inner-content h3 {
  font-family: var(--font-title);
  color: var(--dark-brown);
  margin: 25px 0 12px;
}

.inner-content h2 { font-size: 1.8rem; }
.inner-content h3 { font-size: 1.4rem; color: var(--teal-green); }

.inner-content p {
  margin-bottom: 15px;
  line-height: 1.9;
  text-align: justify;
}

.inner-content img {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: var(--shadow-boho);
}

.inner-content blockquote {
  border-left: 4px solid var(--ginger-yellow);
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(244,162,97,0.08);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #5a4a4a;
}

/* --- 捕梦网摇曳动画 --- */
.dreamcatcher {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.15;
  animation: sway 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* --- 烛光闪烁动画 --- */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.candle-glow {
  animation: flicker 2s ease-in-out infinite;
}

/* --- 淡入动画 --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- 响应式设计 --- */
@media (max-width: 992px) {
  .dealer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-brown);
    flex-direction: column;
    padding: 10px 0;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(254,250,224,0.1);
  }
  #wanderer-hero .hero-slogan {
    font-size: 1.8rem;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
  .dealer-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .postcard-grid {
    grid-template-columns: 1fr;
  }
  .game-cards {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .tarot-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .inner-hero h1 {
    font-size: 1.8rem;
  }
  .manifesto-content {
    padding: 25px 18px;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 15px; }
  .boho-section { padding: 40px 0; }
  #wanderer-hero { min-height: 400px; }
  #wanderer-hero .hero-slogan { font-size: 1.5rem; }
  .cta-rope { padding: 12px 30px; font-size: 1rem; }
}
