/* ================================================================
   BUBBLEGUM POP — 泡泡糖波普主题
   设计语言：明亮糖果波普 · 大圆角粗黑描边 · 硬色块偏移投影（贴纸感）
   配色：糖果粉 #FF5FA2 · 薄荷青 #4EC8C8 · 柠檬黄 #FFD23F · 深梅黑 #2A2333
   反 AI 感手法：
     - 纯白实色卡片 + 粗黑描边（3px #2A2333），波普漫画轮廓
     - 黑色硬偏移投影（贴纸阴影），hover 上移并加大偏移
     - 大圆角（14/22/30px）替代任何斜切，圆润可爱
     - 浅粉奶油底 + 极淡彩色波点纹理，通透轻盈，无暗色网格
   字体由 layout 异步加载 Baloo 2 + Nunito
   ================================================================ */

/* ─────────────────────────────────────────────────
   1. :root 全量变量覆盖（彻底盖掉 glass-theme 的蓝紫）
   ───────────────────────────────────────────────── */
:root {
  --primary-color:    #FF5FA2;
  --secondary-color:  #4EC8C8;
  --accent-color:     #FFD23F;
  --success-color:    #3DD68C;
  --warning-color:    #FFB23E;
  --danger-color:     #FF4D6D;

  --bg-primary:    #FFF0F7;
  --bg-secondary:  #FFFFFF;
  --bg-tertiary:   #E8FBFA;

  --text-primary:   #2A2333;
  --text-secondary: #6B5E78;
  --text-tertiary:  #A89BB5;

  --glass-bg:        #FFFFFF;
  --glass-border:    #2A2333;
  --glass-shadow:    none;
  --nav-bg:          rgba(255, 240, 247, 0.92);
  --search-input-bg: #FFFFFF;
  --panel-bg:        #FFFFFF;
  --footer-bg:       #E8FBFA;

  --border-radius-sm: 14px;
  --border-radius-md: 22px;
  --border-radius-lg: 30px;

  --transition: all 0.16s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.2s cubic-bezier(0.34, 1.2, 0.64, 1);

  --gradient-primary:   linear-gradient(135deg, #FF5FA2, #FF4D6D);
  --gradient-secondary: linear-gradient(135deg, #E8FBFA, #FFF0F7);
  --gradient-accent:    linear-gradient(135deg, #FFD23F, #FFB23E);

  --shadow-sm: 4px 4px 0 #2A2333;
  --shadow-md: 6px 6px 0 #2A2333;
  --shadow-lg: 10px 10px 0 #2A2333;

  --bp-ink:     #2A2333;
  --line-color: #2A2333;
}

/* ─────────────────────────────────────────────────
   2. Body：浅粉奶油 + 极淡糖果波点
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif !important;
  background-color: #FFF0F7 !important;
  background-image:
    radial-gradient(circle at 20% 24%, rgba(255, 95, 162, 0.10) 0%, transparent 14%),
    radial-gradient(circle at 78% 64%, rgba(78, 200, 200, 0.10) 0%, transparent 14%),
    radial-gradient(circle at 50% 88%, rgba(255, 210, 63, 0.10) 0%, transparent 14%) !important;
  background-size: 220px 220px, 260px 260px, 240px 240px !important;
  background-attachment: fixed !important;
  color: #2A2333 !important;
}

/* ─────────────────────────────────────────────────
   3. Keyframes
   ───────────────────────────────────────────────── */
@keyframes bp-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
@keyframes bp-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────
   4. 粒子：糖果圆形泡泡
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop .particle {
  background: linear-gradient(135deg, #FF5FA2, #4EC8C8) !important;
  box-shadow: none !important;
  opacity: 0.14 !important;
  border-radius: 50% !important;
  clip-path: none !important;
}

/* ═════════════════════════════════════════════════
   5. 顶部导航：浅粉 + 粗黑硬底边
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-nav {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  flex-direction: column !important;
  padding: 0 !important;
  border-right: none !important;
  border-bottom: 3px solid #2A2333 !important;
  border-radius: 0 !important;
  background: rgba(255, 240, 247, 0.92) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  overflow: visible !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 0 rgba(42, 35, 51, 0.12) !important;
}

body.theme-bubblegum-pop .glass-nav-container {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: 1600px !important;
  height: auto !important;
  padding: 12px 32px !important;
  gap: 24px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* Logo：糖果粉粗黑 Baloo + 圆点糖果 */
body.theme-bubblegum-pop .glass-logo {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #FF5FA2 !important;
  -webkit-text-fill-color: #FF5FA2 !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  padding: 4px 16px 4px 14px !important;
  margin: 0 !important;
  width: auto !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  background: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  flex-shrink: 0 !important;
}
body.theme-bubblegum-pop .glass-logo a {
  color: #FF5FA2 !important;
  -webkit-text-fill-color: #FF5FA2 !important;
}
body.theme-bubblegum-pop .glass-logo::before {
  content: '\25CF';
  margin-right: 8px;
  font-style: normal;
  font-size: 0.7em;
  color: #4EC8C8;
}

/* 主菜单 */
body.theme-bubblegum-pop .glass-nav-menu {
  flex-direction: row !important;
  gap: 6px !important;
  width: auto !important;
  display: flex !important;
  margin: 0 !important;
  list-style: none !important;
  padding: 0 !important;
}
body.theme-bubblegum-pop .glass-nav-menu::before { content: none !important; }

body.theme-bubblegum-pop .glass-nav-link {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  padding: 9px 18px !important;
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  position: relative !important;
}
body.theme-bubblegum-pop .glass-nav-link::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: #4EC8C8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.16s ease;
}
body.theme-bubblegum-pop .glass-nav-link:hover { color: #2A2333 !important; }
body.theme-bubblegum-pop .glass-nav-link:hover::after { transform: scaleX(1); }
body.theme-bubblegum-pop .glass-nav-link.active {
  color: #FFFFFF !important;
  background: #FF5FA2 !important;
  border-color: #2A2333 !important;
  box-shadow: var(--shadow-sm) !important;
}
body.theme-bubblegum-pop .glass-nav-link.active::after { transform: scaleX(0); }

/* 顶部分类条（横向滚动） */
body.theme-bubblegum-pop .glass-nav-categories {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  min-width: 0 !important;
  border-top: none !important;
  padding: 0 !important;
  margin: 0 0 0 8px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}
body.theme-bubblegum-pop .glass-nav-categories::-webkit-scrollbar { display: none; }
body.theme-bubblegum-pop .nav-section-label { display: none !important; }

body.theme-bubblegum-pop .glass-nav-categories .nav-category-list {
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
body.theme-bubblegum-pop .nav-category-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 14px !important;
  border: 2px solid #2A2333 !important;
  border-radius: 999px !important;
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--text-secondary) !important;
  background: #FFFFFF !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
  clip-path: none !important;
}
body.theme-bubblegum-pop .nav-category-link:hover {
  color: #FF5FA2 !important;
  border-color: #2A2333 !important;
  box-shadow: var(--shadow-sm) !important;
}
body.theme-bubblegum-pop .nav-category-link.active {
  color: #FFFFFF !important;
  background: #FF5FA2 !important;
  border-color: #2A2333 !important;
}
body.theme-bubblegum-pop .cat-dot {
  width: 7px; height: 7px;
  border-radius: 50% !important;
  clip-path: none !important;
  background: #4EC8C8;
  flex-shrink: 0;
}

/* 搜索框 */
body.theme-bubblegum-pop .glass-nav-actions {
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  border-top: none !important;
  gap: 8px !important;
  order: 99 !important;
  flex-shrink: 0 !important;
}
body.theme-bubblegum-pop .glass-search-box {
  width: auto !important;
  flex-direction: row !important;
  gap: 0 !important;
}
body.theme-bubblegum-pop .glass-search-input {
  width: 200px !important;
  flex: none !important;
  border-radius: 999px 0 0 999px !important;
  background: var(--search-input-bg) !important;
  border: 2px solid #2A2333 !important;
  border-right: none !important;
  color: #2A2333 !important;
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
}
body.theme-bubblegum-pop .glass-search-input::placeholder {
  color: var(--text-tertiary);
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
body.theme-bubblegum-pop .glass-search-input:focus {
  border-color: #FF5FA2 !important;
  outline: none !important;
}
body.theme-bubblegum-pop .glass-search-btn {
  width: auto !important;
  flex-shrink: 0 !important;
  border-radius: 0 999px 999px 0 !important;
  background: #FF5FA2 !important;
  border: 2px solid #2A2333 !important;
  color: #FFFFFF !important;
  font-size: 0.9rem !important;
  padding: 8px 16px !important;
  transition: var(--transition) !important;
}
body.theme-bubblegum-pop .glass-search-btn:hover {
  background: #FF4D6D !important;
  opacity: 1 !important;
}

/* ─────────────────────────────────────────────────
   6. 主内容区
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop .main-container {
  margin-left: 0 !important;
  padding: 24px 0 !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}
body.theme-bubblegum-pop .main-content > .container {
  max-width: 1600px !important;
  padding: 0 32px !important;
}
body.theme-bubblegum-pop .particles { left: 0 !important; width: 100% !important; }

/* ═════════════════════════════════════════════════
   7. 通用卡片：白底 + 粗黑描边 + 硬偏移投影
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-card {
  background: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
  clip-path: none !important;
}
body.theme-bubblegum-pop .glass-card:hover {
  border-color: #2A2333 !important;
  box-shadow: var(--shadow-md) !important;
  transform: translate(-2px, -2px) !important;
}
body.theme-bubblegum-pop .glass-card-image {
  transition: transform 0.3s ease, filter 0.3s ease !important;
  display: block !important;
}
body.theme-bubblegum-pop .glass-card:hover .glass-card-image {
  transform: scale(1.05) !important;
  filter: saturate(1.15) contrast(1.04) !important;
}
body.theme-bubblegum-pop .glass-card-badge {
  position: absolute !important;
  top: 10px; left: 10px;
  background: #FF5FA2 !important;
  color: #FFFFFF !important;
  border: 2px solid #2A2333 !important;
  border-radius: 999px !important;
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 3px 12px !important;
  clip-path: none !important;
  z-index: 2 !important;
}
body.theme-bubblegum-pop .glass-card-badge.new {
  background: #FFD23F !important;
  color: #2A2333 !important;
}
body.theme-bubblegum-pop .glass-card-category {
  background: #E8FBFA !important;
  border: 2px solid #2A2333 !important;
  color: #2A2333 !important;
  border-radius: 999px !important;
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
}
body.theme-bubblegum-pop .glass-card-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: #2A2333 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
body.theme-bubblegum-pop .glass-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(42, 35, 51, 0.78) 100%) !important;
  border-radius: 0 !important;
}
body.theme-bubblegum-pop .fa-star { color: #FFD23F !important; }

/* 卡片网格 */
body.theme-bubblegum-pop .glass-grid,
body.theme-bubblegum-pop .glass-featured-grid,
body.theme-bubblegum-pop .glass-popular-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
}
body.theme-bubblegum-pop .glass-grid.two-columns {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ═════════════════════════════════════════════════
   8. 节标题：Baloo 粗体 + 彩色下划块
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-section-header {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 10px 16px !important;
  margin: 36px 0 20px !important;
  position: relative !important;
  padding-bottom: 12px !important;
  border-bottom: 3px solid #2A2333 !important;
}
body.theme-bubblegum-pop .glass-section-title,
body.theme-bubblegum-pop .glass-title.h2 {
  font-family: 'Baloo 2', system-ui, cursive !important;
  color: #2A2333 !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: 1.9rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}
body.theme-bubblegum-pop .glass-section-title::before,
body.theme-bubblegum-pop .glass-title.h2::before {
  content: '' !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #FFD23F !important;
  border: 3px solid #2A2333 !important;
  flex-shrink: 0 !important;
}
body.theme-bubblegum-pop .glass-subtitle {
  font-family: 'Nunito', system-ui, sans-serif !important;
  color: var(--text-secondary) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}
body.theme-bubblegum-pop .glass-view-all { margin-left: auto !important; }

body.theme-bubblegum-pop .glass-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  color: #2A2333 !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
body.theme-bubblegum-pop .glass-title.h1,
body.theme-bubblegum-pop .glass-hero-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: 3rem !important;
  color: #2A2333 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  line-height: 1.02 !important;
}
body.theme-bubblegum-pop p { color: var(--text-secondary) !important; }

/* ═════════════════════════════════════════════════
   9. 按钮：糖果粉实底白字 + 粗黑描边 + 硬投影
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-button,
body.theme-bubblegum-pop .glass-button.primary {
  background: #FF5FA2 !important;
  border: 3px solid #2A2333 !important;
  color: #FFFFFF !important;
  border-radius: 999px !important;
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: var(--transition) !important;
  clip-path: none !important;
  padding: 11px 26px !important;
  box-shadow: 4px 4px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .glass-button:hover,
body.theme-bubblegum-pop .glass-button.primary:hover {
  background: #FF4D6D !important;
  color: #FFFFFF !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .glass-button.secondary {
  background: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  color: #FF5FA2 !important;
  box-shadow: 4px 4px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .glass-button.secondary:hover {
  background: #FFF0F7 !important;
  color: #FF5FA2 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .glass-button.accent {
  background: #FFD23F !important;
  color: #2A2333 !important;
}
body.theme-bubblegum-pop .glass-button.accent:hover { background: #FFB23E !important; color: #2A2333 !important; }
body.theme-bubblegum-pop .glass-button.small { font-size: 0.78rem !important; padding: 7px 16px !important; }
body.theme-bubblegum-pop .glass-button.large { font-size: 1.05rem !important; padding: 14px 34px !important; }

/* ─────────────────────────────────────────────────
   10. 通用 hero / 面板（非专属 hero 兜底）
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop .glass-hero-section,
body.theme-bubblegum-pop .glass-panel,
body.theme-bubblegum-pop .glass-section {
  background: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-lg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  clip-path: none !important;
  box-shadow: var(--shadow-md) !important;
  padding: 40px !important;
}
body.theme-bubblegum-pop .glass-hero-overlay {
  background: linear-gradient(90deg, rgba(255,240,247,0.94) 0%, rgba(255,240,247,0.4) 100%) !important;
}
body.theme-bubblegum-pop .hero-accent { color: #FF5FA2 !important; }
body.theme-bubblegum-pop .hero-secondary { color: #4EC8C8 !important; }
body.theme-bubblegum-pop .glass-orb { display: none !important; }

/* ═════════════════════════════════════════════════
   11. Footer：薄荷底 + 粗黑顶边
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .cyber-footer,
body.theme-bubblegum-pop .glass-footer {
  background: #E8FBFA !important;
  border-top: 3px solid #2A2333 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: relative !important;
  margin-top: 60px !important;
}
body.theme-bubblegum-pop .footer-content {
  background: transparent !important;
  padding: 44px 32px 24px !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}
body.theme-bubblegum-pop .footer-section { text-align: left !important; }
body.theme-bubblegum-pop .footer-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  color: #FF5FA2 !important;
  text-shadow: none !important;
  text-transform: none !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}
body.theme-bubblegum-pop .footer-links { list-style: none !important; padding: 0 !important; }
body.theme-bubblegum-pop .footer-links li { margin-bottom: 8px !important; }
body.theme-bubblegum-pop .footer-links a {
  font-family: 'Nunito', system-ui, sans-serif !important;
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}
body.theme-bubblegum-pop .footer-links a:hover { color: #FF5FA2 !important; padding-left: 6px !important; }

/* ─────────────────────────────────────────────────
   12. 移动端面板
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop .mobile-panel {
  background: #FFFFFF !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-left: 3px solid #2A2333 !important;
}
body.theme-bubblegum-pop .panel-header {
  border-bottom: 3px solid #2A2333 !important;
  background: #FFF0F7 !important;
}
body.theme-bubblegum-pop .mobile-link {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  border-radius: 0 !important;
  border-left: 4px solid transparent !important;
  background: transparent !important;
}
body.theme-bubblegum-pop .mobile-link:hover,
body.theme-bubblegum-pop .mobile-link.active {
  background: rgba(255, 95, 162, 0.10) !important;
  border-left-color: #FF5FA2 !important;
  color: #FF5FA2 !important;
}
body.theme-bubblegum-pop .mobile-categories {
  border-top: 1px solid rgba(42, 35, 51, 0.12);
  padding-top: 12px;
  margin-top: 12px;
}
body.theme-bubblegum-pop .panel-close { color: #FF5FA2 !important; border-radius: 50% !important; }
body.theme-bubblegum-pop .panel-close:hover { background: rgba(255, 95, 162, 0.12) !important; }
body.theme-bubblegum-pop .hamburger { color: #FF5FA2 !important; font-size: 1.4rem !important; }

/* ─────────────────────────────────────────────────
   13. 滚动条 / 选中
   ───────────────────────────────────────────────── */
body.theme-bubblegum-pop ::-webkit-scrollbar { width: 10px; height: 10px; }
body.theme-bubblegum-pop ::-webkit-scrollbar-track { background: #FFF0F7; }
body.theme-bubblegum-pop ::-webkit-scrollbar-thumb { background: #FF5FA2; border-radius: 999px; border: 2px solid #FFF0F7; }
body.theme-bubblegum-pop ::-webkit-scrollbar-thumb:hover { background: #FF4D6D; }
body.theme-bubblegum-pop ::selection { background: #FF5FA2; color: #FFFFFF; }
body.theme-bubblegum-pop input:focus,
body.theme-bubblegum-pop textarea:focus,
body.theme-bubblegum-pop select:focus { outline-color: #FF5FA2 !important; }

/* ═════════════════════════════════════════════════
   14. 首页专属 HERO（vh-* = volt home → bubblegum home）大圆角海报
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .vh-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border: 3px solid #2A2333;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
body.theme-bubblegum-pop .vh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) brightness(0.92);
  transform: scale(1.08);
}
/* 糖果渐变罩 */
body.theme-bubblegum-pop .vh-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255,95,162,0.18) 0%, transparent 38%),
    linear-gradient(90deg, rgba(255,240,247,0.96) 0%, rgba(255,240,247,0.72) 55%, rgba(255,240,247,0.36) 100%);
}
body.theme-bubblegum-pop .vh-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 56px;
}
body.theme-bubblegum-pop .vh-hero-text { flex: 1; min-width: 0; }
body.theme-bubblegum-pop .vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #FF5FA2;
  border: 2px solid #2A2333;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
body.theme-bubblegum-pop .vh-title {
  font-family: 'Baloo 2', system-ui, cursive;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #2A2333;
  margin: 0 0 18px;
}
body.theme-bubblegum-pop .vh-title .vh-title-hl {
  color: #FF5FA2;
  display: block;
}
body.theme-bubblegum-pop .vh-desc {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 26px;
}
body.theme-bubblegum-pop .vh-actions { display: flex; gap: 14px; flex-wrap: wrap; }
body.theme-bubblegum-pop .vh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: #FF5FA2;
  color: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: 999px;
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 4px 4px 0 #2A2333;
  transition: var(--transition);
}
body.theme-bubblegum-pop .vh-btn-primary:hover {
  background: #FF4D6D;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #2A2333;
}
body.theme-bubblegum-pop .vh-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: 999px;
  color: #FF5FA2;
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 4px 4px 0 #2A2333;
  transition: var(--transition);
}
body.theme-bubblegum-pop .vh-btn-ghost:hover { background: #FFF0F7; color: #FF5FA2; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #2A2333; }

/* 右：主打封面（大圆角）+ 缩略图轨 */
body.theme-bubblegum-pop .vh-hero-visual {
  flex-shrink: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.theme-bubblegum-pop .vh-hero-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 3px solid #2A2333;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/10;
}
body.theme-bubblegum-pop .vh-hero-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
body.theme-bubblegum-pop .vh-hero-cover:hover img { transform: scale(1.05); }
body.theme-bubblegum-pop .vh-hero-cover-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,95,162,0.32);
  color: #FFFFFF;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
body.theme-bubblegum-pop .vh-hero-cover:hover .vh-hero-cover-play { opacity: 1; }
body.theme-bubblegum-pop .vh-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
body.theme-bubblegum-pop .vh-hero-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  border: 2px solid #2A2333;
  aspect-ratio: 1;
  transition: var(--transition);
}
body.theme-bubblegum-pop .vh-hero-thumb:hover { border-color: #2A2333; box-shadow: var(--shadow-sm); transform: translate(-1px, -1px); }
body.theme-bubblegum-pop .vh-hero-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
body.theme-bubblegum-pop .vh-hero-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,95,162,0.4);
  color: #FFFFFF;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.18s ease;
}
body.theme-bubblegum-pop .vh-hero-thumb:hover .vh-hero-thumb-play { opacity: 1; }

/* ═════════════════════════════════════════════════
   15. 列表页（ap-* 类）
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .ap-list-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 32px;
}
body.theme-bubblegum-pop .ap-list-head { margin-bottom: 22px; }
body.theme-bubblegum-pop .ap-list-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 2.4rem;
  font-weight: 800;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: #2A2333;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
body.theme-bubblegum-pop .ap-list-title-cat { color: #FF5FA2; }
body.theme-bubblegum-pop .ap-list-title-label { color: #2A2333; }
body.theme-bubblegum-pop .ap-list-count {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0;
}
body.theme-bubblegum-pop .ap-cat-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 24px;
  border-bottom: 3px solid #2A2333;
  padding-bottom: 16px;
}
body.theme-bubblegum-pop .ap-cat-track-wrap::-webkit-scrollbar { display: none; }
body.theme-bubblegum-pop .ap-cat-track { display: flex; flex-wrap: wrap; gap: 8px; }
body.theme-bubblegum-pop .ap-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 2px solid #2A2333;
  border-radius: 999px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  clip-path: none;
}
body.theme-bubblegum-pop .ap-cat-pill:hover { color: #FF5FA2; border-color: #2A2333; box-shadow: var(--shadow-sm); }
body.theme-bubblegum-pop .ap-cat-pill.active {
  color: #FFFFFF;
  background: #FF5FA2;
  border-color: #2A2333;
}
body.theme-bubblegum-pop .ap-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
body.theme-bubblegum-pop .ap-game-card {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: var(--border-radius-md);
  clip-path: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
body.theme-bubblegum-pop .ap-game-card:hover {
  border-color: #2A2333;
  box-shadow: var(--shadow-md);
  transform: translate(-2px, -2px);
}
body.theme-bubblegum-pop .ap-card-thumb {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
body.theme-bubblegum-pop .ap-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
body.theme-bubblegum-pop .ap-game-card:hover .ap-card-thumb img {
  transform: scale(1.05);
  filter: saturate(1.15);
}
body.theme-bubblegum-pop .ap-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 0.6rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  background: #FF5FA2;
  color: #FFFFFF;
  border: 2px solid #2A2333;
  border-radius: 999px;
  clip-path: none;
  z-index: 2;
}
body.theme-bubblegum-pop .ap-card-badge.new { background: #FFD23F; color: #2A2333; }
body.theme-bubblegum-pop .ap-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 162, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
body.theme-bubblegum-pop .ap-game-card:hover .ap-card-play { opacity: 1; }
body.theme-bubblegum-pop .ap-play-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: 50%;
  clip-path: none;
  color: #FF5FA2;
  font-size: 1.1rem;
}
body.theme-bubblegum-pop .ap-card-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.theme-bubblegum-pop .ap-card-cat {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF5FA2;
}
body.theme-bubblegum-pop .ap-card-name {
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: #2A2333;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-bubblegum-pop .ap-card-rating { font-size: 0.75rem; }

/* 分页 */
body.theme-bubblegum-pop .ap-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
body.theme-bubblegum-pop .ap-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-secondary);
  background: #FFFFFF;
  border: 2px solid #2A2333;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
}
body.theme-bubblegum-pop .ap-page-btn:hover { color: #FF5FA2; border-color: #2A2333; box-shadow: var(--shadow-sm); }
body.theme-bubblegum-pop .ap-page-btn.active {
  color: #FFFFFF;
  background: #FF5FA2;
  border-color: #2A2333;
}
body.theme-bubblegum-pop .ap-page-ellipsis {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  padding: 0 4px;
}

/* ═════════════════════════════════════════════════
   16. 详情页（ap-detail-* 类）
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .ap-detail-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 48px;
}
body.theme-bubblegum-pop .ap-detail-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: var(--border-radius-lg);
  border: 3px solid #2A2333;
  box-shadow: var(--shadow-md);
}
body.theme-bubblegum-pop .ap-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) brightness(0.92);
  transform: scale(1.08);
}
body.theme-bubblegum-pop .ap-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(78,200,200,0.18) 0%, transparent 40%),
    linear-gradient(90deg, rgba(255,240,247,0.95) 0%, rgba(255,240,247,0.6) 100%);
}
body.theme-bubblegum-pop .ap-detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 40px;
}
body.theme-bubblegum-pop .ap-detail-poster {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  border-radius: var(--border-radius-md);
  border: 3px solid #2A2333;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
body.theme-bubblegum-pop .ap-detail-poster img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
body.theme-bubblegum-pop .ap-detail-play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 162, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
body.theme-bubblegum-pop .ap-detail-poster:hover .ap-detail-play-cover { opacity: 1; }
body.theme-bubblegum-pop .ap-detail-play-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: 50%;
  clip-path: none;
  color: #FF5FA2;
  font-size: 1.4rem;
}
body.theme-bubblegum-pop .ap-detail-info { flex: 1; min-width: 0; }
body.theme-bubblegum-pop .ap-detail-cat {
  display: inline-block;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #FF5FA2;
  border: 2px solid #2A2333;
  border-radius: 999px;
  padding: 4px 14px;
  clip-path: none;
  margin-bottom: 14px;
}
body.theme-bubblegum-pop .ap-detail-title {
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 2.8rem;
  font-weight: 800;
  font-style: normal;
  color: #2A2333;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 14px;
  line-height: 1.02;
}
body.theme-bubblegum-pop .ap-detail-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
body.theme-bubblegum-pop .ap-detail-score {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #2A2333;
  background: #FFD23F;
  border: 2px solid #2A2333;
  border-radius: 999px;
  padding: 2px 12px;
  clip-path: none;
}
body.theme-bubblegum-pop .ap-detail-desc {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 620px;
}
body.theme-bubblegum-pop .ap-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
body.theme-bubblegum-pop .ap-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: #FF5FA2;
  border: 3px solid #2A2333;
  color: #FFFFFF;
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 0.98rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #2A2333;
  transition: var(--transition);
}
body.theme-bubblegum-pop .ap-btn-play:hover {
  background: #FF4D6D;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #2A2333;
  color: #FFFFFF;
}
body.theme-bubblegum-pop .ap-btn-cat {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: #FFFFFF;
  border: 3px solid #2A2333;
  color: #FF5FA2;
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #2A2333;
  transition: var(--transition);
}
body.theme-bubblegum-pop .ap-btn-cat:hover { background: #FFF0F7; color: #FF5FA2; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #2A2333; }
body.theme-bubblegum-pop .ap-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}
body.theme-bubblegum-pop .ap-detail-card {
  background: #FFFFFF;
  border: 3px solid #2A2333;
  border-radius: var(--border-radius-md);
  clip-path: none;
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  margin-bottom: 18px;
}
body.theme-bubblegum-pop .ap-detail-card-title {
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 1.2rem;
  font-weight: 800;
  font-style: normal;
  color: #2A2333;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #2A2333;
}
body.theme-bubblegum-pop .ap-detail-card-accent {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4EC8C8;
  border: 2px solid #2A2333;
  flex-shrink: 0;
  transform: none;
}
body.theme-bubblegum-pop .ap-detail-card-text {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
body.theme-bubblegum-pop .ap-detail-info-list { list-style: none; padding: 0; margin: 0; }
body.theme-bubblegum-pop .ap-detail-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(42, 35, 51, 0.12);
  gap: 12px;
}
body.theme-bubblegum-pop .ap-detail-info-list li:last-child { border-bottom: none; }
body.theme-bubblegum-pop .ap-info-label {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
body.theme-bubblegum-pop .ap-info-value {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: right;
}
body.theme-bubblegum-pop .ap-info-rating { color: #FF5FA2; font-weight: 800; }
body.theme-bubblegum-pop .ap-rec-list { display: flex; flex-direction: column; gap: 10px; }
body.theme-bubblegum-pop .ap-rec-item {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  clip-path: none;
}
body.theme-bubblegum-pop .ap-rec-item:hover {
  background: rgba(255, 95, 162, 0.08);
  border-color: #2A2333;
}
body.theme-bubblegum-pop .ap-rec-thumb {
  position: relative;
  width: 72px;
  height: 54px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  border: 2px solid #2A2333;
}
body.theme-bubblegum-pop .ap-rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
body.theme-bubblegum-pop .ap-rec-item:hover .ap-rec-thumb img { transform: scale(1.08); }
body.theme-bubblegum-pop .ap-rec-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 162, 0.45);
  color: #FFFFFF;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.18s ease;
}
body.theme-bubblegum-pop .ap-rec-item:hover .ap-rec-play { opacity: 1; }
body.theme-bubblegum-pop .ap-rec-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.theme-bubblegum-pop .ap-rec-name {
  font-family: 'Baloo 2', system-ui, cursive;
  font-size: 0.92rem;
  font-weight: 700;
  font-style: normal;
  color: #2A2333;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-bubblegum-pop .ap-rec-cat {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FF5FA2;
}

/* ═════════════════════════════════════════════════
   17. 搜索页（glass-search-* 补充覆盖）
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-search-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
body.theme-bubblegum-pop .glass-search-header { margin-bottom: 28px; }
body.theme-bubblegum-pop .glass-search-header .glass-title.h1 { font-size: 2.4rem; }
body.theme-bubblegum-pop .glass-search-section { margin-bottom: 32px; }
body.theme-bubblegum-pop .glass-search-input-group .glass-search-input {
  background: var(--search-input-bg) !important;
  border: 2px solid #2A2333 !important;
  color: #2A2333 !important;
}
body.theme-bubblegum-pop .glass-results-header {
  padding: 14px 0;
  border-bottom: 3px solid #2A2333;
  margin-bottom: 24px !important;
  text-align: left !important;
}
body.theme-bubblegum-pop .glass-search-tips {
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-md) !important;
  clip-path: none !important;
}
body.theme-bubblegum-pop .glass-no-results-icon,
body.theme-bubblegum-pop .glass-search-icon { color: #FF5FA2 !important; }
body.theme-bubblegum-pop .glass-games-grid .glass-card-media img { height: 160px !important; }

/* ═════════════════════════════════════════════════
   18. 播放页（glass-play-* / glass-game-*）
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .glass-play-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
body.theme-bubblegum-pop .glass-game-player {
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-lg) !important;
  clip-path: none !important;
  box-shadow: var(--shadow-md) !important;
}
body.theme-bubblegum-pop .glass-game-iframe { background: #FFFFFF !important; }
body.theme-bubblegum-pop .glass-meta-value { color: #FF5FA2 !important; }

/* ═════════════════════════════════════════════════
   19. 响应式
   ═════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  body.theme-bubblegum-pop .ap-list-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
  body.theme-bubblegum-pop .glass-grid,
  body.theme-bubblegum-pop .glass-featured-grid,
  body.theme-bubblegum-pop .glass-popular-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 1024px) {
  body.theme-bubblegum-pop .ap-list-grid { grid-template-columns: repeat(3, 1fr); }
  body.theme-bubblegum-pop .vh-hero-visual { width: 340px; }
}
@media (max-width: 992px) {
  body.theme-bubblegum-pop .glass-nav-menu,
  body.theme-bubblegum-pop .glass-nav-categories { display: none !important; }
  body.theme-bubblegum-pop .glass-nav-container { padding: 12px 20px !important; }
  body.theme-bubblegum-pop .glass-search-input { width: 140px !important; }
  body.theme-bubblegum-pop .glass-grid,
  body.theme-bubblegum-pop .glass-featured-grid,
  body.theme-bubblegum-pop .glass-popular-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.theme-bubblegum-pop .main-content > .container { padding: 0 20px !important; }
  body.theme-bubblegum-pop .vh-hero-inner { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 28px; }
  body.theme-bubblegum-pop .vh-hero-visual { width: 100%; }
  body.theme-bubblegum-pop .ap-detail-body { grid-template-columns: 1fr; }
  body.theme-bubblegum-pop .ap-detail-hero-inner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
  body.theme-bubblegum-pop .ap-detail-poster { width: 100%; max-width: 320px; }
  body.theme-bubblegum-pop .ap-detail-title { font-size: 2rem; }
  body.theme-bubblegum-pop .ap-detail-wrap { padding: 0 20px 32px; }
}
@media (max-width: 768px) {
  body.theme-bubblegum-pop .ap-list-wrap { padding: 16px 20px; }
  body.theme-bubblegum-pop .ap-list-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  body.theme-bubblegum-pop .glass-title.h1,
  body.theme-bubblegum-pop .glass-hero-title { font-size: 2rem !important; }
}
@media (max-width: 576px) {
  body.theme-bubblegum-pop .glass-grid,
  body.theme-bubblegum-pop .glass-featured-grid,
  body.theme-bubblegum-pop .glass-popular-grid { grid-template-columns: 1fr !important; }
  body.theme-bubblegum-pop .glass-search-box { display: none !important; }
  body.theme-bubblegum-pop .vh-hero-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* ═════════════════════════════════════════════════
   20. 首页专属 HERO（bgh-* = bubblegum home）波普海报墙居中堆叠
        居中单列：眉标 → 大标题 → 描述 → 双按钮 → 5 连贴纸墙
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .bgh-hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 0 !important;
  margin: 8px 0 48px !important;
  padding: 52px 32px 56px !important;
  position: relative !important;
  background: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden !important;
}
/* 背景极淡糖果波点装饰，强化波普海报底 */
body.theme-bubblegum-pop .bgh-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,95,162,0.10) 0 22px, transparent 23px),
    radial-gradient(circle at 88% 22%, rgba(78,200,200,0.12) 0 26px, transparent 27px),
    radial-gradient(circle at 84% 80%, rgba(255,210,63,0.14) 0 20px, transparent 21px),
    radial-gradient(circle at 16% 82%, rgba(78,200,200,0.10) 0 18px, transparent 19px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
body.theme-bubblegum-pop .bgh-hero > * { position: relative !important; z-index: 1 !important; }

body.theme-bubblegum-pop .bgh-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #2A2333 !important;
  background: #FFD23F !important;
  border: 2px solid #2A2333 !important;
  border-radius: 999px !important;
  padding: 5px 18px !important;
  box-shadow: 4px 4px 0 #2A2333 !important;
  margin-bottom: 22px !important;
}

