.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); /* Ensures content is not hidden by fixed header */
}

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

.page-arcade__hero-section {
  background-color: #0A192F; /* Main brand color */
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-arcade__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-arcade__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-arcade__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  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__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  text-align: center;
}

.page-arcade__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A192F; /* Dark text for accent background */
}

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

.page-arcade__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-arcade__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-arcade__button--lg {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

.page-arcade__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  min-width: 120px;
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.page-arcade__section-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-arcade__about-section, .page-arcade__how-to-play-section, .page-arcade__benefits-section, .page-arcade__faq-section, .page-arcade__cta-bottom-section {
  padding: 80px 0;
  background-color: #050E1A; /* Body background color for consistency */
}

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

.page-arcade__feature-card {
  background-color: #0A192F; /* Main brand color */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-arcade__feature-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-arcade__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-arcade__feature-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-arcade__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-arcade__step-item {
  background-color: #0A192F; /* Main brand color */
  border-left: 5px solid #FFD700; /* Accent color for visual cue */
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

.page-arcade__step-description {
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-arcade__call-to-action {
  text-align: center;
  margin-top: 60px;
}

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

.page-arcade__benefit-item {
  background-color: #0A192F; /* Main brand color */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.page-arcade__benefit-item:hover {
  background-color: #1a2c47;
}

.page-arcade__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-arcade__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

.page-arcade__faq-item {
  background-color: #0A192F; /* Main brand color */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-arcade__faq-question {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
}

.page-arcade__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-arcade__faq-answer {
  font-size: 1.1em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-arcade__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-arcade__cta-bottom-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

.page-arcade__cta-bottom-container {
  max-width: 900px;
}

@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: 2.2em;
  }
  .page-arcade__features-grid, .page-arcade__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding: 60px 20px 30px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 100%;
    max-width: 300px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-intro {
    font-size: 0.95em;
  }
  .page-arcade__feature-card, .page-arcade__benefit-item, .page-arcade__step-item, .page-arcade__faq-item {
    padding: 20px;
  }
  .page-arcade__feature-title, .page-arcade__benefit-title, .page-arcade__step-title {
    font-size: 1.5em;
  }
  .page-arcade__faq-question {
    font-size: 1.3em;
  }
  .page-arcade__features-grid, .page-arcade__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-arcade__hero-image,
  .page-arcade__feature-image,
  .page-arcade__container img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are responsive and not smaller than 200px display size */
  .page-arcade img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size for content images */
    min-height: 200px;
    object-fit: cover;
  }
  .page-arcade__feature-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-arcade__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__section-title {
    font-size: 1.6em;
  }
  .page-arcade__hero-actions {
    gap: 10px;
  }
  .page-arcade__button--lg {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-arcade__feature-title, .page-arcade__benefit-title, .page-arcade__step-title {
    font-size: 1.3em;
  }
  .page-arcade__faq-question {
    font-size: 1.1em;
  }
}