.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);
}

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

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

.page-arcade__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
}

.page-arcade__text {
  font-size: 1em;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-arcade__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1.05em;
  text-align: center;
}

/* Hero Section */
.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 60px;
}

.page-arcade__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
}

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

.page-arcade__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}

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

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

.page-arcade__hero-actions .page-arcade__button {
  margin: 0 15px;
  min-width: 180px;
}

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

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

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

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

/* About Section */
.page-arcade__about-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-arcade__about-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-arcade__about-content {
  flex: 1;
}

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

.page-arcade__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
}

.page-arcade__button--learn-more:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Popular Games Section */
.page-arcade__popular-games-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.page-arcade__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-arcade__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__game-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade__game-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-arcade__button--play-game:hover {
  background-color: #FCBC45;
  filter: brightness(0.9);
}

/* Features Section */
.page-arcade__features-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  margin-bottom: 60px;
}

.page-arcade__features-section .page-arcade__section-title {
  color: #FCBC45;
}

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

.page-arcade__feature-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-arcade__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-arcade__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__feature-title {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-arcade__feature-description {
  font-size: 0.95em;
  color: #CCCCCC;
}

/* Get Started Section */
.page-arcade__get-started-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-arcade__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-arcade__button--step:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Promotions Section */
.page-arcade__promotions-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-arcade__promotions-section .page-arcade__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-arcade__promo-content {
  flex: 1;
}

.page-arcade__promo-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-arcade__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__button--promo {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-arcade__button--promo:hover {
  background-color: #FCBC45;
  filter: brightness(0.9);
}

/* FAQ Section */
.page-arcade__faq-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.page-arcade__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-arcade__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-arcade__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

.page-arcade__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  font-size: 1.2em;
  padding: 15px 35px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__section-title {
    font-size: 2.2em;
  }
  .page-arcade__about-grid {
    flex-direction: column;
  }
  .page-arcade__promotions-section .page-arcade__container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .page-arcade {
    padding-top: var(--header-offset, 120px);
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__hero-actions .page-arcade__button {
    margin: 0;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-subtitle {
    font-size: 1em;
  }
  .page-arcade__games-grid, .page-arcade__features-grid, .page-arcade__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-arcade__about-grid, .page-arcade__promotions-section .page-arcade__container {
    flex-direction: column;
  }
  .page-arcade__about-image, .page-arcade__promo-image, .page-arcade__game-card-image, .page-arcade__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-arcade__faq-question {
    font-size: 1.1em;
  }
  .page-arcade__button--final-cta {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-arcade__faq-question::after {
    font-size: 1.2em;
  }
}