body.theme-bubblegum-pop .bgh-title {
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: clamp(2.8rem, 7vw, 5.2rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #2A2333 !important;
  margin: 0 0 18px !important;
  max-width: 16ch !important;
  text-shadow: 3px 3px 0 rgba(255,95,162,0.22) !important;
}

body.theme-bubblegum-pop .bgh-desc {
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  line-height: 1.55 !important;
  max-width: 560px !important;
  margin: 0 0 28px !important;
}

body.theme-bubblegum-pop .bgh-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-bottom: 44px !important;
}
body.theme-bubblegum-pop .bgh-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 15px 36px !important;
  background: #FF5FA2 !important;
  color: #FFFFFF !important;
  border: 3px solid #2A2333 !important;
  border-radius: 999px !important;
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
  transition: var(--transition) !important;
}
body.theme-bubblegum-pop .bgh-btn-primary:hover {
  background: #FF4D6D !important;
  color: #FFFFFF !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 8px 8px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .bgh-btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  padding: 15px 32px !important;
  background: #FFFFFF !important;
  color: #FF5FA2 !important;
  border: 3px solid #2A2333 !important;
  border-radius: 999px !important;
  font-family: 'Baloo 2', system-ui, cursive !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
  transition: var(--transition) !important;
}
body.theme-bubblegum-pop .bgh-btn-ghost:hover {
  background: #FFF0F7 !important;
  color: #FF5FA2 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 8px 8px 0 #2A2333 !important;
}

