.page-arcade {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

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

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

.page-arcade__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-arcade__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin: 60px 0 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-arcade__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-arcade__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-arcade__featured-games-section,
.page-arcade__benefits-section,
.page-arcade__promotions-section,
.page-arcade__getting-started-section,
.page-arcade__faq-section,
.page-arcade__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-arcade__game-cards {
  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: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

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

.page-arcade__card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 0 20px 10px;
}

.page-arcade__card-description {
  color: #666666;
  font-size: 0.95em;
  margin: 0 20px 20px;
}

.page-arcade__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-arcade__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__button--primary:hover {
  background-color: #e0a53a;
}

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

.page-arcade__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
}

.page-arcade__button--small:hover {
  background-color: #e0a53a;
}

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

.page-arcade__benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-arcade__benefit-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  display: block; /* Ensure it's a block element */
  margin-left: auto; /* Center image */
  margin-right: auto; /* Center image */
}

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

.page-arcade__benefit-description {
  color: #666666;
  font-size: 0.9em;
}

.page-arcade__promotions-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

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

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

.page-arcade__promotions-section .page-arcade__section-description {
  color: #f0f0f0;
}

.page-arcade__promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-arcade__promo-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-arcade__promo-details {
  text-align: center;
}

.page-arcade__promo-subtitle {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-arcade__promo-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-arcade__promo-text a {
  color: #FCBC45;
  text-decoration: underline;
}

.page-arcade__promo-text a:hover {
  color: #FFFFFF;
}

.page-arcade__getting-started-section {
  margin-top: 60px;
}

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

.page-arcade__step-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 60px;
}

.page-arcade__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-arcade__step-description {
  color: #666666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-arcade__faq-section {
  margin-top: 60px;
}

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

.page-arcade__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.page-arcade__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

.page-arcade__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-arcade__faq-answer {
  color: #555555;
  font-size: 1em;
  padding: 0 25px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-arcade__more-faq {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-arcade__more-faq a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__more-faq a:hover {
  text-decoration: underline;
}

.page-arcade__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-arcade__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade__cta-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-arcade__hero-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 80px 40px;
  }

  .page-arcade__hero-content {
    text-align: left;
    max-width: 50%;
  }

  .page-arcade__hero-buttons {
    justify-content: flex-start;
  }

  .page-arcade__hero-image {
    max-width: 45%;
  }

  .page-arcade__promo-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

  .page-arcade__promo-content img {
    max-width: 50%;
  }

  .page-arcade__promo-details {
    text-align: left;
    max-width: 45%;
  }

  .page-arcade__cta-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 80px 40px;
  }

  .page-arcade__cta-content {
    max-width: 50%;
    text-align: left;
  }

  .page-arcade__cta-buttons {
    justify-content: flex-start;
  }

  .page-arcade__cta-section img {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }

  .page-arcade__hero-description {
    font-size: 1em;
  }

  .page-arcade__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

  .page-arcade__game-card img,
  .page-arcade__promo-content img,
  .page-arcade__cta-section img {
    max-width: 100%;
    height: auto;
  }

  .page-arcade__hero-buttons,
  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-arcade__button--primary,
  .page-arcade__button--secondary {
    width: 100%;
    text-align: center;
  }

  .page-arcade__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-arcade__faq-answer {
    padding: 0 20px 15px;
  }

  .page-arcade__faq-answer.active {
    padding: 10px 20px 15px;
  }

  /* Ensure all content images do not cause horizontal scroll */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }

  .page-arcade__game-card img {
    height: 200px; /* Adjust height for mobile */
  }
}