:root {
  --ll-topband-height: 0px;
}

body.ll-has-topband {
  padding-top: var(--ll-topband-height, 0px);
}

body.ll-has-topband .sticky {
  top: var(--ll-topband-height, 0px);
}

.ll-topband {
  position: fixed;
  top: 0;
  z-index: 1030;
  background: linear-gradient(90deg, var(--ll-band-color-a, #111827), var(--ll-band-color-b, #1f2937));
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.ll-topband::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--ll-band-pattern-opacity, 0.0);
  background-repeat: repeat;
  background-size: var(--ll-band-pattern-size, 0px) var(--ll-band-pattern-size, 0px);
  background-image: var(--ll-band-pattern-url, none);
}

.ll-topband__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(6px, 0.6vw, 10px) clamp(12px, 1.6vw, 20px);
}

.ll-topband__ticker {
  overflow: hidden;
  user-select: none;
}

.ll-topband__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  will-change: transform;
  animation: ll-topband-marquee linear infinite;
}

.ll-topband:hover .ll-topband__track,
.ll-topband:focus-within .ll-topband__track {
  animation-play-state: paused;
}

.ll-topband__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0 2.5rem 0 0;
  list-style: none;
}

.ll-topband__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ll-topband__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(12px, 0.9vw, 15px);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ll-topband__link:hover,
.ll-topband__link:focus-visible {
  color: rgba(255, 255, 255, 0.85);
}

.ll-topband__icon {
  display: inline-grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ll-topband__icon i {
  font-size: 0.95em;
  line-height: 1;
}

.ll-topband__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.85em;
  font-weight: 800;
  letter-spacing: 0.03em;
}

@keyframes ll-topband-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ll-topband__track {
    animation: none !important;
  }
}

.ll-topband--no-motion .ll-topband__track {
  animation: none !important;
}

@media (max-width: 480px) {
  .ll-topband__inner {
    padding-inline: 12px;
  }
  .ll-topband__track,
  .ll-topband__list {
    gap: 1.6rem;
    padding-right: 1.6rem;
  }
  .ll-topband__link {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
}

.ll-topband.is-hidden {
  display: none !important;
}

.ll-has-topband .mobile-menu {
  top: var(--ll-topband-height, 0px);
  height: calc(100% - var(--ll-topband-height, 0px));
}

.ll-has-topband .mobile-menu-overlay {
  top: var(--ll-topband-height, 0px);
  height: calc(100% - var(--ll-topband-height, 0px));
}
