/* 0039 - HHPoker俱乐部下载中心 活力橙色主题 */

:root {
  --orange: #ea580c;
  --orange-light: #f97316;
  --navy: #1e3a5f;
}

html { scroll-behavior: smooth; }

/* Navbar */
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 20px rgba(234,88,12,0.08);
}

/* Download cards */
.download-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(234,88,12,0.15);
}
.download-card:hover .dl-icon {
  transform: scale(1.1);
}
.dl-icon {
  transition: transform 0.3s ease;
}

/* Counter animation style */
.counter-num {
  font-variant-numeric: tabular-nums;
}

/* Animated gradient border */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(234,88,12,0.3); }
  50% { border-color: rgba(234,88,12,0.8); }
}
.glow-border {
  animation: borderGlow 2s ease-in-out infinite;
}

/* Stats glow */
@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(234,88,12,0.2); }
  50% { text-shadow: 0 0 20px rgba(234,88,12,0.4); }
}
.stat-glow {
  animation: statGlow 2s ease-in-out infinite;
}

/* FAQ */
.faq-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
}
.faq-toggle.active .fa-chevron-down {
  transform: rotate(180deg);
  color: var(--orange);
}

/* Platform badge */
.platform-badge {
  position: relative;
  overflow: hidden;
}
.platform-badge::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(234,88,12,0.1) 50%);
  border-radius: 0 0 0 60px;
}

/* Pulse button */
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(234,88,12,0.4); }
  70% { box-shadow: 0 0 0 18px rgba(234,88,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
}
.btn-pulse {
  animation: btnPulse 2s infinite;
}

/* Testimonial */
.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: rgba(234,88,12,0.2);
  margin-bottom: -1.5rem;
  font-family: serif;
}