/* 贴纸海报墙：5 连横排，交替微旋转，hover 摆正 + 覆盖播放罩 */
body.theme-bubblegum-pop .bgh-wall {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 920px !important;
  padding-top: 6px !important;
}
body.theme-bubblegum-pop .bgh-wall-tile {
  position: relative !important;
  display: block !important;
  flex: 0 0 150px !important;
  width: 150px !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
  border: 3px solid #2A2333 !important;
  border-radius: var(--border-radius-md) !important;
  background: #FFF0F7 !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
  transition: var(--transition-bounce) !important;
}
body.theme-bubblegum-pop .bgh-wall-tile:nth-child(odd)  { transform: rotate(-5deg) !important; }
body.theme-bubblegum-pop .bgh-wall-tile:nth-child(even) { transform: rotate(4deg) translateY(10px) !important; }
body.theme-bubblegum-pop .bgh-wall-tile:nth-child(3)    { transform: rotate(-2deg) translateY(-6px) scale(1.06) !important; z-index: 2 !important; }
body.theme-bubblegum-pop .bgh-wall-tile:hover {
  transform: rotate(0deg) translate(-2px, -4px) scale(1.07) !important;
  box-shadow: 8px 10px 0 #2A2333 !important;
  z-index: 3 !important;
}
body.theme-bubblegum-pop .bgh-wall-tile img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
body.theme-bubblegum-pop .bgh-wall-play {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 95, 162, 0.42) !important;
  color: #FFFFFF !important;
  font-size: 1.5rem !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}
