.page-arcade-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
}

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

.page-arcade-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-arcade-games__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-arcade-games__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-arcade-games__hero-content {
  padding: 20px;
  max-width: 900px;
}

.page-arcade-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-arcade-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-arcade-games__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-arcade-games__section-description {
  font-size: 1.05em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-arcade-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-arcade-games__introduction-section,
.page-arcade-games__benefits-section,
.page-arcade-games__how-to-play-section,
.page-arcade-games__faq-section,
.page-arcade-games__cta-bottom-section {
  padding: 60px 0;
}

.page-arcade-games__featured-games-section {
  padding: 60px 0;
  background-color: #111111;
}

.page-arcade-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade-games__game-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-arcade-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-arcade-games__game-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-arcade-games__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-arcade-games__play-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-arcade-games__play-button:hover {
  filter: brightness(1.1);
}

.page-arcade-games__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-arcade-games__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD36B;
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-arcade-games__view-all-button:hover {
  background-color: #F2C14E;
}

.page-arcade-games__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-arcade-games__benefit-item {
  background-color: #111111;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-arcade-games__benefit-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-arcade-games__benefit-description {
  font-size: 1em;
  line-height: 1.5;
  color: #FFF6D6;
}

.page-arcade-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-arcade-games__step-item {
  background-color: #111111;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #F2C14E;
}

.page-arcade-games__step-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-arcade-games__step-description {
  font-size: 1em;
  line-height: 1.5;
  color: #FFF6D6;
}

.page-arcade-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__faq-question {
  font-size: 1.2em;
  color: #FFD36B;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-arcade-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #F2C14E;
}

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

.page-arcade-games__faq-answer {
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
}

.page-arcade-games__faq-answer.open {
  display: block;
}

.page-arcade-games__cta-bottom-section {
  text-align: center;
  background-color: #111111;
  padding: 80px 0;
  border-top: 1px solid #3A2A12;
}

@media (max-width: 768px) {
  .page-arcade-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles main offset */
  }

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

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

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

  .page-arcade-games__game-grid,
  .page-arcade-games__benefits-list,
  .page-arcade-games__steps-list {
    grid-template-columns: 1fr;
  }

  .page-arcade-games__hero-image,
  .page-arcade-games__game-image,
  .page-arcade-games__benefit-icon {
    max-width: 100%;
    height: auto;
  }

  .page-arcade-games__introduction-section,
  .page-arcade-games__benefits-section,
  .page-arcade-games__how-to-play-section,
  .page-arcade-games__faq-section,
  .page-arcade-games__cta-bottom-section {
    padding: 40px 0;
  }

  .page-arcade-games__game-card,
  .page-arcade-games__benefit-item,
  .page-arcade-games__step-item,
  .page-arcade-games__faq-item {
    padding: 20px;
  }

  .page-arcade-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-arcade-games__hero-image-wrapper {
    width: 100%;
    height: auto; /* Ensure image scales */
  }

  .page-arcade-games__hero-image {
    width: 100%;
    height: auto;
  }
}