.page-arcade {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Ensures consistency with body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-arcade__hero-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF; /* Light text for dark hero background */
  position: relative;
  overflow: hidden;
}

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

.page-arcade__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #FCBC45; /* Highlight with login color */
}

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-arcade__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-arcade__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-arcade__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-arcade__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-arcade__info-section,
.page-arcade__why-choose-section,
.page-arcade__getting-started-section,
.page-arcade__faq-section,
.page-arcade__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-arcade__info-container,
.page-arcade__why-choose-container,
.page-arcade__getting-started-container,
.page-arcade__faq-container,
.page-arcade__cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-arcade__info-title,
.page-arcade__why-choose-title,
.page-arcade__getting-started-title,
.page-arcade__faq-title,
.page-arcade__cta-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-arcade__info-subtitle,
.page-arcade__benefit-subtitle,
.page-arcade__step-subtitle,
.page-arcade__faq-question,
.page-arcade__game-type-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-arcade__info-text,
.page-arcade__why-choose-text,
.page-arcade__benefit-description,
.page-arcade__step-description,
.page-arcade__faq-answer,
.page-arcade__game-type-description,
.page-arcade__cta-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

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

.page-arcade__game-type-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-arcade__game-type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-arcade__benefit-item,
.page-arcade__step-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-arcade__benefit-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Minimum size for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-arcade__button--promo,
.page-arcade__button--support,
.page-arcade__button--register-small,
.page-arcade__button--deposit-gcash {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 40px;
  margin-top: 15px;
  border: 2px solid #FCBC45;
}

.page-arcade__button--promo:hover,
.page-arcade__button--support:hover,
.page-arcade__button--register-small:hover,
.page-arcade__button--deposit-gcash:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

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

.page-arcade__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-arcade__faq-answer {
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
  display: none; /* Hidden by default, toggled by JS */
  margin-bottom: 0;
}

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

.page-arcade__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 100px 20px;
  border-radius: 10px;
}

.page-arcade__cta-title {
  color: #FCBC45;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-arcade__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-arcade__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-arcade__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-arcade__button--register-large:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-4px);
}

.page-arcade__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-arcade__button--login-large:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 2.8em;
  }
  .page-arcade__info-title,
  .page-arcade__why-choose-title,
  .page-arcade__getting-started-title,
  .page-arcade__faq-title,
  .page-arcade__cta-title {
    font-size: 2.5em;
  }
  .page-arcade__info-subtitle,
  .page-arcade__benefit-subtitle,
  .page-arcade__step-subtitle,
  .page-arcade__faq-question,
  .page-arcade__game-type-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding: 40px 15px 30px;
  }
  .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__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-arcade__info-section,
  .page-arcade__why-choose-section,
  .page-arcade__getting-started-section,
  .page-arcade__faq-section,
  .page-arcade__cta-section {
    padding: 50px 15px;
    margin-bottom: 20px;
  }
  .page-arcade__info-title,
  .page-arcade__why-choose-title,
  .page-arcade__getting-started-title,
  .page-arcade__faq-title,
  .page-arcade__cta-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-arcade__info-subtitle,
  .page-arcade__benefit-subtitle,
  .page-arcade__step-subtitle,
  .page-arcade__faq-question,
  .page-arcade__game-type-title {
    font-size: 1.4em;
  }
  .page-arcade__game-types {
    grid-template-columns: 1fr;
  }
  .page-arcade__game-type-image,
  .page-arcade__benefit-image {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-arcade__cta-title {
    font-size: 2.5em;
  }
  .page-arcade__cta-description {
    font-size: 1.1em;
  }
  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button--register-large,
  .page-arcade__button--login-large {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__info-title,
  .page-arcade__why-choose-title,
  .page-arcade__getting-started-title,
  .page-arcade__faq-title,
  .page-arcade__cta-title {
    font-size: 1.8em;
  }
  .page-arcade__info-subtitle,
  .page-arcade__benefit-subtitle,
  .page-arcade__step-subtitle,
  .page-arcade__faq-question,
  .page-arcade__game-type-title {
    font-size: 1.2em;
  }
  .page-arcade__hero-buttons,
  .page-arcade__cta-buttons {
    gap: 10px;
  }
}