.page-arcade {
  color: #ffffff; /* Assuming a dark body background from shared.css based on main color #000000 */
}

.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000;
}

.page-arcade__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
}

.page-arcade__hero-title {
  font-size: 3.2rem;
  color: #FCBC45;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.page-arcade__hero-description {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-arcade__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-arcade__btn--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-arcade__btn--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

.page-arcade__introduction-section,
.page-arcade__games-showcase,
.page-arcade__why-choose-us,
.page-arcade__get-started-section,
.page-arcade__mobile-gaming,
.page-arcade__faq-section,
.page-arcade__cta-section {
  padding: 80px 20px;
  background-color: #000000;
  text-align: center;
}

.page-arcade__introduction-container,
.page-arcade__games-container,
.page-arcade__why-choose-container,
.page-arcade__get-started-container,
.page-arcade__mobile-container,
.page-arcade__faq-container,
.page-arcade__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-arcade__section-title {
  font-size: 2.8rem;
  color: #FCBC45;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.page-arcade__section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

.page-arcade__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__game-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-arcade__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-arcade__game-title {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-arcade__game-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-arcade__btn--play,
.page-arcade__btn--deposit,
.page-arcade__btn--promo,
.page-arcade__btn--download,
.page-arcade__btn--join {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1rem;
}

.page-arcade__btn--play:hover,
.page-arcade__btn--deposit:hover,
.page-arcade__btn--promo:hover,
.page-arcade__btn--download:hover,
.page-arcade__btn--join:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-arcade__features-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-arcade__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade__feature-heading {
  font-size: 1.5rem;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-arcade__feature-text {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
}

.page-arcade__benefits-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

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

.page-arcade__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-arcade__step-heading {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-arcade__step-text {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-arcade__mobile-gaming {
  background-color: #1a1a1a;
}

.page-arcade__mobile-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-arcade__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  min-width: 200px;
  min-height: 200px;
}

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

.page-arcade__mobile-content .page-arcade__section-title {
  text-align: left;
}

.page-arcade__mobile-content .page-arcade__section-text {
  text-align: left;
}

.page-arcade__btn--download {
  margin-top: 20px;
}

.page-arcade__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade__faq-question {
  font-size: 1.5rem;
  color: #FCBC45;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-arcade__faq-answer {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  display: block;
}

.page-arcade__cta-section {
  background-color: #1a1a1a;
  padding: 100px 20px;
}

@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 2.8rem;
  }
  .page-arcade__hero-description {
    font-size: 1.2rem;
  }
  .page-arcade__section-title {
    font-size: 2.4rem;
  }
  .page-arcade__mobile-container {
    flex-direction: column;
    text-align: center;
  }
  .page-arcade__mobile-content .page-arcade__section-title,
  .page-arcade__mobile-content .page-arcade__section-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-arcade__hero-title {
    font-size: 2.2rem;
  }
  .page-arcade__hero-description {
    font-size: 1rem;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__btn {
    width: 100%;
    max-width: 250px;
  }
  .page-arcade__section-title {
    font-size: 2rem;
  }
  .page-arcade__section-text {
    font-size: 0.95rem;
  }
  .page-arcade__game-grid,
  .page-arcade__features-list,
  .page-arcade__steps-list {
    grid-template-columns: 1fr;
  }
  .page-arcade__game-image,
  .page-arcade__benefits-image,
  .page-arcade__mobile-image {
    max-width: 100%;
    height: auto;
    max-height: none; /* Reset max-height for mobile */
    min-width: 200px; /* Ensure min width */
    min-height: 200px; /* Ensure min height */
  }
  .page-arcade__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }
  .page-arcade__hero-content {
    padding: 20px;
    max-width: 90%;
  }
  .page-arcade__faq-question {
    font-size: 1.3rem;
  }
  .page-arcade__faq-answer {
    font-size: 0.9rem;
  }
  .page-arcade__mobile-container {
    gap: 30px;
  }
  /* Ensure all content images within .page-arcade are responsive */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 1.8rem;
  }
  .page-arcade__hero-description {
    font-size: 0.9rem;
  }
  .page-arcade__section-title {
    font-size: 1.8rem;
  }
  .page-arcade__game-title {
    font-size: 1.5rem;
  }
  .page-arcade__feature-heading,
  .page-arcade__step-heading,
  .page-arcade__faq-question {
    font-size: 1.2rem;
  }
}