/* Hero 4: Text left with background, PLAY button */
.hero4 {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 40px;
  background-image: url('../img/img1pc.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero4-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero4-content {
  max-width: 600px;
}

.hero4-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

.hero4-subtitle {
  font-size: 28px;
  color: var(--text-primary);
  margin: 0 0 30px 0;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.hero4-button {
  display: inline-block;
  padding: 15px 50px;
  background-color: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.hero4-button:hover {
  background-color: var(--button-hover-bg);
}

@media (max-width: 768px) {
  .hero4 {
    height: auto;
    min-height: 500px;
    padding: 100px 20px 40px;
    background-image: url('../img/img1mob.webp');
  }

  .hero4-container {
    justify-content: center;
    text-align: center;
  }

  .hero4-content {
    max-width: 100%;
  }

  .hero4-title {
    font-size: 36px;
  }

  .hero4-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .hero4-button {
    font-size: 18px;
    padding: 12px 40px;
  }
}
