.center_text_bg {
    text-align: center;
}

.bg_1 {
    width: 1910px;
    height: 1000px;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.bg_1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/body/playstation-logo.png");
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.1); /* убирает края после blur */
  z-index: -1;
}


.black_back {
  display: none;
  background-color: black;
  height: 60px;
  color: white;
}


.bg_1 h1 {
    text-align: center;
    color: white;
    font-size: 100px;
    margin-top: 200px;
    font-family: 'Press Start 2P', monospace;
} 





.btn {
  padding: 14px 28px;
  font-size: 50px;
  margin-top: 40px;
  border: none;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  font-family: 'Montserrat', 'Arial', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 0 #3730a3;
}

/* наведение */
.btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #3730a3;
}

/* нажатие */
.btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #3730a3;
}

.btn a {
    text-decoration: none;
    color: white;
}


.chevron-down {
  position: absolute;
  margin-bottom: 140px;
  left: 50%;
  bottom: 40px;

  width: 28px;
  height: 28px;

  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: translateX(-50%) rotate(-45deg);
  opacity: 0.9;

  animation: chevronMove 1.6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes chevronMove {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, 14px) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0) rotate(-45deg);
    opacity: 0.4;
  }
}






@media (max-width: 768px) {


    .bg_1 {
        width: auto;
        height: 700px;
    }

    .bg_1 p {
        font-size: 15px;
        width: 300px;
    }

    .bg_1 h1 {
        font-size: 20px;
        margin-top: 240px;
    }

 

    .btn {
        margin-top: 200px;
        font-size: 20px;
    }
}

@media (max-width: 425px) {
    .chevron-down {
        margin-bottom: 0px;
    }

    .black_back {
      display: block;
      color: black;
    }
}







