#ci-pwa-banner{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(90deg, #0f0f14 0%, #191627 50%, #24163a 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ci-pwa-banner__inner{
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  width: 100%;
  max-width: 100%;
}

.ci-pwa-banner__icon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}

.ci-pwa-banner__content{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ci-pwa-banner__title{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.ci-pwa-banner__text{
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,.82);
}

.ci-pwa-banner__actions{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.ci-pwa-banner__btn,
.ci-pwa-banner__help{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.ci-pwa-banner__btn{
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124,58,237,.32);
}

.ci-pwa-banner__btn:hover{
  transform: translateY(-1px);
  color: #fff;
}

.ci-pwa-banner__help{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.ci-pwa-banner__close{
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 32px;
}

.ci-pwa-banner__close:hover{
  background: rgba(255,255,255,.14);
}

#ci-pwa-ios-sheet{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background: rgba(0,0,0,.55);
  padding: 20px;
}

#ci-pwa-ios-sheet.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-pwa-ios-sheet__card{
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  background: #11131b;
  color: #fff;
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}

.ci-pwa-ios-sheet__title{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.ci-pwa-ios-sheet__text{
  font-size: 14px;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
  margin: 0 0 14px;
}

.ci-pwa-ios-sheet__steps{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.6;
}

.ci-pwa-ios-sheet__footer{
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.ci-pwa-ios-sheet__ok{
  border: 0;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 16px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 680px){
  .ci-pwa-banner__inner{
    align-items: flex-start;
  }

  .ci-pwa-banner__content{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ci-pwa-banner__title{
    white-space: normal;
  }

  .ci-pwa-banner__actions{
    margin-left: 0;
  }
}