#landing-bonus-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: linear-gradient(135deg, hsl(230 30% 12%), hsl(345 38% 28%));
  color: hsl(36 33% 97%);
  border-bottom: 1px solid hsl(345 36% 22%);
  box-shadow: 0 4px 16px hsl(230 30% 10% / 0.18);
}

#landing-bonus-bar.is-below-ticker {
  top: var(--landing-ticker-height, 36px);
}

#landing-bonus-bar .landing-bonus-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

#landing-bonus-bar .landing-bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: hsl(42 68% 50% / 0.18);
  color: hsl(42 68% 62%);
  flex-shrink: 0;
}

#landing-bonus-bar .landing-bonus-icon svg {
  width: 15px;
  height: 15px;
}

#landing-bonus-bar .landing-bonus-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: hsl(42 68% 50%);
  color: hsl(210 20% 12%);
  font-family: Inter, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

#landing-bonus-bar .landing-bonus-text {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: hsl(40 38% 96% / 0.95);
  max-width: 52rem;
}

#landing-bonus-bar .landing-bonus-text strong {
  font-weight: 700;
  color: #fff;
}

body.landing-bonus-active {
  padding-top: var(--landing-top-offset, 88px);
}

@media (max-width: 640px) {
  #landing-bonus-bar .landing-bonus-inner {
    flex-direction: column;
    gap: 7px;
    padding: 10px 14px 11px;
  }

  #landing-bonus-bar .landing-bonus-icon {
    display: none;
  }

  #landing-bonus-bar .landing-bonus-text {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) {
  #landing-bonus-bar .landing-bonus-inner {
    padding: 12px 24px;
    gap: 12px;
  }

  #landing-bonus-bar .landing-bonus-text {
    font-size: 14px;
  }

  #landing-bonus-bar .landing-bonus-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
}
