/* =====================================================
   Theme 10: Purple Fantasy Starry - Components
   紫色梦幻星空风 - 组件样式与特效
   ===================================================== */

/* ============ 星空画布层 ============ */
.hero-stars-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============ 广告区星空 ============ */
.hero-banner {
  position: relative;
}

.hero-glow-layer {
  background: radial-gradient(circle at 50% 20%, rgba(224,64,251,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,234,0,0.05) 0%, transparent 40%);
}

/* ============ 标题星空风 ============ */
.hero-title {
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255,234,0,0.3), 0 2px 4px rgba(0,0,0,0.3);
}

/* ============ 按钮梦幻风格 ============ */
.btn-register {
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255,234,0,0.3);
}

.btn-register:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(255,234,0,0.5);
}

.btn-download {
  box-shadow: 0 0 8px rgba(224,64,251,0.2);
}

.btn-download:hover {
  box-shadow: 0 0 15px rgba(224,64,251,0.4);
}

/* ============ 导航栏梦幻 ============ */
.site-header {
  border-bottom: 1px solid rgba(224,64,251,0.15);
}

.nav-menu a {
  font-weight: 600;
}

.nav-menu a::after {
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #E040FB, #FFEA00);
}

/* ============ 卡片梦幻风格 ============ */
.post-card {
  background: rgba(46,0,62,0.6);
  border: 1px solid rgba(224,64,251,0.1);
  backdrop-filter: blur(10px);
}

.post-card:hover {
  border-color: rgba(224,64,251,0.2);
  box-shadow: 0 0 20px rgba(224,64,251,0.1);
}

/* ============ 页脚CTA星空 ============ */
.footer-cta-banner {
  background: linear-gradient(180deg, #1A0033 0%, #2E003E 100%);
  border-top: 1px solid rgba(224,64,251,0.1);
}

/* ============ 滚动提示 ============ */
.scroll-hint .scroll-arrow {
  background: rgba(255,234,0,0.1);
  border: 1px solid rgba(255,234,0,0.3);
  box-shadow: 0 0 10px rgba(255,234,0,0.1);
}

/* ============ 侧边栏widget ============ */
.widget {
  background: rgba(46,0,62,0.6);
  border: 1px solid rgba(224,64,251,0.1);
  backdrop-filter: blur(10px);
}

.widget-title {
  border-bottom: 1px solid rgba(224,64,251,0.2);
  color: var(--color-heading);
}

/* ============ 文章内CTA梦幻 ============ */
.in-content-cta {
  background: linear-gradient(135deg, #2E003E 0%, #1A0033 100%);
  border: 1px solid rgba(224,64,251,0.15);
}

/* ============ 移动端FAB ============ */
.fab-register {
  box-shadow: 0 0 15px rgba(255,234,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,234,0,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,234,0,0); }
}

/* ============ 文章标签 ============ */
.hero-tag {
  box-shadow: 0 0 5px rgba(224,64,251,0.1);
}

.hero-tag:hover {
  box-shadow: 0 0 10px rgba(224,64,251,0.2);
}

/* ============ 自定义滚动条 ============ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1A0033;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #E040FB, #FFEA00);
  border-radius: 4px;
}

/* ============ 响应式微调 ============ */
@media (max-width: 767px) {
  .hero-title {
    text-shadow: 0 0 10px rgba(255,234,0,0.2);
  }
}

/* === 赌场装饰增强 (电光紫) [casino-enhance] === */

/* SVG装饰可见度提升 */
.hero-casino-decor svg {
  color: rgba(224,64,251,0.12);
  opacity: 0.6;
  filter: drop-shadow(0 0 20px rgba(255,234,0,0.10));
}

/* 装饰层光晕 */
.hero-casino-decor::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,234,0,0.10) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 扑克牌花色散布 */
.hero-casino-decor::before {
  content: '♠ ♥ ♦ ♣ ♠ ♥ ♦ ♣';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 2rem;
  letter-spacing: 1.5rem;
  color: rgba(224,64,251,0.12);
  opacity: 0.3;
  pointer-events: none;
  word-spacing: 2rem;
}

/* 页脚三栏增强 */
.footer-nav-title {
  color: #fff;
  border-bottom-color: var(--color-secondary);
}

.footer-nav-list a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-nav-list a:hover {
  color: #fff;
  padding-left: 4px;
}

/* 页脚CTA横幅 */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,234,0,0.10);
}

/* 内页底部CTA */
.page-bottom-cta {
  background: linear-gradient(135deg, var(--color-primary), rgba(0,0,0,0.3));
  border-left: 4px solid var(--color-secondary);
}

/* 面包屑 */
.page-breadcrumb a {
  color: var(--color-secondary);
}

/* FAQ手风琴 */
.page-body details {
  border-left: 3px solid rgba(255,234,0,0.10);
}

/* 联系卡片 */
.contact-card {
  border-top: 3px solid var(--color-secondary);
}


/* ============ Hero & Navigation — Electric Music Theme ============ */
/* Auto-generated by batch_theme_hero_css.php */

/* Navigation Glass */
.site-header {
  background: rgba(20,0,20,0.9);
  border-bottom: 1px solid rgba(233,30,99,0.1);
}

.brand-icon { color: #F48FB1; }

.nav-link:hover { color: #F48FB1; }
.nav-link::after { background: #F48FB1; }

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F48FB140, transparent);
  z-index: 3;
}

.hero-stats-bar {
  background: rgba(156,39,176,0.04);
  border-color: rgba(233,30,99,0.1);
}

.stat-number { color: #F48FB1; }
.stat-icon { color: #F48FB1; }

.btn-register { --btn-register-glow: rgba(233,30,99,0.3); }

.scroll-arrow {
  background: rgba(255,255,255,0.05);
  border-color: rgba(233,30,99,0.1);
}

/* Theme-specific Effects */
.hero-title { animation: theme10rainbow 5s linear infinite; background-size: 300% 300%; }
  @keyframes theme10rainbow { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
  .hero-visual-wrapper svg { animation: theme10beat 1.5s ease-in-out infinite; }
  @keyframes theme10beat { 0%,100%{transform:scale(1)}50%{transform:scale(1.03)} }


/* ============ Layout Variant E Enhancement ============ */
/* Auto-generated by batch_theme_layout_css.php */

/* Variant E Enhancement: Electric Music Minimal */
.hero-banner[data-variant="E"] { background: linear-gradient(180deg, #1A0020 0%, #0D0015 100%); }
.hero-banner[data-variant="E"] .hero-title-massive {
  background: linear-gradient(135deg, #E91E63 0%, #9C27B0 33%, #00BCD4 66%, #E91E63 100%) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: theme10rainbow 8s linear infinite !important;
}
.site-header[data-nav-style="minimal"] { background: rgba(26,0,32,0.6); }
.site-header[data-nav-style="minimal"] .brand-name { color: #F48FB1; }
.site-header[data-nav-style="minimal"] .nav-link { color: #CE93D8; }
.site-header[data-nav-style="minimal"] .hamburger-line { background: #F48FB1; }

