.notice-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50000;

  max-width: 560px;
  margin-inline: auto;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: var(--dark);
  color: var(--light);
  border-radius: 12px;
  padding: 16px 18px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.notice-text {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light);
  flex: 1 1 260px;
}

.notice-text a {
  font-size: inherit;
  font-weight: inherit;
  color: var(--light);
  text-decoration: underline;
}

.notice-text a:hover {
  color: var(--accent);
}

.notice-dismiss {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: var(--light);
}

.notice-dismiss:hover {
  opacity: 0.85;
}
