body {
  background-color: black;
  color: white;
  font-family: arial;
}

.ReviewIntro {
  font-size: 1.5em;
  text-align: center;
}

.RankIntro {
  font-size: 1.5em;
  text-align: left;
}

.MovieReviewIntro1 {
  font-size: 1.8em;
  text-align: center;
}

.ReviewExplain {
  font-size: 1em;
  text-align: center;
  font-style: italic;
}

.Filter {
  margin-top: 28px;
  font-size: 1em;
  text-align: center;
}

.ReviewHeader {
  font-size: 1.5em;
  text-align: center;
}

.ReviewIntro2 {
  font-size: 1em;
  text-align: center;
  font-style: italic;
  margin-right: 50px;
  margin-left: 50px;
}

.ReviewContainer {
  display: flex;
  align-items: center; /* Aligns text to the center of the image */
  gap: 20px; /* Adds spacing between image and text */
  margin-left: 50px;
  margin-right: 50px;
  max-width: 2000px; /* Prevents it from stretching too wide */
  margin-bottom: 40px;
}

.GOTS1Review {
  width: 150px;  /* Set a fixed width */
  height: 150px; /* Maintain 1:1 aspect ratio */
  object-fit: cover; /* Ensures it stays square without distortion */
}

.ReviewText {
  flex: 1; /* Allows text to take up remaining space */
}

.ReviewEntryIntro {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.MovieListingEntryIntro {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}


.TierEntryIntro {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.TierEntryIntro1 {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
}

.MovieEntry {
  font-size: 1em;
}

.ReviewEntry {
  font-size: 1em;
}

@media (max-width: 768px) {
  .ReviewContainer {
    flex-direction: column; /* Stacks image on top of text */
    text-align: center; /* Centers text */
    align-items: center; /* Centers everything */
    margin-left: 0;
    margin-right: 0;
  }

  .GOTS1Review {
    width: 80%; /* Scales image responsively */
    height: auto; /* Maintains aspect ratio */
  }

  .ReviewText {
    width: 90%; /* Keeps text readable on smaller screens */
  }
}

.banner-wrapper {
  width: 100%;
  margin: 20px 0; /* spacing from the text above/below */
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Only show the image if the aspect ratio is around 16:9 */
@media (min-aspect-ratio: 16/9) and (max-aspect-ratio: 16/9) {
  .banner-image {
    display: block;
  }
}

/* Hide the banner on any aspect ratio that isn't 16:9 */
@media not all and (min-aspect-ratio: 16/9) {
  .banner-image {
    display: none;
  }
}