.page-game-types-arcade-games {
  font-family: 'Arial', sans-serif;
  color: #0A244A; /* Dark blue for primary text */
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-game-types-arcade-games__hero {
  background: linear-gradient(135deg, #0A244A 0%, #204a7a 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-types-arcade-games__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-types-arcade-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-game-types-arcade-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-game-types-arcade-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-types-arcade-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-game-types-arcade-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A244A; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-game-types-arcade-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-types-arcade-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-game-types-arcade-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A; /* Dark blue text on gold */
  transform: translateY(-2px);
}

.page-game-types-arcade-games__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
}

.page-game-types-arcade-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-types-arcade-games__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-game-types-arcade-games__section:last-of-type {
  border-bottom: none;
}

.page-game-types-arcade-games__section-title {
  font-size: 2.5em;
  color: #0A244A; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-arcade-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  border-radius: 2px;
}

.page-game-types-arcade-games__subtitle {
  font-size: 1.8em;
  color: #0A244A;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-game-types-arcade-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-game-types-arcade-games__text .highlight {
  color: #0A244A;
  font-weight: bold;
}

.page-game-types-arcade-games__game-types .page-game-types-arcade-games__section-title {
  margin-bottom: 60px;
}

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

.page-game-types-arcade-games__grid-item {
  background-color: #f2f4f6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-types-arcade-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-types-arcade-games__game-title {
  font-size: 1.5em;
  color: #0A244A;
  margin: 20px 20px 10px;
}

.page-game-types-arcade-games__grid-item .page-game-types-arcade-games__text {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-game-types-arcade-games__download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-game-types-arcade-games__download-text {
  flex: 1;
  min-width: 300px;
}

.page-game-types-arcade-games__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-types-arcade-games__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-types-arcade-games__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-game-types-arcade-games__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1em;
  color: #333333;
}

.page-game-types-arcade-games__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-game-types-arcade-games__list--icon li::before {
  content: '★'; /* Star icon for benefits list */
  color: #FFD700;
}

.page-game-types-arcade-games__security-image {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 40px auto 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-types-arcade-games__faq-item {
  background-color: #f2f4f6;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-types-arcade-games__faq-question {
  font-size: 1.3em;
  color: #0A244A;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}

.page-game-types-arcade-games__faq-question .highlight {
  color: #0A244A;
  font-weight: bold;
}

.page-game-types-arcade-games__faq-answer {
  font-size: 1.05em;
  color: #555555;
  line-height: 1.8;
}

.page-game-types-arcade-games__cta {
  text-align: center;
  background-color: #0A244A; /* Dark blue background */
  color: #ffffff;
  padding: 80px 20px;
  border-top: 5px solid #FFD700;
}

.page-game-types-arcade-games__cta .page-game-types-arcade-games__section-title {
  color: #FFD700; /* Gold title */
}

.page-game-types-arcade-games__cta .page-game-types-arcade-games__section-title::after {
  background-color: #ffffff;
}

.page-game-types-arcade-games__cta .page-game-types-arcade-games__text {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-types-arcade-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-types-arcade-games__hero {
    padding: 60px 15px;
  }

  .page-game-types-arcade-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-arcade-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-types-arcade-games__section-title {
    font-size: 2em;
  }

  .page-game-types-arcade-games__subtitle {
    font-size: 1.5em;
  }

  .page-game-types-arcade-games__section {
    padding: 40px 15px;
  }

  .page-game-types-arcade-games__grid {
    grid-template-columns: 1fr;
  }

  .page-game-types-arcade-games__download-content {
    flex-direction: column;
  }

  .page-game-types-arcade-games__cta {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-types-arcade-games__hero-title {
    font-size: 2em;
  }

  .page-game-types-arcade-games__hero-subtitle {
    font-size: 1em;
  }

  .page-game-types-arcade-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-arcade-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-types-arcade-games__section-title {
    font-size: 1.8em;
  }

  .page-game-types-arcade-games__game-title {
    font-size: 1.3em;
  }

  .page-game-types-arcade-games__faq-question {
    font-size: 1.1em;
  }
  .page-game-types-arcade-games__list li {
    font-size: 1em;
  }
}