.page-arcade {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-arcade__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #000000; /* Ensure a dark background for the hero section */
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-arcade__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.page-arcade__hero-buttons,
.page-arcade__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-arcade__button--register,
.page-arcade__button--cta-register {
  background-color: #ffffff; /* Register button color */
  color: #000000; /* Text color for register button */
}

.page-arcade__button--register:hover,
.page-arcade__button--cta-register:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-arcade__button--play,
.page-arcade__button--login,
.page-arcade__button--explore,
.page-arcade__button--download,
.page-arcade__button--register-small,
.page-arcade__button--deposit,
.page-arcade__button--play-small,
.page-arcade__button--cta-login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for login button */
}

.page-arcade__button--play:hover,
.page-arcade__button--login:hover,
.page-arcade__button--explore:hover,
.page-arcade__button--download:hover,
.page-arcade__button--register-small:hover,
.page-arcade__button--deposit:hover,
.page-arcade__button--play-small:hover,
.page-arcade__button--cta-login:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

.page-arcade__introduction-section,
.page-arcade__game-collection-section,
.page-arcade__why-choose-jilibet,
.page-arcade__getting-started-section,
.page-arcade__strategies-section,
.page-arcade__future-section,
.page-arcade__cta-section {
  padding: 60px 0;
  background-color: #000000; /* Section background color */
  color: #ffffff;
}

.page-arcade__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FCBC45;
  text-transform: uppercase;
}

.page-arcade__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-arcade__game-category {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-arcade__category-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-arcade__category-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-arcade__category-description {
  font-size: 1em;
  margin-bottom: 25px;
  color: #f0f0f0;
  text-align: justify;
}

.page-arcade__features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-arcade__features-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #f0f0f0;
}

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

.page-arcade__benefit-card,
.page-arcade__step-card,
.page-arcade__strategy-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__benefit-card:hover,
.page-arcade__step-card:hover,
.page-arcade__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-arcade__card-title,
.page-arcade__step-title,
.page-arcade__strategy-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-arcade__card-description,
.page-arcade__step-description,
.page-arcade__strategy-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.page-arcade__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

/* Media Queries for responsiveness */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    padding: 60px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-buttons,
  .page-arcade__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__paragraph {
    font-size: 0.95em;
  }
  .page-arcade__game-category,
  .page-arcade__benefit-card,
  .page-arcade__step-card,
  .page-arcade__strategy-card {
    padding: 25px;
  }
  .page-arcade__category-title,
  .page-arcade__card-title,
  .page-arcade__step-title,
  .page-arcade__strategy-title {
    font-size: 1.4em;
  }
  .page-arcade__category-image,
  .page-arcade__card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
  }
  .page-arcade__container {
    padding: 0 15px;
  }
  /* Ensure all images within .page-arcade are responsive and don't overflow */
  .page-arcade img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@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.5em;
  }
  .page-arcade__button {
    font-size: 1em;
  }
  .page-arcade__features-list li {
    font-size: 0.9em;
  }
  .page-arcade__category-title,
  .page-arcade__card-title,
  .page-arcade__step-title,
  .page-arcade__strategy-title {
    font-size: 1.2em;
  }
  .page-arcade__paragraph,
  .page-arcade__category-description,
  .page-arcade__card-description,
  .page-arcade__step-description,
  .page-arcade__strategy-description {
    font-size: 0.9em;
  }
}