:root {
  --tba-bg: #111111;
  --tba-text: #ffffff;
  --tba-height: 44px;
}

.tba-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--tba-bg);
  color: var(--tba-text);
  z-index: 9999;
  min-height: var(--tba-height);
  display: flex;
  align-items: center;
}

.tba-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.4;
}

.tba-message {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tba-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

.tba-close {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.tba-top-bar.tba-hidden {
  display: none;
}

@media (max-width: 600px) {
  .tba-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .tba-close {
    align-self: flex-end;
  }
}
