/* style/e-games-game-features.css */
.page-e-games-game-features {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-e-games-game-features__hero {
  background: linear-gradient(135deg, #4B0082, #6a0dad, #FFD700);
  padding: 100px 20px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-e-games-game-features__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-e-games-game-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-e-games-game-features__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-e-games-game-features__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #4B0082; /* Deep Purple */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-e-games-game-features__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-e-games-game-features__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 500px;
  height: auto;
  opacity: 0.7;
  z-index: 1;
}

.page-e-games-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(10deg);
}

.page-e-games-game-features__section {
  padding: 80px 0;
  text-align: center;
}

.page-e-games-game-features__section--about {
  background-color: #ffffff;
}

.page-e-games-game-features__section--features {
  background-color: #f0f0f5;
}

.page-e-games-game-features__section--cta {
  background: #4B0082;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-e-games-game-features__section--faq {
  background-color: #ffffff;
}

.page-e-games-game-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-e-games-game-features__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #4B0082;
  font-weight: bold;
}

.page-e-games-game-features__section--cta .page-e-games-game-features__section-title {
  color: #FFD700;
}

.page-e-games-game-features__text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-e-games-game-features__section--cta .page-e-games-game-features__text {
  color: #e0e0e0;
}

.page-e-games-game-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-e-games-game-features__grid-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-e-games-game-features__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-e-games-game-features__grid-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-e-games-game-features__grid-title {
  font-size: 1.8em;
  color: #4B0082;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-e-games-game-features__grid-text {
  font-size: 1em;
  color: #666666;
}

.page-e-games-game-features__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-e-games-game-features__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-e-games-game-features__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-e-games-game-features__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  color: #4B0082;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f5;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px;
}

.page-e-games-game-features__feature-title {
  font-size: 1.6em;
  color: #4B0082;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-e-games-game-features__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-e-games-game-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.page-e-games-game-features__btn-primary--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-e-games-game-features__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-e-games-game-features__btn-secondary:hover {
  background-color: #FFD700;
  color: #4B0082; /* Deep Purple */
  transform: translateY(-3px);
}

.page-e-games-game-features__btn-secondary--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-e-games-game-features__cta-image {
  width: 350px;
  height: auto;
  position: absolute;
  bottom: -50px;
  left: -80px;
  opacity: 0.6;
  z-index: 1;
  transform: rotate(-15deg);
}

.page-e-games-game-features__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-e-games-game-features__faq-question {
  font-size: 1.4em;
  color: #4B0082;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-e-games-game-features__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-e-games-game-features .highlight-text {
  color: #4B0082;
  font-weight: bold;
}

.page-e-games-game-features__section--cta .highlight-text {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-e-games-game-features__hero-title {
    font-size: 2.8em;
  }
  .page-e-games-game-features__hero-subtitle {
    font-size: 1.2em;
  }
  .page-e-games-game-features__section-title {
    font-size: 2.2em;
  }
  .page-e-games-game-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-e-games-game-features__hero-image-wrapper {
    width: 400px;
    bottom: -30px;
    right: -80px;
  }
  .page-e-games-game-features__cta-image {
    width: 280px;
    bottom: -30px;
    left: -60px;
  }
}

@media (max-width: 768px) {
  .page-e-games-game-features__hero {
    padding: 80px 20px 150px 20px; /* Adjust padding for image */
  }
  .page-e-games-game-features__hero-title {
    font-size: 2.2em;
  }
  .page-e-games-game-features__hero-subtitle {
    font-size: 1.1em;
  }
  .page-e-games-game-features__section {
    padding: 60px 0;
  }
  .page-e-games-game-features__section-title {
    font-size: 1.8em;
  }
  .page-e-games-game-features__text {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-e-games-game-features__grid, .page-e-games-game-features__features-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-e-games-game-features__btn-primary, .page-e-games-game-features__btn-secondary {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-e-games-game-features__btn-primary--large, .page-e-games-game-features__btn-secondary--large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-e-games-game-features__cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
  .page-e-games-game-features__hero-image-wrapper {
    position: static;
    width: 80%;
    margin-top: 30px;
    opacity: 1;
    transform: none;
  }
  .page-e-games-game-features__cta-image {
    position: static;
    width: 70%;
    margin-top: 30px;
    opacity: 1;
    transform: none;
  }
  .page-e-games-game-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-e-games-game-features__hero-title {
    font-size: 1.8em;
  }
  .page-e-games-game-features__hero-subtitle {
    font-size: 0.95em;
  }
  .page-e-games-game-features__section-title {
    font-size: 1.6em;
  }
  .page-e-games-game-features__text {
    font-size: 0.9em;
  }
  .page-e-games-game-features__grid-title {
    font-size: 1.5em;
  }
  .page-e-games-game-features__feature-title {
    font-size: 1.3em;
  }
  .page-e-games-game-features__faq-question {
    font-size: 1.2em;
  }
  .page-e-games-game-features__faq-answer {
    font-size: 0.9em;
  }
  .page-e-games-game-features__btn-primary--large, .page-e-games-game-features__btn-secondary--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}