.page-arcade {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-arcade__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Auxiliary dark background */
  gap: 40px;
  text-align: center;
}

.page-arcade__hero-content {
  max-width: 900px;
}

.page-arcade__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-arcade__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-arcade__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-arcade__btn--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text for gold background */
}

.page-arcade__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-arcade__btn--secondary {
  background-color: #333333; /* Darker auxiliary */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-arcade__btn--secondary:hover {
  background-color: #444444;
  transform: translateY(-3px);
}

.page-arcade__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-arcade__btn--small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-arcade__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-arcade__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-arcade__features-section, .page-arcade__game-categories, .page-arcade__promotions-cta, .page-arcade__how-to-play, .page-arcade__testimonials, .page-arcade__faq-section, .page-arcade__cta-bottom {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: rgba(26, 26, 26, 0.9); /* Semi-transparent dark background */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold primary color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-arcade__features-grid, .page-arcade__category-grid, .page-arcade__steps-grid, .page-arcade__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-arcade__feature-card, .page-arcade__category-card, .page-arcade__step-card, .page-arcade__testimonial-card {
  background-color: #1A1A1A; /* Auxiliary dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__feature-card:hover, .page-arcade__category-card:hover, .page-arcade__step-card:hover, .page-arcade__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-arcade__feature-icon, .page-arcade__category-image, .page-arcade__testimonial-avatar {
  width: 100%;
  max-width: 200px; /* Smaller max-width for icons/avatars within cards */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px; /* Ensure content images are not too small */
}

.page-arcade__feature-icon {
  border-radius: 50%; /* Make feature icons circular */
  max-width: 200px; /* Ensure it's not too small for a card */
  height: 200px; /* Fixed height for circular aspect */
  margin: 0 auto 20px auto;
}

.page-arcade__feature-heading, .page-arcade__category-heading, .page-arcade__step-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-arcade__feature-description, .page-arcade__category-description, .page-arcade__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-arcade__promotions-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  background: linear-gradient(135deg, #1A1A1A, #333333);
  padding: 60px 20px;
}

.page-arcade__promotions-content {
  max-width: 800px;
}

.page-arcade__promotions-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-arcade__promotions-image-wrapper {
  width: 100%;
  max-width: 800px;
}

.page-arcade__promotions-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__testimonial-avatar {
  border-radius: 50%;
  width: 100px; /* Smaller fixed size for avatar */
  height: 100px;
  margin: 0 auto 15px auto;
  border: 3px solid #FFD700;
  min-width: 100px; /* Still ensure it's not tiny */
  min-height: 100px;
}

.page-arcade__testimonial-text {
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.page-arcade__testimonial-author {
  font-weight: bold;
  color: #FFD700;
}

.page-arcade__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-arcade__faq-item {
  background-color: #1A1A1A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-arcade__faq-answer {
  font-size: 1em;
  color: #cccccc;
  padding-top: 10px;
  border-top: 1px solid #333333;
  margin-top: 10px;
}

.page-arcade__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background-color: #333333; /* Darker auxiliary background */
}

.page-arcade__cta-bottom-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-arcade__cta-bottom-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .page-arcade__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__features-grid, .page-arcade__category-grid, .page-arcade__steps-grid, .page-arcade__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__promotions-cta {
    flex-direction: column;
    padding: 40px 15px;
  }
  .page-arcade__cta-bottom-title {
    font-size: 2em;
  }
  .page-arcade__cta-bottom-description {
    font-size: 1.1em;
  }
  /* Ensure all images within .page-arcade are responsive and don't overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px; /* Ensure content images are not too small */
  }
  .page-arcade__feature-icon, .page-arcade__category-image, .page-arcade__testimonial-avatar {
    max-width: 100%;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .page-arcade__feature-icon {
    width: 150px;
    height: 150px;
  }
  .page-arcade__testimonial-avatar {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__section-title {
    font-size: 1.5em;
  }
  .page-arcade__feature-heading, .page-arcade__category-heading, .page-arcade__step-heading {
    font-size: 1.4em;
  }
  .page-arcade__faq-question {
    font-size: 1.2em;
  }
  .page-arcade__cta-bottom-title {
    font-size: 1.6em;
  }
}