.why-play {
  padding: 60px 0 80px;
  text-align: center;
}

.why-play-inner {
  margin: 0 auto;
  padding: 0 24px;
}

.why-play-title {
  font-size: 28px;
  font-weight: 900;
  color: #fce046;
  margin-bottom: 12px;
}

.why-play-subtitle {
  font-size: 16px;
  color: #f1f1f1;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 24px;
}

.why-play-features {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #681675;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-text {
  text-align: left;
}

.feature-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fce046;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 12px;
  color: rgba(241, 241, 241, 0.8);
  line-height: 16px;
  white-space: nowrap;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .why-play-features {
    gap: 16px;
    width: 100%;
  }

  .feature-dot {
    display: none;
  }
  .feature-card {
    width: 100%;
  }
  .feature-text p {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .why-play {
    padding: 40px 0 48px;
  }

  .why-play-title {
    font-size: 22px;
  }
}
