/* style/arcade.css */
.page-arcade {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for overall page content */
  background-color: #0A0A0A; /* Background color for the main content area, consistent with body */
}

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

.page-arcade__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop: ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  background-color: #0A0A0A; /* Fallback for hero section background */
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-arcade__hero-content {
  width: 100%;
  text-align: center;
  padding: 40px 15px;
  background: linear-gradient(135deg, #FFD36B, #F2C14E); /* Auxiliary and Main color gradient */
  color: #0A0A0A; /* Dark text on light gradient for contrast */
}

.page-arcade__hero-content .page-arcade__main-title {
  color: #0A0A0A; /* Dark text on light gradient */
}