.su-blocked-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 11000;
}

.su-blocked-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.su-blocked {
  width: 90vw;
  max-width: 480px;
  background: #0a0a0a;
  border: 3px solid #dc2626;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(220, 38, 38, 0.15);
}

.su-blocked-backdrop.is-visible .su-blocked {
  opacity: 1;
  transform: translateY(0);
}

.su-blocked__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
}

.su-blocked__icon svg {
  width: 100%;
  height: 100%;
}

.su-blocked__title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fafafa;
  line-height: 1.4;
}

.su-blocked__message {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d4d4d4;
  margin: 0;
}

.su-blocked__message:empty {
  display: none;
}

.su-blocked__url {
  display: block;
  overflow-y: auto;
  max-height: 100px;
  padding: 0.75rem;
  border: 2px dashed rgba(220, 38, 38, 0.6);
  border-radius: 0.5rem;
  background: rgba(220, 38, 38, 0.08);
  color: #f87171;
  font-weight: 600;
  font-size: 0.9rem;
  word-break: break-all;
}

.su-blocked__actions {
  width: 100%;
  padding-top: 0.5rem;
}

.su-blocked__button {
  width: 100%;
  max-width: 200px;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #dc2626;
  background: #dc2626;
  color: #fafafa;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
}

.su-blocked__button:hover {
  background: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.su-blocked__button:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.6);
  outline-offset: 2px;
}

.su-blocked__button:active {
  transform: translateY(1px);
}

@media (max-width: 520px) {
  .su-blocked {
    padding: 1.25rem 1rem;
  }

  .su-blocked__icon {
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
  }

  .su-blocked__title {
    font-size: 1.1rem;
  }
}
