        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Inter:wght@300;400;600&display=swap');
        .font-luxury { font-family: 'Cinzel', serif; }
        .font-body { font-family: 'Inter', sans-serif; }
        .hero-bg {
            background: linear-gradient(rgba(0,0,0,0.65), rgba(10,10,10,1)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
        }

.hrc-led-ticker {
  width: 100%;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
  background-color: #050505;
  border-top: 1px solid #f4a300;
  border-bottom: 1px solid #f4a300;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}

/* subtle LED dot matrix background */
.hrc-led-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 159, 0, 0.18) 1px,
    transparent 1.4px
  );
  background-size: 6px 6px;
  pointer-events: none;
  opacity: 0.65;
}

.hrc-led-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-left: 100%;
  animation: hrcLedScroll 28s linear infinite;
  color: #ff9f00;
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 0 4px rgba(255, 159, 0, 0.95),
    0 0 8px rgba(255, 159, 0, 0.65),
    0 0 14px rgba(255, 159, 0, 0.35);
  position: relative;
  z-index: 2;
}

.hrc-led-track span {
  display: inline-block;
}

/* smooth right-to-left movement */
@keyframes hrcLedScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* optional: slight old LED flicker */
@keyframes hrcLedFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

.hrc-led-track {
  animation:
    hrcLedScroll 28s linear infinite,
    hrcLedFlicker 1.8s ease-in-out infinite;
}

/* mobile adjustment */
@media (max-width: 768px) {
  .hrc-led-ticker {
    height: 38px;
  }

  .hrc-led-track {
    font-size: 14px;
    gap: 24px;
    letter-spacing: 2px;
    animation:
      hrcLedScroll 24s linear infinite,
      hrcLedFlicker 1.8s ease-in-out infinite;
  }
}
