.bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.bg .body-bg {
  filter: brightness(0.6);
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  animation: zoomIn 4.5s ease-out forwards;
  position: absolute;
  top: 0;
  left: 0;
} 

.bg::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, transparent 0%, 
  rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%); 
  z-index: 1;
  overflow: hidden;
}

@keyframes zoomIn {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.relative {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.relative:before{
  content:"";
  background: linear-gradient(to bottom, black, transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}

.relative:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, black, transparent);
  pointer-events: none;
  z-index: 3;
}

.poet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.poet .poet-img {
  width: 280px;
  max-width: 90vw;
  height: auto;
}

.poet-img{
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

.watch-trailer{
  color: #e7fdfff5;
  font-size: 14px;
  position: absolute;
  top: 65%;
  left: 50%;
  border-style: solid;
  border-width: 2px;
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  z-index: 100;
  backdrop-filter: blur(10px);
  letter-spacing: 1.5px;
  opacity: 0.9;
  font-weight: 600;
}

.watch-trailer:hover{
  transform: translateX(-50%) scale(1.1);
  background-color: rgba(255, 255, 255, 0.2); 
  box-shadow: 0 0 20px rgba(247, 247, 142, 0.5),
  inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* section 2 */
.apps, .apps-title {
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.apps-title{
  color: white;
  font-size: 20px;
  font-family: Orbitron;
  padding-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.apps-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.apps-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgb(247, 247, 142), transparent);
}

.apps{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.apps.visible {
  opacity: 1;
  transform: translateY(0);
}

.apps img{
  filter: brightness(0) invert(1);
  width: 60px;
  cursor: pointer;
  padding-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.apps img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.5));
  transform: translateY(-10px) scale(1.1);
}

.get-now{
  color: rgb(255, 255, 255);
  font-weight: bold;
  border: 2px solid white;
  border-radius: 10px;
  background-color: rgb(243, 183, 70);
  padding: 8px 20px;
  font-size: 16px;
  font-family: Orbitron;
  width: fit-content;
  margin: 0 auto 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out, all 0.3s ease;
}

.get-now.visible {
  opacity: 1;
  transform: translateY(0);
}

.get-now:hover{
  transform: scale(1.2);
  box-shadow: 0 0 20px white;
}

.line-img{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 60px;
}

.line-img img{
  transform: scaleX(1);
  width: 100%;
  height: 100px;
  max-height: 50px;
  object-fit: cover;
  opacity: 0.9;
  z-index: 1000;
}

/*section 3*/
.section3-header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section3-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.left-arrow{
  transform: scaleX(-1);
}

.section3-header .middle-text{
  color: orange;
  font-size: 24px;
  text-align: center;
  width: 180px;
  font-family: Orbitron;
  font-weight: bold;
}

.section3-header img{
  width: 60px;
  height: auto;
}

.bottom-text{
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;  
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  font-family: Orbitron;
}

.bottom-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (min-width: 425px) {
  .poet .poet-img {
    width: 400px;
  }

  .watch-trailer {
    font-size: 16px;
    padding: 9px 18px;
  }

  .apps-title {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .apps-title::after {
    width: 80px;
  }

  .apps img {
    width: 70px;
    padding-bottom: 40px;
  }

  .get-now {
    font-size: 18px;
    padding: 10px 25px;
    margin-bottom: 50px;
  }

  .line-img {
    margin-bottom: 80px;
  }

  .section3-header {
    flex-direction: row;
    gap: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 20px;
  }

  .section3-header .middle-text {
    font-size: 25px;
    width: auto;
  }

  .section3-header img {
    width: 70px;
  }

  .bottom-text {
    font-size: 16px;
    width: 90%;
    line-height: 1.5;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .relative:before {
    height: 120px;
  }

  .relative:after {
    height: 600px;
  }

  .poet .poet-img {
    width: 800px;
  }

  .watch-trailer {
    font-size: 24px;
    padding: 12px 26px;
    letter-spacing: 2px;
    top: 70%;
  }

  .apps, .apps-title {
    flex-direction: row;
    gap: 200px;
  }

  .apps-title {
    font-size: 50px;
    letter-spacing: 8px;
    padding-bottom: 40px;
  }

  .apps-title::after {
    width: 100px;
    bottom: -20px;
  }

  .apps img {
    width: 100px;
    padding-bottom: 100px;
  }

  .get-now {
    font-size: 30px;
    padding: 15px 40px;
    margin-bottom: 100px;
  }

  .get-now:hover {
    transform: scale(1.5);
  }

  .line-img {
    margin-bottom: 200px;
  }

  .section3-header {
    flex-direction: row;
    gap: 10px;
    padding: 0;
  }

  .section3-header .middle-text {
    font-size: 60px;
    width: 350px;
  }

  .section3-header img {
    width: 200px;
  }

  .bottom-text {
    font-size: 35px;
    width: 1000px;
    text-align: justify;
  }
}

/* Desktop (2K) */
@media (min-width: 2560px) {
  .relative:before {
    height: 150px;
  }

  .relative:after {
    height: 800px;
  }

  .poet .poet-img {
    width: 1200px;
  }

  .watch-trailer {
    font-size: 36px;
    padding: 18px 40px;
  }

  .apps, .apps-title {
    gap: 350px;
  }

  .apps-title {
    font-size: 70px;
    letter-spacing: 10px;
  }

  .apps img {
    width: 140px;
    padding-bottom: 150px;
  }

  .get-now {
    font-size: 42px;
    padding: 22px 55px;
    margin-bottom: 150px;
  }

  .line-img {
    margin-bottom: 300px;
  }

  .section3-header {
    gap: 20px;
  }

  .section3-header .middle-text {
    font-size: 80px;
    width: 500px;
  }

  .section3-header img {
    width: 280px;
  }

  .bottom-text {
    font-size: 42px;
    width: 1800px;
    line-height: 1.6;
    margin-bottom: 100px;
  }
}