.page-arcade {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF; /* Explicitly set for content area */
}

.page-arcade__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-arcade__hero-container {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #F0F0F0;
}

.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-arcade__button--register {
  background-color: #FCBC45; /* Login color for Register */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

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

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-arcade__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-arcade__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-arcade__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
  color: #333333;
}

.page-arcade__about-section, .page-arcade__promotions-section, .page-arcade__get-started-section, .page-arcade__mobile-gaming-section, .page-arcade__responsible-gaming-section, .page-arcade__faq-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  background-color: #F8F8F8;
  margin-bottom: 0;
}

.page-arcade__about-section:nth-of-type(odd), .page-arcade__promotions-section:nth-of-type(odd), .page-arcade__get-started-section:nth-of-type(odd), .page-arcade__mobile-gaming-section:nth-of-type(odd), .page-arcade__responsible-gaming-section:nth-of-type(odd), .page-arcade__faq-section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.page-arcade__about-section .page-arcade__content-wrapper, .page-arcade__promotions-section .page-arcade__content-wrapper, .page-arcade__get-started-section .page-arcade__content-wrapper, .page-arcade__mobile-gaming-section .page-arcade__content-wrapper, .page-arcade__responsible-gaming-section .page-arcade__content-wrapper, .page-arcade__faq-section .page-arcade__content-wrapper {
  flex: 1;
}

.page-arcade__about-section .page-arcade__image-content, .page-arcade__promotions-section .page-arcade__image-content, .page-arcade__get-started-section .page-arcade__image-content, .page-arcade__mobile-gaming-section .page-arcade__image-content, .page-arcade__responsible-gaming-section .page-arcade__image-content, .page-arcade__faq-section .page-arcade__image-content {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-arcade__about-section {
  flex-direction: row-reverse; /* Image on right, text on left */
}

.page-arcade__button--learn-more, .page-arcade__button--download-app, .page-arcade__button--responsible-gaming, .page-arcade__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-arcade__button--learn-more:hover, .page-arcade__button--download-app:hover, .page-arcade__button--responsible-gaming:hover, .page-arcade__button--faq:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-arcade__button--claim-bonus, .page-arcade__button--register-play, .page-arcade__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-arcade__button--claim-bonus:hover, .page-arcade__button--register-play:hover, .page-arcade__button--join-now:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

.page-arcade__advantages-section .page-arcade__section-title {
  color: #FFFFFF;
}

.page-arcade__advantages-section .page-arcade__section-title::after {
  background-color: #FCBC45;
}

.page-arcade__advantages-section .page-arcade__text-content {
  color: #F0F0F0;
}

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

.page-arcade__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-arcade__advantage-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-arcade__advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  /* No filter to change color */
}

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

.page-arcade__advantage-description {
  font-size: 1em;
  color: #E0E0E0;
}

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

.page-arcade__step-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.page-arcade__step-item:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

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

.page-arcade__step-description {
  font-size: 1em;
  color: #555555;
}

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

.page-arcade__cta-section .page-arcade__section-title {
  color: #FFFFFF;
}

.page-arcade__cta-section .page-arcade__section-title::after {
  background-color: #FCBC45;
}

.page-arcade__cta-section .page-arcade__text-content {
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__hero-description {
    font-size: 1.2em;
  }
  .page-arcade__section-title {
    font-size: 2.2em;
  }
  .page-arcade__about-section, .page-arcade__promotions-section, .page-arcade__get-started-section, .page-arcade__mobile-gaming-section, .page-arcade__responsible-gaming-section, .page-arcade__faq-section {
    flex-direction: column;
    text-align: center;
  }
  .page-arcade__about-section .page-arcade__image-content, .page-arcade__promotions-section .page-arcade__image-content, .page-arcade__get-started-section .page-arcade__image-content, .page-arcade__mobile-gaming-section .page-arcade__image-content, .page-arcade__responsible-gaming-section .page-arcade__image-content, .page-arcade__faq-section .page-arcade__image-content {
    max-width: 80%;
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-arcade__about-section .page-arcade__content-wrapper, .page-arcade__promotions-section .page-arcade__content-wrapper, .page-arcade__get-started-section .page-arcade__content-wrapper, .page-arcade__mobile-gaming-section .page-arcade__content-wrapper, .page-arcade__responsible-gaming-section .page-arcade__content-wrapper, .page-arcade__faq-section .page-arcade__content-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-arcade {
    padding-top: var(--header-offset, 120px); /* Keep padding for mobile */
  }
  .page-arcade__hero-section {
    padding: 40px 15px;
  }
  .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__button {
    width: 100%;
    max-width: 280px;
  }
  .page-arcade__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-arcade__text-content {
    font-size: 0.95em;
  }
  .page-arcade__game-cards-grid, .page-arcade__advantages-grid, .page-arcade__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-arcade__about-section, .page-arcade__promotions-section, .page-arcade__get-started-section, .page-arcade__mobile-gaming-section, .page-arcade__responsible-gaming-section, .page-arcade__faq-section {
    padding: 60px 0;
  }
  .page-arcade__about-section .page-arcade__image-content, .page-arcade__promotions-section .page-arcade__image-content, .page-arcade__get-started-section .page-arcade__image-content, .page-arcade__mobile-gaming-section .page-arcade__image-content, .page-arcade__responsible-gaming-section .page-arcade__image-content, .page-arcade__faq-section .page-arcade__image-content {
    max-width: 90%;
  }

  /* Critical: Mobile content area image constraint */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__advantage-icon {
    width: 60px;
    height: 60px;
  }
  .page-arcade__advantage-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__game-card, .page-arcade__advantage-item, .page-arcade__step-item {
    padding: 20px;
  }
  .page-arcade__card-title {
    font-size: 1.5em;
  }
  .page-arcade__advantage-title, .page-arcade__step-title {
    font-size: 1.3em;
  }
}