#bilgisizsiniz-ad-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bzs-ad-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.28), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.22), transparent 34%),
    rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
}

.bzs-ad-card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 28, 0.96)),
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.25), transparent 45%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.bzs-ad-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.45), rgba(6, 182, 212, 0.35), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.bzs-ad-topline,
.bzs-ad-card h2,
.bzs-ad-card p,
.bzs-ad-box,
.bzs-ad-actions {
  position: relative;
  z-index: 1;
}

.bzs-ad-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bzs-ad-topline strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.22);
}

.bzs-ad-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.bzs-ad-card p {
  margin: 0;
  max-width: 48ch;
  color: rgba(226, 232, 240, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.bzs-ad-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
}

.bzs-ad-box span {
  display: block;
  margin-bottom: 4px;
  color: rgba(148, 163, 184, 0.8);
  font-size: 12px;
}

.bzs-ad-box strong {
  display: block;
  font-size: 22px;
}

.bzs-ad-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.bzs-ad-actions a,
.bzs-ad-actions button {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
}

.bzs-ad-actions a {
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
}

.bzs-ad-actions button {
  color: rgba(226, 232, 240, 0.72);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.bzs-ad-actions button.is-ready {
  color: #fff;
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.34);
}

@media (max-width: 640px) {
  .bzs-ad-card {
    padding: 22px;
    border-radius: 24px;
  }

  .bzs-ad-actions {
    flex-direction: column;
  }
}