.page-entertainment-platform-arcade-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D30; /* Darker blue background */
  line-height: 1.6;
}

.page-entertainment-platform-arcade-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-entertainment-platform-arcade-games__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-entertainment-platform-arcade-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-entertainment-platform-arcade-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 46, 76, 0.7), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-entertainment-platform-arcade-games__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
}

.page-entertainment-platform-arcade-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-entertainment-platform-arcade-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-entertainment-platform-arcade-games__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E4C; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-entertainment-platform-arcade-games__hero-button:hover {
  background-color: #E0B800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-entertainment-platform-arcade-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-entertainment-platform-arcade-games__section-subtitle {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  margin-bottom: 40px;
}

.page-entertainment-platform-arcade-games__features-overview,
.page-entertainment-platform-arcade-games__game-spotlight,
.page-entertainment-platform-arcade-games__why-choose,
.page-entertainment-platform-arcade-games__faq {
  padding: 80px 0;
  background-color: #1A2E4C; /* Main dark blue background for sections */
}

.page-entertainment-platform-arcade-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-entertainment-platform-arcade-games__feature-item {
  background-color: #2A4060; /* Slightly lighter dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-entertainment-platform-arcade-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-entertainment-platform-arcade-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Adjust icon color to gold */
}

.page-entertainment-platform-arcade-games__feature-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-entertainment-platform-arcade-games__feature-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-entertainment-platform-arcade-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-entertainment-platform-arcade-games__game-card {
  background-color: #2A4060;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-entertainment-platform-arcade-games__game-card:hover {
  transform: translateY(-5px);
}

.page-entertainment-platform-arcade-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-entertainment-platform-arcade-games__game-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 15px 20px 10px;
}

.page-entertainment-platform-arcade-games__game-description {
  font-size: 0.95em;
  color: #C0C0C0;
  padding: 0 20px 20px;
}

.page-entertainment-platform-arcade-games__game-button {
  display: block;
  background-color: #FFD700;
  color: #1A2E4C;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-entertainment-platform-arcade-games__game-button:hover {
  background-color: #E0B800;
}

.page-entertainment-platform-arcade-games__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-entertainment-platform-arcade-games__why-choose-item {
  background-color: #2A4060;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-entertainment-platform-arcade-games__why-choose-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-entertainment-platform-arcade-games__why-choose-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-entertainment-platform-arcade-games__call-to-action {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  color: #1A2E4C; /* Dark blue text on gold CTA */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-entertainment-platform-arcade-games__call-to-action-text {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-entertainment-platform-arcade-games__call-to-action-button {
  display: inline-block;
  background-color: #1A2E4C; /* Dark blue button on gold CTA */
  color: #FFD700; /* Gold text on dark blue button */
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-entertainment-platform-arcade-games__call-to-action-button:hover {
  background-color: #0F1D30; /* Even darker blue on hover */
  transform: translateY(-2px);
}

.page-entertainment-platform-arcade-games__faq-item {
  background-color: #2A4060;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-entertainment-platform-arcade-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-entertainment-platform-arcade-games__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  display: block; /* Ensure answer is visible by default */
}

.page-entertainment-platform-arcade-games .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-entertainment-platform-arcade-games__hero-title {
    font-size: 2.8em;
  }
  .page-entertainment-platform-arcade-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-entertainment-platform-arcade-games__hero {
    height: 500px;
  }
  .page-entertainment-platform-arcade-games__hero-title {
    font-size: 2.2em;
  }
  .page-entertainment-platform-arcade-games__hero-description {
    font-size: 1em;
  }
  .page-entertainment-platform-arcade-games__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-entertainment-platform-arcade-games__section-title {
    font-size: 1.8em;
  }
  .page-entertainment-platform-arcade-games__section-subtitle {
    font-size: 1em;
  }
  .page-entertainment-platform-arcade-games__call-to-action-text {
    font-size: 1.4em;
  }
  .page-entertainment-platform-arcade-games__call-to-action-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-entertainment-platform-arcade-games__hero {
    height: 400px;
  }
  .page-entertainment-platform-arcade-games__hero-title {
    font-size: 1.8em;
  }
  .page-entertainment-platform-arcade-games__hero-description {
    font-size: 0.9em;
  }
  .page-entertainment-platform-arcade-games__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-entertainment-platform-arcade-games__section-title {
    font-size: 1.5em;
    padding-top: 40px;
  }
  .page-entertainment-platform-arcade-games__features-overview,
  .page-entertainment-platform-arcade-games__game-spotlight,
  .page-entertainment-platform-arcade-games__why-choose,
  .page-entertainment-platform-arcade-games__faq {
    padding: 40px 0;
  }
  .page-entertainment-platform-arcade-games__feature-item,
  .page-entertainment-platform-arcade-games__game-card,
  .page-entertainment-platform-arcade-games__why-choose-item,
  .page-entertainment-platform-arcade-games__faq-item {
    padding: 20px;
  }
  .page-entertainment-platform-arcade-games__call-to-action-text {
    font-size: 1.2em;
  }
  .page-entertainment-platform-arcade-games__call-to-action-button {
    padding: 10px 25px;
    font-size: 1em;
  }
}