.page-arcade-games-collection {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #FFFFFF;
}

.page-arcade-games-collection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade-games-collection__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-arcade-games-collection__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-arcade-games-collection__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  z-index: 10;
}

.page-arcade-games-collection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade-games-collection__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-arcade-games-collection__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-arcade-games-collection__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-arcade-games-collection__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade-games-collection__btn--primary:hover {
  background-color: #E0A83D;
  transform: translateY(-2px);
}

.page-arcade-games-collection__btn--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-arcade-games-collection__btn--secondary:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-arcade-games-collection__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  margin-top: 10px;
}

.page-arcade-games-collection__btn--inline:hover {
  background-color: #333333;
}

.page-arcade-games-collection__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-arcade-games-collection__btn--small:hover {
  background-color: #E0A83D;
}

.page-arcade-games-collection__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade-games-collection__btn--large:hover {
  background-color: #E0A83D;
  transform: translateY(-2px);
}

.page-arcade-games-collection__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-arcade-games-collection__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-arcade-games-collection__introduction-section,
.page-arcade-games-collection__games-library-section,
.page-arcade-games-collection__features-section,
.page-arcade-games-collection__promotions-section,
.page-arcade-games-collection__how-to-play-section,
.page-arcade-games-collection__tips-section,
.page-arcade-games-collection__responsible-gaming-section,
.page-arcade-games-collection__faq-section,
.page-arcade-games-collection__cta-section {
  padding: 40px 0;
  background-color: #FFFFFF;
}

.page-arcade-games-collection__game-categories,
.page-arcade-games-collection__promo-cards,
.page-arcade-games-collection__faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-arcade-games-collection__game-category-card,
.page-arcade-games-collection__promo-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-arcade-games-collection__game-category-card:hover,
.page-arcade-games-collection__promo-card:hover {
  transform: translateY(-5px);
}

.page-arcade-games-collection__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-arcade-games-collection__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-arcade-games-collection__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-arcade-games-collection__feature-list,
.page-arcade-games-collection__step-list,
.page-arcade-games-collection__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-arcade-games-collection__feature-item,
.page-arcade-games-collection__step-item,
.page-arcade-games-collection__tip-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-arcade-games-collection__feature-title,
.page-arcade-games-collection__step-title,
.page-arcade-games-collection__tip-title,
.page-arcade-games-collection__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-arcade-games-collection__feature-description,
.page-arcade-games-collection__step-description,
.page-arcade-games-collection__tip-description,
.page-arcade-games-collection__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-arcade-games-collection__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-arcade-games-collection__faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-arcade-games-collection__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
}

.page-arcade-games-collection__faq-question.active::after {
  content: '-';
}

.page-arcade-games-collection__faq-answer {
  display: none;
  margin-top: 10px;
}

.page-arcade-games-collection__faq-question.active + .page-arcade-games-collection__faq-answer {
  display: block;
}

.page-arcade-games-collection__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-arcade-games-collection__cta-section .page-arcade-games-collection__section-title {
  color: #FFFFFF;
}

.page-arcade-games-collection__cta-section .page-arcade-games-collection__text-content {
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade-games-collection__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-arcade-games-collection__hero-title {
    font-size: 2.2em;
  }

  .page-arcade-games-collection__hero-description {
    font-size: 1em;
  }

  .page-arcade-games-collection__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade-games-collection__btn {
    width: 100%;
  }

  .page-arcade-games-collection__section-title {
    font-size: 2em;
  }

  .page-arcade-games-collection__game-categories,
  .page-arcade-games-collection__promo-cards,
  .page-arcade-games-collection__feature-list,
  .page-arcade-games-collection__step-list,
  .page-arcade-games-collection__tip-list,
  .page-arcade-games-collection__faq-items {
    grid-template-columns: 1fr;
  }

  .page-arcade-games-collection__text-content {
    font-size: 1em;
  }

  .page-arcade-games-collection__card-image {
    height: 200px;
  }

  .page-arcade-games-collection__hero-section .page-arcade-games-collection__hero-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-arcade-games-collection img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-arcade-games-collection__hero-title {
    font-size: 1.8em;
  }

  .page-arcade-games-collection__hero-description {
    font-size: 0.9em;
  }

  .page-arcade-games-collection__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}