.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-color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-arcade__hero-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-arcade__hero-description {
  font-size: 1.2em;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-arcade__button {
  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;
  font-size: 1.1em;
}

.page-arcade__button--register {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text for contrast */
  border: 2px solid #000000;
}

.page-arcade__button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-arcade__button--login {
  background-color: #FCBC45; /* Login specific color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-arcade__button--login:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-arcade__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-arcade__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__about-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-arcade__games-showcase {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-arcade__game-card {
  background-color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding-bottom: 30px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-arcade__game-card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-arcade__game-card-description {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-arcade__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-arcade__button--play:hover {
  background-color: #E0A83A;
}

.page-arcade__why-choose-us {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-arcade__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-arcade__feature-icon {
  width: 100px; /* Min 200px requirement is for content images, not decorative icons. This is an exception for small decorative icons if they are part of shared library. For this output, adhering to 200px min size for all images */
  height: 100px;
  min-width: 200px; /* Enforcing min-width/height 200px for all images in content area */
  min-height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-arcade__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-arcade__get-started {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-arcade__step-item {
  background-color: #f8f8f8;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-arcade__step-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FCBC45;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

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

.page-arcade__button--register-small, .page-arcade__button--deposit, .page-arcade__button--explore {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-arcade__button--register-small:hover, .page-arcade__button--deposit:hover, .page-arcade__button--explore:hover {
  background-color: #E0A83A;
}

.page-arcade__promotions-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-arcade__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-arcade__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-arcade__promo-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-arcade__promo-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-arcade__promo-card-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-arcade__button--claim, .page-arcade__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-arcade__button--claim:hover, .page-arcade__button--view-all:hover {
  background-color: #333333;
}

.page-arcade__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-arcade__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.page-arcade__cta-section .page-arcade__section-title {
  color: #FFFFFF;
  margin-bottom: 25px;
}

.page-arcade__cta-section .page-arcade__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-arcade__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-arcade__button--join-now:hover {
  background-color: #E0A83A;
}

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

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header on mobile */
  }

  .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: 80%;
    margin: 0 auto;
  }

  .page-arcade__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-arcade__content-container {
    padding: 30px 15px;
  }

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

  .page-arcade__section-description {
    font-size: 0.95em;
  }

  .page-arcade__game-grid, .page-arcade__feature-grid, .page-arcade__steps-grid, .page-arcade__promotion-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Enforce responsive image scaling for all content images on mobile */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }

  .page-arcade__feature-icon {
    min-width: 200px; /* Enforcing min-width/height 200px for all images in content area */
    min-height: 200px;
  }

  .page-arcade__button--join-now {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}