/* Основной стиль свечения текста */
.glow-text {
  text-shadow: rgba(255, 255, 255, 0.05) 0px 4px 8px, rgba(255, 255, 255, 0.25) 0px 8px 30px;
}

.main-menu {
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2); /* имитация обводки */
}

.blur-block {
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
}

.custom-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.custom-bg img {
  width: 100%;
  display: block;
}

.custom-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 16px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: url(#frosted);
  -webkit-backdrop-filter: url(#frosted);
  cursor: pointer;
  outline: 0;
  position: relative; /* чтобы ::before и ::after позиционировались относительно кнопки */
  display: inline-block;
}

.custom-glass::before,
.custom-glass::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  top: 50%;
  left: 30%;
  transform-origin: center;
}

.custom-glass::after {
  transform: rotate(90deg);
  left: 50%;
}





