#language-helper-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483000;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
  pointer-events: none;
}

#language-helper-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lh-banner__backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(37, 99, 235, 0.74));
}

.lh-banner__inner {
  position: relative;
  margin: 0 auto;
  width: min(1100px, calc(100% - 24px));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px;
}

.lh-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.lh-banner__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.25);
  font-size: 18px;
}

.lh-banner__text {
  min-width: 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
}

.lh-banner__title,
.lh-banner__subtitle,
.lh-banner__description,
.lh-banner__instructions {
  margin: 0;
  line-height: 1.32;
}

.lh-banner__title {
  font-size: 0.98rem;
  font-weight: 700;
}

.lh-banner__subtitle {
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.96;
}

.lh-banner__description {
  margin-top: 2px;
  font-size: 0.875rem;
  opacity: 0.93;
}

.lh-banner__instructions {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.84rem;
}

.lh-fade-in {
  animation: lh-fade 0.24s ease;
}

@keyframes lh-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lh-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lh-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 600 0.84rem/1 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  padding: 10px 14px;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lh-btn:hover {
  transform: translateY(-1px);
}

.lh-btn:active {
  transform: translateY(0);
}

.lh-btn--primary {
  color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.25);
}

.lh-btn--primary:hover {
  background: #fff;
}

.lh-btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
}

.lh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 900px) {
  .lh-banner__inner {
    width: calc(100% - 12px);
    padding: 10px;
    gap: 10px;
  }

  .lh-banner__title {
    font-size: 0.92rem;
  }

  .lh-banner__subtitle,
  .lh-banner__description,
  .lh-banner__instructions {
    font-size: 0.82rem;
  }

  .lh-btn {
    padding: 9px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .lh-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }

  .lh-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .lh-btn--primary {
    flex: 1 1 auto;
    max-width: 230px;
  }
}
