/* ============================================================
   HHPoker (德扑圈) — Dark Luxury Poker Theme
   Custom styles beyond Tailwind utility classes
   Color Scheme: Dark Green (#0a100a), Gold (#c9a84c), Deep Green (#1a3a1a)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep: #0a100a;
  --bg-card: #1a2a1a;
  --bg-card-hover: #1f321f;
  --gold: #c9a84c;
  --gold-light: #d4b85e;
  --gold-dark: #a88a35;
  --green-mid: #1a3a1a;
  --green-light: #2a4a2a;
  --text-primary: #f0ead6;
  --text-secondary: #b0a880;
  --text-muted: #7a7a6a;
  --border-gold: rgba(201, 168, 76, 0.3);
  --border-gold-light: rgba(201, 168, 76, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.2);
  --transition-base: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

/* ---------- Reset & Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
}

/* Firefox scrollbar */
html {
  scrollbar-color: var(--gold) var(--bg-deep);
  scrollbar-width: thin;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: #fff;
}

/* ---------- Glass-morphism Navbar ---------- */
.navbar-glass {
  background: rgba(10, 16, 10, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: all var(--transition-base);
}

.navbar-glass.scrolled {
  background: rgba(10, 16, 10, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* ---------- Gold Text Gradient ---------- */
.text-gold-gradient {
  background: linear-gradient(135deg, #c9a84c 0%, #e0c670 30%, #c9a84c 50%, #a88a35 70%, #c9a84c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* ---------- Gold Border Card ---------- */
.card-gold-border {
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-deep) 100%);
  border-radius: 12px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.card-gold-border:hover {
  border-color: var(--border-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.card-gold-border:hover::before {
  opacity: 1;
}

/* ---------- Feature Cards ---------- */
.feature-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(160deg, #111f11 0%, #0d170d 100%);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.12);
  transform: translateY(-6px);
}

.feature-card:hover::after {
  width: 60%;
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.1));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: linear-gradient(160deg, #121f12 0%, #0d170d 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
}

.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  transition: all 0.4s ease;
}

.testimonial-card:hover .avatar {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ---------- Stat Counter ---------- */
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  transition: all 0.3s ease;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ---------- FAQ Accordion ---------- */
.accordion-item {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: linear-gradient(160deg, #111f11 0%, #0d170d 100%);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.05rem;
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-icon {
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  min-width: 20px;
  text-align: center;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #c9a84c 0%, #a88a35 100%);
  color: #0a100a;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-gold::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.5s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4b85e 0%, #c9a84c 100%);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
  color: #050a05;
}

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

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.btn-gold-lg {
  padding: 1.1rem 3.5rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

/* ---------- Hero Gradient Backgrounds ---------- */
.hero-gradient {
  background: linear-gradient(160deg, #0a100a 0%, #0d200d 30%, #111f11 60%, #0a100a 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ---------- CTA Banner Gradient ---------- */
.cta-gradient {
  background: linear-gradient(135deg, #0d200d 0%, #1a3010 40%, #2a3a10 70%, #c9a84c 100%);
  position: relative;
  overflow: hidden;
}

.cta-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Animations ---------- */

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse Gold */
@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(201, 168, 76, 0);
  }
}

/* Float animation for hero image */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Shine sweep for cards */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* ---------- Reveal on Scroll (AOS-like) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children delay */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Hero Image Float ---------- */
.hero-image-float {
  animation: float 5s ease-in-out infinite;
}

/* ---------- Pulse Button ---------- */
.pulse-btn {
  animation: pulseGold 2s infinite;
}

/* ---------- Divider with gold diamond ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border-gold-light), transparent);
}

.section-divider .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Lazy Load Images ---------- */
img[data-src] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.mobile-menu.open {
  max-height: 400px;
}

/* ---------- Hamburger Icon ---------- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Timeline (About page) ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

/* ---------- Download Platform Cards ---------- */
.platform-card {
  background: linear-gradient(160deg, #111f11 0%, #0d170d 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  cursor: pointer;
}

.platform-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
  transform: translateY(-6px);
}

.platform-card .platform-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}

.platform-card:hover .platform-icon {
  transform: scale(1.15);
}

/* ---------- QR Code Container ---------- */
.qr-container {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--gold);
  display: inline-block;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

/* ---------- Customer Service Floating Button ---------- */
.cs-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0c040, #c9a84c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
  border: none;
  font-size: 1.5rem;
  color: #0a100a;
}

.cs-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.55);
}

.cs-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  background: linear-gradient(160deg, #121f12 0%, #0d170d 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.15);
  z-index: 9998;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.cs-popup.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cs-popup-header {
  background: linear-gradient(135deg, #c9a84c, #a88a35);
  padding: 1rem 1.25rem;
  color: #0a100a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-popup-body {
  padding: 1.5rem;
  text-align: center;
}

.cs-popup .qr-placeholder {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
}

.cs-popup .qr-placeholder i {
  font-size: 4rem;
  color: #333;
}

/* ---------- Section Titles ---------- */
.section-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- Step Guide (Download page) ---------- */
.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #a88a35);
  color: #0a100a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 0.25rem;
}

/* ---------- Table Styles ---------- */
.table-dark {
  width: 100%;
  border-collapse: collapse;
}

.table-dark th,
.table-dark td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.table-dark th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table-dark tr:hover td {
  background: rgba(201, 168, 76, 0.03);
}

/* ---------- Values cards (About page) ---------- */
.value-card {
  background: linear-gradient(160deg, #111f11 0%, #0d170d 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 10px 35px rgba(201, 168, 76, 0.12);
  transform: translateY(-6px);
}

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

.value-card .value-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ---------- Footer links ---------- */
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

/* ---------- Social icon buttons ---------- */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }

  .accordion-header {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .cs-float-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.25rem;
  }

  .cs-popup {
    width: 280px;
    bottom: 80px;
    right: 20px;
  }

  .hero-image-float {
    animation: float 4s ease-in-out infinite;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.75rem;
  }

  .stat-suffix {
    font-size: 1.1rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 0.7rem 1.75rem;
    font-size: 0.9rem;
  }

  .btn-gold-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
  }
}
