/* =====================================================
   Theme 14: Pink Carnival - Components
   粉红娱乐嘉年华风 - 组件样式与特效
   ===================================================== */

/* ============ 广告区嘉年华 ============ */
.hero-banner {
  position: relative;
}

/* 彩旗装饰背景 */
.hero-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,235,59,0.05) 0%, transparent 30%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 30%);
  z-index: 0;
}

/* ============ 标题嘉年华风 ============ */
.hero-title {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1), 2px 2px 0 rgba(255,235,59,0.3);
}

/* ============ 按钮嘉年华风格 ============ */
.btn-register {
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255,235,59,0.3);
}

.btn-register:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255,235,59,0.4);
}

/* ============ 导航栏嘉年华 ============ */
.site-header {
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(255,64,129,0.08);
}

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

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

/* ============ 卡片嘉年华风格 ============ */
.post-card {
  border: none;
  box-shadow: 0 2px 12px rgba(255,64,129,0.06);
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF4081, #FFEB3B, #FF4081);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,64,129,0.12);
}

/* ============ 页脚CTA嘉年华 ============ */
.footer-cta-banner {
  background: linear-gradient(135deg, #FF4081 0%, #F48FB1 100%);
  position: relative;
}

/* ============ 滚动提示 ============ */
.scroll-hint .scroll-arrow {
  background: rgba(255,235,59,0.2);
  border: 2px solid rgba(255,235,59,0.4);
}

/* ============ 侧边栏widget ============ */
.widget-title {
  border-bottom: 2px solid #FFEB3B;
}

/* ============ 文章内CTA ============ */
.in-content-cta {
  background: linear-gradient(135deg, #FF4081 0%, #F48FB1 100%);
}

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

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

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

/* === 赌场装饰增强 (活力粉) [casino-enhance] === */

/* SVG装饰可见度提升 */
.hero-casino-decor svg {
  color: rgba(255,64,129,0.10);
  opacity: 0.5;
  filter: drop-shadow(0 0 15px rgba(255,235,59,0.08));
}

/* 装饰层光晕 */
.hero-casino-decor::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,235,59,0.08) 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: 1.8rem;
  letter-spacing: 1.2rem;
  color: rgba(255,64,129,0.10);
  opacity: 0.25;
  pointer-events: none;
  word-spacing: 1.5rem;
}

/* 页脚三栏增强 (暗色页脚) */
.footer-nav-section {
  background: var(--color-primary);
}

.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.08) 100%);
  border: 1px solid rgba(255,235,59,0.08);
}

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

.page-bottom-cta a {
  color: #fff;
}

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

/* FAQ手风琴 */
.page-body details {
  border-left: 3px solid var(--color-secondary);
}

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


/* ============ Hero & Navigation — Vibrant Pink Theme ============ */
/* Auto-generated by batch_theme_hero_css.php */

/* Navigation Glass */
.site-header {
  background: rgba(255,245,250,0.92);
}

.brand-icon { color: #C2185B; }

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

.hero-stats-bar {
  background: rgba(233,30,99,0.03);
  border-color: rgba(233,30,99,0.08);
}

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

.scroll-arrow {
  background: rgba(0,0,0,0.03);
  border-color: rgba(233,30,99,0.08);
}

/* Theme-specific Effects */
.hero-visual-wrapper svg { animation: theme14bounce 3s ease-in-out infinite; }
  @keyframes theme14bounce { 0%,100%{transform:translateY(0)}30%{transform:translateY(-20px)}60%{transform:translateY(-8px)} }
  .hero-badge { border-radius: 20px; }
  .btn-register:hover { box-shadow: 0 8px 25px rgba(233,30,99,0.3); }


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

/* Variant D Enhancement: Vibrant Pink Diagonal */
.hero-banner[data-variant="D"] .diagonal-shape.shape-1 {
  background: linear-gradient(135deg, rgba(233,30,99,0.06) 0%, rgba(156,39,176,0.04) 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 75%, 0 100%);
}
.hero-banner[data-variant="D"] .diagonal-shape.shape-2 {
  background: linear-gradient(135deg, rgba(156,39,176,0.04) 0%, rgba(233,30,99,0.02) 100%);
}
.hero-banner[data-variant="D"] .hero-title-underline {
  background: linear-gradient(90deg, #E91E63, #9C27B0);
  height: 4px;
  border-radius: 2px;
}

