.page-arcade {
  color: #000000; /* Dark text for light background */
  background-color: var(--secondary-color, #FFFFFF); /* Ensures light background */
}

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

.page-arcade__hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-arcade__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-arcade__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

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

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

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

.page-arcade__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-arcade__button--primary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register text color */
  border: 2px solid #FFFFFF;
}

.page-arcade__button--primary:hover {
  background-color: #FCBC45; /* Login color on hover */
  color: #000000;
  border-color: #FCBC45;
}

.page-arcade__button--secondary {
  background-color: transparent;
  color: #FCBC45; /* Login text color */
  border: 2px solid #FCBC45;
}

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

.page-arcade__button--small {
  padding: 10px 20px;
  min-width: 150px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #FCBC45;
}

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

.page-arcade__button--large {
  padding: 20px 40px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-arcade__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: 40px;
  position: relative;
  padding-bottom: 15px;
}

.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-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #333333;
}

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

.page-arcade__featured-games-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-arcade__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-arcade__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-arcade__game-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

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

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

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

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

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

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

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

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

.page-arcade__how-to-play-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.page-arcade__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-arcade__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-arcade__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-arcade__cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade__cta-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  margin-bottom: 40px;
}

.page-arcade__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-arcade__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-arcade__cta-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .page-arcade {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-arcade__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 80px);
  }

  .page-arcade__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-arcade__button {
    min-width: unset;
    width: 80%;
    margin: 0 auto;
  }

  .page-arcade__container {
    padding: 20px 15px;
  }

  .page-arcade__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-arcade__game-grid, .page-arcade__benefits-grid, .page-arcade__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-arcade__game-image {
    height: 200px;
  }

  .page-arcade__cta-content {
    margin-bottom: 30px;
  }

  .page-arcade__cta-title {
    font-size: 2em;
  }

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

  .page-arcade__cta-image {
    min-width: unset;
    width: 100%;
  }

  .page-arcade__faq-question {
    font-size: 1.1em;
  }

  .page-arcade__faq-answer {
    font-size: 0.95em;
  }

  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-arcade__button {
    width: 90%;
  }

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

  .page-arcade__cta-title {
    font-size: 1.8em;
  }
}t 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-arcade__faq-answer p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
}

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

.page-arcade__faq-answer a:hover {
  color: #000000;
}

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

.page-arcade__cta-section .page-arcade__section-title {
  color: #FCBC45;
  font-size: 3em;
}

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

/* Responsive adjustments */
@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;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-content {
    padding: 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-arcade__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-arcade__button--small {
    width: auto;
    min-width: unset;
  }
  .page-arcade__container {
    padding: 30px 15px;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-arcade__feature-card, .page-arcade__game-card, .page-arcade__step-card, .page-arcade__testimonial-card {
    padding: 20px;
  }
  .page-arcade__feature-image, .page-arcade__game-image, .page-arcade__testimonial-avatar {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-arcade__cta-section .page-arcade__section-title {
    font-size: 2.5em;
  }
  .page-arcade__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-arcade__faq-answer {
    padding: 15px 20px;
  }
  .page-arcade__faq-answer.active {
    padding: 15px 20px;
  }
  .page-arcade__game-card .page-arcade__button {
    width: calc(100% - 40px);
  }

  /* Ensure no horizontal overflow */
  .page-arcade {
    overflow-x: hidden;
  }
  .page-arcade__hero-section,
  .page-arcade__introduction-section,
  .page-arcade__features-section,
  .page-arcade__games-showcase-section,
  .page-arcade__bonuses-section,
  .page-arcade__how-to-play-section,
  .page-arcade__responsible-gaming-section,
  .page-arcade__testimonials-section,
  .page-arcade__faq-section,
  .page-arcade__cta-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-arcade__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8em;
  }
  .page-arcade__hero-description {
    font-size: 0.9em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-arcade__feature-image, .page-arcade__game-image, .page-arcade__testimonial-avatar {
    min-width: 200px;
    min-height: 200px;
  }
}