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

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

.page-arcade__hero-section {
  background-color: #0A192F; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-arcade__hero-container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #0A192F;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  z-index: 1;
}

.page-arcade__about-section, .page-arcade__games-showcase, .page-arcade__why-choose-section, .page-arcade__getting-started-section, .page-arcade__cta-section {
  padding: 60px 0;
  background-color: #f4f4f4; /* Light background for sections */
}

.page-arcade__about-section {
  background-color: #ffffff;
}

.page-arcade__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-arcade__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-arcade__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-arcade__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #0A192F;
  color: #FFD700;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-arcade__button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-arcade__button--secondary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-arcade__button--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

.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: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

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

.page-arcade__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFD700;
}

.page-arcade__card-title {
  font-size: 1.6em;
  color: #0A192F;
  margin: 20px 15px 10px;
}

.page-arcade__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-arcade__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-arcade__card-button:hover {
  background-color: #e6c200;
}

.page-arcade__why-choose-section {
  background-color: #f0f0f0;
}

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

.page-arcade__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.page-arcade__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__feature-title {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.page-arcade__feature-title::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-arcade__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-arcade__getting-started-section {
  background-color: #ffffff;
}

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

.page-arcade__step-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-arcade__step-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-arcade__step-description {
  font-size: 0.95em;
  color: #555555;
}

.page-arcade__cta-section {
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

.page-arcade__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-arcade__cta-button--outline {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-arcade__cta-button--outline:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__game-grid, .page-arcade__features-list, .page-arcade__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-text {
    font-size: 1em;
  }
  .page-arcade__game-image {
    height: 200px;
  }
  .page-arcade__cta-title {
    font-size: 2.2em;
  }
  .page-arcade__cta-description {
    font-size: 1em;
  }
  .page-arcade__cta-button {
    margin: 10px 5px;
    width: calc(100% - 20px);
  }
  /* Mobile content area image constraint */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__game-card img, .page-arcade__feature-item img, .page-arcade__step-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
  .page-arcade__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__section-title {
    font-size: 1.5em;
  }
  .page-arcade__game-grid, .page-arcade__features-list, .page-arcade__steps-list {
    grid-template-columns: 1fr;
  }
  .page-arcade__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}