.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/gigs/pg25/bg.webp') center/cover no-repeat;
    z-index: -1;
}

.screens-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;

    margin: 0 auto;
    max-width: 100%;
}

/* Класс для экрана без затемнения */
.screen.no-overlay {
    background-color: transparent;
}

.screen.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.screen-1 .text-1,
.screen-1 .text-2 {
  color: white;
}

.screen-1 h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.screen-1 p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    font-size: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.screen-1 .text-2 {
  margin-top: 6em;
}

.screen-2 .artist-image {
    width: 500px;
    height: 100vh;
    background: url('/img/gigs/pg25/serega.webp') center/contain no-repeat;
    position: absolute;
    bottom: -120px;
    left: 80%;
    transform: translateX(-50%);
}
  /*

.buy-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ff3366, #ff6633);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2rem;
    z-index: 10;
    margin-top: 2em;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.6);
}
*/

.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}



@media (max-width: 1024px) {
  .screen-2 .artist-image {
    width: 500px;
    bottom: -400px;
    left: 90%;
  }
}

@media (max-width: 768px) {
  .screen-1 .text-1 {
    transform: translateY(-50%);
  }
  .screen-1 .text-2 {
    transform: translateY(40%);
  }

  .screen-2 .artist-image {
    width: 500px;
    bottom: -270px;
    left: 50%;
  }

  .buy-btn {
    margin-top: 24em;
  }
}

@media (max-width: 400px) {
  .screen-1 .text-1 {
    transform: translateY(-40%) scale(0.9);
  }

  .screen-1 .text-1 p {
    margin: 0;
    font-size: 85%
  }

  .screen-1 .text-2 {
    transform: translateY(-0%) scale(0.7);
  }

  .screen-2 .artist-image {
    width: 450px;
    bottom: -240px;
    left: 46.5%
  }
}

@media (max-width: 370px) {
  .screen-1 .text-1 {
    transform: translateY(0%) scale(0.75);
  }


  .screen-1 .text-2 {
    transform: translateY(-0%) scale(0.6);
  }

  .screen-2 .artist-image {
    width: 300px;
    bottom: -175px;
    left: 48%
  }
}


