.at-app-banner {
  position: fixed;
  left: 60px;
  right: 8px;
  bottom: 6px;
  height: 56px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 10px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .at-app-banner { display: flex; }
}

.at-app-banner.at-app-banner--hidden { display: none !important; }

.at-app-banner__main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  color: #231f20;
  font: inherit;
  min-width: 0;
}

.at-app-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, #f01e50, #fb8f29);
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

.at-app-banner__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
}

.at-app-banner__title {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.at-app-banner__meta {
  font-size: 11px;
  color: #888888;
  white-space: nowrap;
}

.at-app-banner__cta {
  background: #f01e50;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}

.at-app-banner__close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #aaaaaa;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

.at-app-banner__close:focus-visible,
.at-app-banner__main:focus-visible {
  outline: 2px solid #f01e50;
  outline-offset: 2px;
}
