#bottombar {
  height: 5.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  background: #111;
  font-size: 1.8rem;
  border-top: 0.08rem solid #222;
  overflow: hidden;
}

#bb-clock {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 2rem;
  background: #1a1a1a;
  border-right: 0.08rem solid #222;
}

.bb-clock-seconds {
  margin-left: 0.05em;
  font-size: 0.68em;
  font-weight: 650;
  align-self: center;
}

#bb-current {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  padding: 0 1.5rem 0 1.2rem;
  width: 26rem;
  font-weight: 700;
  color: #fff;
  background: #1a2530;
  border-left: 0.45rem solid #ffcc4d;
  overflow: hidden;
}

#bb-current:empty {
  display: none;
}

.bb-current-line {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-current-now {
  font-size: 1.4rem;
  line-height: 1.15;
  color: #ffcc4d;
}

.bb-current-next {
  font-size: 1.15rem;
  line-height: 1.1;
  color: #cfd6dd;
  opacity: 0.9;
}

#bb-marquee-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

#bb-marquee-track {
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  white-space: nowrap;
  animation: bb-scroll linear infinite;
}

.bb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bb-item .time {
  color: #9ab;
  font-variant-numeric: tabular-nums;
}

.bb-item.bb-message {
  color: #7ee787;
}

.bb-item.bb-message::before {
  content: "\1F4AC";
}

@keyframes bb-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
