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

.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero */
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image for text readability */
}

.page-arcade__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-arcade__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-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: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

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

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

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

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

.page-arcade__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #333333;
}

.page-arcade__section-description--small {
  font-size: 0.9em;
  margin-top: 20px;
  color: #666666;
}

.page-arcade__about-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.page-arcade__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-arcade__about-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-arcade__button--learn-more:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-arcade__about-image-wrapper {
  text-align: center;
}

.page-arcade__about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-arcade__games-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

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

.page-arcade__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-arcade__game-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-arcade__game-title a {
  color: #000000;
  text-decoration: none;
}

.page-arcade__game-title a:hover {
  color: #FCBC45;
}

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

.page-arcade__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 25px;
  font-size: 1em;
  margin-top: auto; /* Push button to bottom */
}

.page-arcade__button--play-now:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-arcade__why-choose-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

.page-arcade__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #F9F9F9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-arcade__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: contain; /* Ensure larger images fit */
}

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

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

.page-arcade__promotions-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.page-arcade__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-arcade__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-arcade__promo-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #000000;
}

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

.page-arcade__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 25px;
  font-size: 1em;
  margin-top: auto;
}

.page-arcade__button--claim:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-arcade__button--view {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 10px 25px;
  font-size: 1em;
  margin-top: auto;
}

.page-arcade__button--view:hover {
  background-color: transparent;
  color: #000000;
}

.page-arcade__getting-started-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

.page-arcade__step-item {
  text-align: center;
  padding: 30px;
  background-color: #F9F9F9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-arcade__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: contain;
}

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

.page-arcade__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-arcade__getting-started-cta {
  text-align: center;
  margin-top: 50px;
}

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

.page-arcade__button--get-started:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-arcade__faq-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.page-arcade__faq-list {
  margin-top: 40px;
}

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

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

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

.page-arcade__support-link {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #333333;
}

.page-arcade__support-link a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-arcade__support-link a:hover {
  text-decoration: underline;
}

.page-arcade__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

.page-arcade__button--join:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

.page-arcade__button--download:hover {
  background-color: transparent;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-arcade__hero-title {
    font-size: 2.8em;
  }
  .page-arcade__section-title {
    font-size: 2.2em;
  }
  .page-arcade__about-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__about-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-arcade__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    min-height: 450px;
    padding: 30px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-arcade__container {
    padding: 30px 15px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-arcade__games-grid, .page-arcade__features-grid, .page-arcade__promo-cards, .page-arcade__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__game-image, .page-arcade__promo-image, .page-arcade__about-image, .page-arcade__feature-icon, .page-arcade__step-icon {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__feature-icon, .page-arcade__step-icon {
    width: 100px; /* Adjust if original HTML width/height is smaller */
    height: 100px; /* Adjust if original HTML width/height is smaller */
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }
  .page-arcade__cta-title {
    font-size: 2em;
  }
  .page-arcade__cta-description {
    font-size: 1em;
  }
  .page-arcade__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}