.play-anywhere-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: var(--dark-bg);
  overflow: hidden;
}

.play-anywhere-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  border-bottom-right-radius: 500px;
  z-index: 1;
}

.play-anywhere-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.play-anywhere-text {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  z-index: 2;
}
.play-anywhere-text h2 {
  display: flex;
  flex-direction: column;
}
.play-anywhere-text .hero-title-light {
  font-size: 72px;
}

.play-anywhere-text .hero-title-bold {
  font-size: 135px;
}

.play-anywhere-text .hero-description {
  max-width: 410px;
  margin: 40px auto 0;
  text-align: center;
}

.play-anywhere-text .hero-cta {
  margin-top: 40px;
}

.play-anywhere-image {
  width: 40%;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.play-anywhere-image img {
  width: 100%;
  max-width: 530px;
  height: auto;
}

@media (max-width: 1024px) {
  .play-anywhere-gradient {
    width: 100%;
    border-bottom-right-radius: 200px;
  }

  .play-anywhere-content {
    flex-direction: column;
    min-height: auto;
    padding: 60px 20px;
  }

  .play-anywhere-section {
    min-height: auto;
  }

  .play-anywhere-text .hero-title-bold {
    font-size: 80px;
  }

  .play-anywhere-text .hero-title-light {
    font-size: 50px;
  }

  .play-anywhere-image {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .play-anywhere-text .hero-title-light {
    font-size: 36px;
  }

  .play-anywhere-text .hero-title-bold {
    font-size: 55px;
  }
}

@media (max-width: 480px) {
  .play-anywhere-text .hero-title-bold {
    font-size: 42px;
  }

  .play-anywhere-text .hero-title-light {
    font-size: 28px;
  }
}