body.theme-bubblegum-pop .bgh-wall-tile:hover .bgh-wall-play { opacity: 1 !important; }

/* ═════════════════════════════════════════════════
   21. 列表页结构强化（bubblegum 专属波普卡片网格）
        4 列、图在上、信息块为亮色彩条、卡片交替微倾斜
   ═════════════════════════════════════════════════ */
body.theme-bubblegum-pop .ap-game-card:nth-child(4n+1) { transform: rotate(-1deg); }
body.theme-bubblegum-pop .ap-game-card:nth-child(4n+3) { transform: rotate(1deg); }
body.theme-bubblegum-pop .ap-game-card:hover { transform: translate(-2px, -2px) rotate(0deg) !important; }

/* 信息块改为亮色彩条 + 粗顶边，与图分隔出明显波普色块感 */
body.theme-bubblegum-pop .ap-card-info {
  padding: 12px 14px 14px !important;
  background: #FFF0F7 !important;
  border-top: 3px solid #2A2333 !important;
}
body.theme-bubblegum-pop .ap-game-card:nth-child(3n+2) .ap-card-info { background: #E8FBFA !important; }
body.theme-bubblegum-pop .ap-game-card:nth-child(3n+3) .ap-card-info { background: #FFF7DA !important; }
body.theme-bubblegum-pop .ap-card-name {
  font-size: 1.08rem !important;
  white-space: normal !important;
  line-height: 1.12 !important;
}

/* ═════════════════════════════════════════════════
   22. 详情页结构强化（海报更大、信息面板贴纸化、侧栏贴纸块）
   ═════════════════════════════════════════════════ */
/* 海报 hero：粉/薄荷叠加罩（非灰度），加大圆角 */
body.theme-bubblegum-pop .ap-detail-hero-overlay {
  background:
    linear-gradient(115deg, rgba(255,95,162,0.30) 0%, transparent 42%),
    linear-gradient(245deg, rgba(78,200,200,0.26) 0%, transparent 44%),
    linear-gradient(90deg, rgba(255,240,247,0.92) 0%, rgba(255,240,247,0.42) 100%) !important;
}
body.theme-bubblegum-pop .ap-detail-poster {
  width: 320px !important;
  box-shadow: var(--shadow-md) !important;
  transform: rotate(-2deg) !important;
}
body.theme-bubblegum-pop .ap-detail-poster:hover { transform: rotate(0deg) !important; }

/* 信息面板贴纸化：粗描边 + 硬偏移投影，hover 上移 */
body.theme-bubblegum-pop .ap-detail-card {
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition) !important;
}
body.theme-bubblegum-pop .ap-detail-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translate(-2px, -2px) !important;
}
/* 侧栏卡片做成不同糖果底色的贴纸块，交替轻微倾斜 */
body.theme-bubblegum-pop .ap-detail-body > aside .ap-detail-card:nth-of-type(odd) { background: #FFF0F7 !important; }
body.theme-bubblegum-pop .ap-detail-body > aside .ap-detail-card:nth-of-type(even) { background: #E8FBFA !important; }
/* 推荐项做成可点贴纸块（边框常显 + 偏移投影） */
body.theme-bubblegum-pop .ap-rec-item {
  border-color: #2A2333 !important;
  background: #FFFFFF !important;
  box-shadow: 4px 4px 0 #2A2333 !important;
}
body.theme-bubblegum-pop .ap-rec-item:hover {
  background: #FFF0F7 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 #2A2333 !important;
}

/* ═════════════════════════════════════════════════
   23. 新增响应式（bgh-* hero + 列表/详情结构）
   ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  body.theme-bubblegum-pop .ap-detail-poster { width: 280px !important; }
}
@media (max-width: 992px) {
  body.theme-bubblegum-pop .bgh-hero { padding: 40px 24px 44px !important; }
}
@media (max-width: 768px) {
  body.theme-bubblegum-pop .bgh-hero { padding: 32px 18px 36px !important; margin-bottom: 32px !important; }
  body.theme-bubblegum-pop .bgh-actions { margin-bottom: 32px !important; }
  /* 贴纸墙改横向滚动条，避免挤压 */
  body.theme-bubblegum-pop .bgh-wall {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding: 14px 4px 6px !important;
    max-width: 100% !important;
  }
  body.theme-bubblegum-pop .bgh-wall::-webkit-scrollbar { display: none !important; }
  body.theme-bubblegum-pop .bgh-wall-tile { flex: 0 0 120px !important; width: 120px !important; }
  body.theme-bubblegum-pop .bgh-wall-tile:nth-child(even) { transform: rotate(3deg) !important; }
  body.theme-bubblegum-pop .bgh-wall-tile:nth-child(3) { transform: rotate(-2deg) scale(1) !important; }
  /* 列表卡片去倾斜，避免小屏拥挤 */
  body.theme-bubblegum-pop .ap-game-card:nth-child(4n+1),
  body.theme-bubblegum-pop .ap-game-card:nth-child(4n+3) { transform: none; }
}
@media (max-width: 576px) {
  body.theme-bubblegum-pop .ap-list-grid { grid-template-columns: 1fr !important; }
  body.theme-bubblegum-pop .ap-detail-poster { width: 100% !important; max-width: 300px !important; transform: none !important; }
}
