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

.page-arcade__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden; /* For image positioning */
}

.page-arcade__hero-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  color: #8B0000; /* Auxiliary color for impact */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade__hero-button {
  display: inline-block;
  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;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-arcade__hero-button--primary {
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Auxiliary color for text */
  border: 2px solid #FFD700;
}

.page-arcade__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-arcade__hero-button--secondary {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Main color for text */
  border: 2px solid #8B0000;
}

.page-arcade__hero-button--secondary:hover {
  background-color: #6b0000;
  transform: translateY(-2px);
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade__features-section,
.page-arcade__games-section,
.page-arcade__how-to-start-section,
.page-arcade__security-section,
.page-arcade__bonuses-section,
.page-arcade__support-section,
.page-arcade__testimonials-section,
.page-arcade__faq-section,
.page-arcade__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

.page-arcade__features-section {
  background-color: #f8f8f8;
}

.page-arcade__features-title,
.page-arcade__games-title,
.page-arcade__how-to-start-title,
.page-arcade__security-title,
.page-arcade__bonuses-title,
.page-arcade__support-title,
.page-arcade__testimonials-title,
.page-arcade__faq-title,
.page-arcade__cta-final-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.page-arcade__features-intro,
.page-arcade__games-intro,
.page-arcade__how-to-start-intro,
.page-arcade__security-intro,
.page-arcade__bonuses-intro,
.page-arcade__support-intro,
.page-arcade__testimonials-intro,
.page-arcade__faq-intro,
.page-arcade__cta-final-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-arcade__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-arcade__feature-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-arcade__feature-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-arcade__feature-card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-arcade__cta-bottom {
  margin-top: 60px;
}

.page-arcade__game-category {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-arcade__game-category-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-bottom: 25px;
}

.page-arcade__game-image {
  width: 100%;
  max-width: 600px; /* Example max width, adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-arcade__game-description {
  font-size: 1.1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
}

.page-arcade__game-button {
  @extend .page-arcade__hero-button--primary; /* Inherit primary button styles */
}

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

.page-arcade__step-card {
  background-color: #fffaf0; /* Light golden background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-arcade__step-card:hover {
  transform: translateY(-5px);
}

.page-arcade__step-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.page-arcade__step-card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-arcade__security-section {
  background-color: #f0f0f0;
}

.page-arcade__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-arcade__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-arcade__security-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
}

.page-arcade__security-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.page-arcade__security-item::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-arcade__bonuses-section {
  background-color: #fff;
}

.page-arcade__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-arcade__bonus-card {
  background-color: #fdf5e6; /* Light golden tone */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-arcade__bonus-card:hover {
  transform: translateY(-5px);
}

.page-arcade__bonus-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-arcade__bonus-card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-arcade__bonus-card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-arcade__support-section {
  background-color: #f8f8f8;
}

.page-arcade__support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-arcade__support-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-arcade__support-channels {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
}

.page-arcade__support-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.page-arcade__support-item::before {
  content: '📞';
  position: absolute;
  left: 0;
  top: 0;
}

.page-arcade__testimonials-section {
  background-color: #fff;
}

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

.page-arcade__testimonial-card {
  background-color: #fdf5e6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-style: italic;
  position: relative;
}

.page-arcade__testimonial-card::before {
  content: '“';
  font-size: 4em;
  color: #FFD700;
  position: absolute;
  top: 10px;
  left: 15px;
  opacity: 0.5;
  z-index: 0;
}

.page-arcade__testimonial-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.page-arcade__testimonial-author {
  font-weight: bold;
  color: #8B0000;
  position: relative;
  z-index: 1;
}

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

.page-arcade__faq-items {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-arcade__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-arcade__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-arcade__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none; /* Hidden by default */
}

.page-arcade__faq-item.active .page-arcade__faq-answer {
  display: block;
}

.page-arcade__faq-item.active .page-arcade__faq-question::after {
  content: '-';
}

.page-arcade__cta-final-section {
  background-color: #8B0000; /* Auxiliary color for strong CTA */
  color: #FFD700;
  padding: 100px 0;
}

.page-arcade__cta-final-title {
  color: #FFD700;
  font-size: 3em;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-arcade__cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }

  .page-arcade__features-title,
  .page-arcade__games-title,
  .page-arcade__how-to-start-title,
  .page-arcade__security-title,
  .page-arcade__bonuses-title,
  .page-arcade__support-title,
  .page-arcade__testimonials-title,
  .page-arcade__faq-title,
  .page-arcade__cta-final-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }

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

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

  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-arcade__features-section,
  .page-arcade__games-section,
  .page-arcade__how-to-start-section,
  .page-arcade__security-section,
  .page-arcade__bonuses-section,
  .page-arcade__support-section,
  .page-arcade__testimonials-section,
  .page-arcade__faq-section,
  .page-arcade__cta-final-section {
    padding: 60px 0;
  }

  .page-arcade__features-title,
  .page-arcade__games-title,
  .page-arcade__how-to-start-title,
  .page-arcade__security-title,
  .page-arcade__bonuses-title,
  .page-arcade__support-title,
  .page-arcade__testimonials-title,
  .page-arcade__faq-title,
  .page-arcade__cta-final-title {
    font-size: 2em;
  }

  .page-arcade__features-intro,
  .page-arcade__games-intro,
  .page-arcade__how-to-start-intro,
  .page-arcade__security-intro,
  .page-arcade__bonuses-intro,
  .page-arcade__support-intro,
  .page-arcade__testimonials-intro,
  .page-arcade__faq-intro,
  .page-arcade__cta-final-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-arcade__feature-card,
  .page-arcade__step-card,
  .page-arcade__bonus-card,
  .page-arcade__testimonial-card,
  .page-arcade__faq-item {
    padding: 20px;
  }

  .page-arcade__feature-icon,
  .page-arcade__step-icon,
  .page-arcade__bonus-icon {
    width: 200px; /* Ensure minimum size */
    height: auto;
  }

  .page-arcade__security-content,
  .page-arcade__support-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-arcade__security-image,
  .page-arcade__support-image {
    max-width: 100%;
  }

  .page-arcade__security-list,
  .page-arcade__support-channels,
  .page-arcade__faq-items {
    max-width: 100%;
    padding: 0 10px;
  }

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

  .page-arcade__cta-final-actions {
    flex-direction: column;
  }

  .page-arcade__cta-final-actions .page-arcade__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  
  /* Critical: Ensure all images within .page-arcade are responsive and don't overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-arcade {
    overflow-x: hidden;
  }
}

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

  .page-arcade__features-title,
  .page-arcade__games-title,
  .page-arcade__how-to-start-title,
  .page-arcade__security-title,
  .page-arcade__bonuses-title,
  .page-arcade__support-title,
  .page-arcade__testimonials-title,
  .page-arcade__faq-title,
  .page-arcade__cta-final-title {
    font-size: 1.8em;
  }

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

  .page-arcade__feature-card-title,
  .page-arcade__step-card-title,
  .page-arcade__bonus-card-title {
    font-size: 1.4em;
  }

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

  .page-arcade__faq-question {
    font-size: 1.1em;
  }
}