/* =====================================================
   Theme 06: Gold VIP Royal - Components
   金色贵宾皇家风 - 组件样式与特效
   ===================================================== */

/* ============ 广告区皇家装饰 ============ */
.hero-banner {
  position: relative;
}

/* 顶部金色双线 */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  z-index: 3;
}

/* 四角雕花装饰 */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,215,0,0.1);
  pointer-events: none;
  z-index: 2;
}

/* 聚光灯效果 */
.hero-glow-layer {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.08) 0%, transparent 50%);
}

/* 标题金色渐变 */
.hero-title {
  background: linear-gradient(180deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  letter-spacing: 0.02em;
}

/* ============ 按钮皇家风格 ============ */
.btn-register {
  position: relative;
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 15px rgba(255,215,0,0.15), inset 0 0 10px rgba(255,215,0,0.05);
}

.btn-register:hover {
  box-shadow: 0 0 25px rgba(255,215,0,0.3), inset 0 0 15px rgba(255,215,0,0.1);
}

.btn-download {
  border-width: 2px;
}

/* ============ 导航栏皇家 ============ */
.site-header {
  border-bottom: 2px solid rgba(255,215,0,0.15);
}

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

.nav-menu a {
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-menu a::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.nav-btn {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ 卡片皇家边框 ============ */
.post-card {
  border: 1px solid rgba(255,215,0,0.08);
  position: relative;
}

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

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

.post-card:hover {
  border-color: rgba(255,215,0,0.15);
}

/* ============ 页脚CTA皇家 ============ */
.footer-cta-banner {
  background: linear-gradient(135deg, #1A0A00 0%, #2D1B0E 100%);
  border-top: 2px solid rgba(255,215,0,0.15);
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.05) 0%, transparent 50%);
}

/* ============ 滚动提示 ============ */
.scroll-hint .scroll-arrow {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
}

/* ============ 侧边栏widget ============ */
.widget-title {
  border-bottom: 1px solid rgba(255,215,0,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ 文章内CTA皇家 ============ */
.in-content-cta {
  background: linear-gradient(135deg, #2D1B0E 0%, #1A0A00 100%);
  border: 1px solid rgba(255,215,0,0.1);
}

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

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD700, #8B6914);
}

/* ============ 响应式微调 ============ */
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }
}

/* === 赌场装饰增强 (火焰金) [casino-enhance] === */

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

/* 装饰层光晕 */
.hero-casino-decor::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,0,0,0.12) 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(255,215,0,0.10);
  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(139,0,0,0.12);
}

/* 内页底部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(139,0,0,0.12);
}

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


/* ============ Hero & Navigation — Fire Gold Theme ============ */
/* Auto-generated by batch_theme_hero_css.php */

/* Navigation Glass */
.site-header {
  background: rgba(20,5,0,0.9);
  border-bottom: 1px solid rgba(255,140,0,0.12);
}

.brand-icon { color: #FF8C00; }

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

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

.hero-stats-bar {
  background: rgba(255,140,0,0.04);
  border-color: rgba(255,140,0,0.12);
}

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

.btn-register { --btn-register-glow: rgba(255,140,0,0.4); }

.scroll-arrow {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,140,0,0.12);
}

/* Theme-specific Effects */
.hero-title { text-shadow: 0 0 30px rgba(255,69,0,0.25), 0 2px 4px rgba(0,0,0,0.5); }
  .btn-register { --btn-register-glow: rgba(255,140,0,0.5); }
  .btn-register:hover { box-shadow: 0 0 30px rgba(255,140,0,0.5), 0 0 60px rgba(255,69,0,0.2); }
  .hero-visual-wrapper svg { animation: theme06fireFloat 6s ease-in-out infinite; }
  @keyframes theme06fireFloat { 0%,100%{transform:translateY(0) scale(1);filter:drop-shadow(0 0 30px rgba(255,140,0,0.3))}50%{transform:translateY(-15px) scale(1.02);filter:drop-shadow(0 0 50px rgba(255,69,0,0.5))} }


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

/* Variant A Enhancement: Fire Gold Split */
.hero-banner[data-variant="A"] .hero-split { gap: 4rem; }
.hero-banner[data-variant="A"] .hero-float-decor {
  background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
  animation: heroGlowPulse 4s ease-in-out infinite;
}
.hero-banner[data-variant="A"] .hero-stats-cards .stat-item {
  background: linear-gradient(135deg, rgba(255,69,0,0.06) 0%, rgba(255,140,0,0.03) 100%);
}
.hero-banner[data-variant="A"] .hero-stats-cards .stat-item:hover {
  border-color: rgba(255,140,0,0.3);
  box-shadow: 0 4px 20px rgba(255,69,0,0.15);
}

