/* =====================================================
   Theme 01: Dark Luxury Casino - Components
   暗黑奢华赌场风 - 组件样式与特效
   ===================================================== */

/* ============ 金色粒子画布层 ============ */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============ 广告区奢华增强 ============ */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  z-index: 3;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  z-index: 3;
}

/* 标题金色光晕 */
.hero-title {
  text-shadow: 0 0 40px rgba(212,175,55,0.15), 0 2px 4px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

/* ============ 按钮奢华特效 ============ */
.btn-register {
  position: relative;
  overflow: hidden;
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-register:hover::before {
  left: 100%;
}

.btn-register:hover {
  box-shadow: 0 0 30px rgba(212,175,55,0.4), 0 0 60px rgba(212,175,55,0.15);
}

/* 下载按钮发光边框 */
.btn-download {
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-download:hover {
  box-shadow: 0 0 20px rgba(212,175,55,0.3), inset 0 0 10px rgba(212,175,55,0.1);
}

/* ============ 导航栏奢华 ============ */
.site-header {
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.site-branding a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 导航链接下划线金色 */
.nav-menu a::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

/* ============ 卡片奢华边框 ============ */
.post-card {
  border: 1px solid rgba(212,175,55,0.08);
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.post-card:hover {
  border-color: rgba(212,175,55,0.2);
}

/* ============ 页脚CTA横幅增强 ============ */
.footer-cta-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0A0A0A 100%);
  position: relative;
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 50%);
  z-index: 0;
}

/* ============ 滚动提示金色脉冲 ============ */
.scroll-hint .scroll-arrow {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
}

/* ============ 侧边栏widget金色标题 ============ */
.widget-title {
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--color-secondary), transparent) 1;
}

/* ============ 文章内CTA奢华 ============ */
.in-content-cta {
  background: linear-gradient(135deg, #1A1A2E 0%, #0A0A0A 100%);
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
}

.in-content-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-secondary), #8B6914);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #E5C048, var(--color-secondary));
}

/* ============ 移动端FAB增强 ============ */
.fab-register {
  box-shadow: 0 0 15px rgba(212,175,55,0.4), 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4), 0 4px 12px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0), 0 4px 12px rgba(0,0,0,0.3); }
}

/* ============ 文章标签奢华 ============ */
.hero-tag {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* ============ 响应式微调 ============ */
@media (max-width: 767px) {
  .hero-title {
    text-shadow: 0 0 20px rgba(212,175,55,0.1), 0 2px 4px rgba(0,0,0,0.5);
  }
  
  .btn-register:hover {
    box-shadow: 0 0 15px rgba(212,175,55,0.3);
  }
}

/* ============ 赌场背景装饰增强 ============ */
.hero-casino-decor svg {
  color: rgba(212,175,55,0.06);
}

.hero-casino-decor::before {
  color: rgba(139,0,0,0.08);
  text-shadow: 0 0 20px rgba(212,175,55,0.05);
}

.hero-casino-decor::after {
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
}

/* 轮盘SVG金色描边增强 */
.casino-svg-roulette circle {
  stroke: rgba(212,175,55,0.08);
}

.casino-svg-roulette line {
  stroke: rgba(212,175,55,0.05);
}

.casino-svg-roulette text {
  fill: rgba(212,175,55,0.1);
}

/* ============ 页脚三栏奢华增强 ============ */
.footer-nav-section {
  border-bottom-color: rgba(212,175,55,0.15);
}

.footer-nav-title {
  border-bottom-color: #D4AF37;
  letter-spacing: 0.03em;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.5);
}

.footer-nav-list a:hover {
  color: #D4AF37;
}

.footer-nav-list a::before {
  background: #D4AF37;
}

/* ============ 页脚CTA横幅增强 ============ */
.footer-cta-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0A0A0A 100%);
  position: relative;
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 50%);
  z-index: 0;
}

/* ============ 内页底部CTA奢华 ============ */
.page-bottom-cta {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 100%);
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
}

.page-bottom-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ============ 内页面包屑/标题增强 ============ */
.page-hero-title {
  border-left-color: #D4AF37;
}

.page-breadcrumb {
  border-bottom-color: rgba(212,175,55,0.1);
}

.page-breadcrumb a {
  color: #D4AF37;
}

/* FAQ奢华 */
.faq-item {
  border-color: rgba(212,175,55,0.1);
}

.faq-question {
  background: rgba(212,175,55,0.03);
}

.faq-question:hover {
  background: rgba(212,175,55,0.06);
}

/* 联系方式卡片 */
.contact-item {
  border-color: rgba(212,175,55,0.08);
}

.contact-item:hover {
  border-color: rgba(212,175,55,0.2);
}


/* ============ Hero & Navigation — Dark Luxury Theme ============ */
/* Auto-generated by batch_theme_hero_css.php */

/* Navigation Glass */
.site-header {
  background: rgba(10,10,10,0.85);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.brand-icon { color: #D4AF37; }

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

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

.hero-stats-bar {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,175,55,0.15);
}

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

.btn-register { --btn-register-glow: rgba(212,175,55,0.3); }

.scroll-arrow {
  background: rgba(255,255,255,0.05);
  border-color: rgba(212,175,55,0.15);
}

/* Theme-specific Effects */
.hero-title { text-shadow: 0 0 40px rgba(212,175,55,0.2); }
  .hero-visual-wrapper svg { animation: heroVisualFloat 8s ease-in-out infinite, theme01shimmer 4s ease-in-out infinite; }
  @keyframes theme01shimmer { 0%,100%{filter:drop-shadow(0 0 30px rgba(212,175,55,0.3))}50%{filter:drop-shadow(0 0 50px rgba(212,175,55,0.5))} }
  .btn-register { --btn-register-glow: rgba(212,175,55,0.4); }
  .hero-stats-bar { background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(255,255,255,0.03) 100%); }


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

/* Variant A Enhancement: Dark Luxury Split */
.hero-banner[data-variant="A"] .hero-split { gap: 5rem; }
.hero-banner[data-variant="A"] .hero-float-decor {
  width: 120px; height: 120px; top: -30px; left: -40px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
}
.hero-banner[data-variant="A"] .hero-stats-cards .stat-item {
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-banner[data-variant="A"] .hero-stats-cards .stat-item:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-3px);
}
.site-header[data-nav-style="solid"] {
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

