/* About GPM Creations Section */
.about-movie {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #00040d;
  overflow: hidden;
}

.about-movie-container {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 500px;
}

/* Text Content Left */
.about-movie-text {
  width: 550px;
  padding-left: 120px;
  z-index: 10;
}

.about-movie-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 40px;
}

.about-movie-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.6;
  margin-bottom: 40px;
}

.about-movie-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  width: 154px;
  height: 46px;
  background: #ff0000;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.about-movie-btn:hover {
  background: #cc0000;
}

.about-movie-btn span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
}

/* Posters Right */
.about-movie-posters {
  position: absolute;
  right: 110px;
  width: 600px;
  height: 450px;
}

.poster {
  position: absolute;
  background: #2e2e2e;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 94px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-back-left {
  width: 252px;
  height: 315px;
  left: 0;
  top: 50px;
  z-index: 1;
  opacity: 0.8;
}

.poster-back-right {
  width: 252px;
  height: 315px;
  right: 0;
  top: 50px;
  z-index: 1;
  opacity: 0.8;
}

.poster-main {
  width: 336px;
  height: 420px;
  left: 132px;
  top: 0;
  z-index: 5;
  border-radius: 20px;
  box-shadow: 0px 0px 94px rgba(0, 0, 0, 0.8);
}
