.bse-feature-intro {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(5px);
  animation: bse-feature-intro-in .18s ease-out;
}

.bse-feature-intro-card {
  position: relative;
  width: min(100%, 430px);
  padding: 30px 28px 26px;
  border: 1px solid rgba(251, 191, 36, .34);
  border-radius: 18px;
  background: #15151b;
  color: #f5f5f5;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .58);
}

.bse-feature-intro-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #a3a3a3;
  font: 400 1.7rem/1 Arial, sans-serif;
  cursor: pointer;
}

.bse-feature-intro-close:hover,
.bse-feature-intro-close:focus-visible {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  outline: none;
}

.bse-feature-intro-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fbbf24;
  color: #171109;
  font: 800 1.25rem/1 Inter, Arial, sans-serif;
}

.bse-feature-intro-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font: 700 clamp(1.3rem, 5vw, 1.65rem)/1.25 Inter, Arial, sans-serif;
}

.bse-feature-intro-card p {
  margin: 0;
  color: #c6c6ca;
  font: 400 .96rem/1.65 Inter, Arial, sans-serif;
}

.bse-feature-intro-button {
  width: 100%;
  margin-top: 22px;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: #fbbf24;
  color: #171109;
  font: 700 .95rem/1 Inter, Arial, sans-serif;
  cursor: pointer;
}

.bse-feature-intro-button:hover {
  background: #f5b914;
}

@keyframes bse-feature-intro-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bse-feature-intro { animation: none; }
}

.bse-index-blurred {
  filter: blur(3px);
  opacity: .58;
  pointer-events: none;
  user-select: none;
}

input:disabled[data-bse-placeholder] {
  cursor: not-allowed;
  opacity: .68;
}