.page-arcade {
  color: #333333; /* Dark text for light body background */
}

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

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

.page-arcade__hero-container {
  position: relative;
  width: 100%; /* No fixed width, allow padding to control */
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade__hero-content {
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 51, 102, 0.7); /* Dark blue with transparency */
  border-radius: 10px;
}

.page-arcade__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for title */
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-arcade__hero-button,
.page-arcade__cta-button,
.page-arcade__card-button,
.page-arcade__step-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold background */
  color: #003366; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-arcade__hero-button:hover,
.page-arcade__cta-button:hover,
.page-arcade__card-button:hover,
.page-arcade__step-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-arcade__cta-button--large {
  padding: 18px 35px;
  font-size: 1.25em;
}

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

.page-arcade__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue title */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-arcade__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-arcade__introduction-section,
.page-arcade__advantages-section,
.page-arcade__get-started-section,
.page-arcade__promotions-section,
.page-arcade__responsible-gaming-section,
.page-arcade__support-section,
.page-arcade__faq-section,
.page-arcade__conclusion-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-arcade__introduction-section,
.page-arcade__get-started-section,
.page-arcade__responsible-gaming-section,
.page-arcade__support-section,
.page-arcade__faq-section,
.page-arcade__conclusion-section {
  background-color: #ffffff;
}

.page-arcade__categories-section,
.page-arcade__advantages-section,
.page-arcade__promotions-section {
  background-color: #f8f8f8;
}

.page-arcade__category-grid,
.page-arcade__advantages-grid,
.page-arcade__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__category-card,
.page-arcade__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__category-card:hover,
.page-arcade__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid #FFCC00; /* Gold border */
}

.page-arcade__card-title {
  font-size: 1.8em;
  color: #003366;
  margin: 25px 15px 15px 15px;
}

.page-arcade__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.page-arcade__advantage-item {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-arcade__advantage-item:hover {
  transform: translateY(-5px);
}

.page-arcade__advantage-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-arcade__advantage-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-arcade__advantage-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

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

.page-arcade__step-item {
  background-color: #f0f7ff; /* Light blue background */
  border: 1px solid #cce0ff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-arcade__step-item:hover {
  background-color: #e0f0ff;
  border-color: #aaccff;
}

.page-arcade__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-arcade__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-arcade__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: background-color 0.3s ease;
}

.page-arcade__faq-item:hover {
  background-color: #f0f0f0;
}

.page-arcade__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-arcade__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFCC00;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-arcade__faq-question.page-arcade__faq-question--active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-arcade__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-arcade__faq-answer.page-arcade__faq-answer--active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 2.8em;
  }

  .page-arcade__hero-description {
    font-size: 1.1em;
  }

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

@media (max-width: 768px) {
  .page-arcade__hero-section {
    min-height: 400px;
  }

  .page-arcade__hero-title {
    font-size: 2.2em;
  }

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

  .page-arcade__hero-button,
  .page-arcade__cta-button,
  .page-arcade__card-button,
  .page-arcade__step-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-arcade__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-arcade__container {
    padding: 30px 15px;
  }

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

  .page-arcade__text-content {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-arcade__category-grid,
  .page-arcade__advantages-grid,
  .page-arcade__promo-grid,
  .page-arcade__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-arcade__card-image,
  .page-arcade__advantage-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }

  .page-arcade__category-card,
  .page-arcade__promo-card,
  .page-arcade__advantage-item,
  .page-arcade__step-item {
    padding: 20px;
  }

  /* Ensure all content area images are responsive and do not cause horizontal scroll */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all content images are at least 200px and responsive */
.page-arcade img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
  height: auto;
}

/* No filter properties for images */
.page-arcade img {
  filter: none; /* Ensure no CSS filters are applied to change image color */
}