.iframe-wrapper {
  width: 100%;
  max-width: 100%;
  height: 400px;
  /* Можно менять */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #0a0a19;
  margin: 20px 0 5px;
}

.particles-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.iframe-label {
  position: absolute;
  top: 10px;
  left: 50%;
  /* сдвигаем к центру */
  transform: translateX(-50%);
  color: #fff;
  font-family: sans-serif;
  font-size: 18px;
  z-index: 10;
  pointer-events: none;
  /* Чтобы клики проходили к iframe */
  text-align: center;
  white-space: nowrap;
}

.iframe-label a {
  pointer-events: auto;
  /* Делаем ссылку кликабельной */
  color: #a36d1c;
  /* Цвет ссылки для видимости */
  text-decoration: none;
  /* Убираем подчеркивание */
}

.iframe-label a:hover {
  text-decoration: underline;
  /* Подчеркивание при наведении */
}

@media (max-width: 768px) {
  .iframe-label {
    left: 0;
    transform: none;
    width: 100%;
    white-space: normal;
    padding: 0 10px;
    /* небольшой внутренний отступ */
  }
}
