.page-arcade {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  /* Inherits body padding-top from shared.css */
}

.page-arcade__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top spacing, body handles main header offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-arcade__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-arcade__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-arcade__hero-content-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-top: -150px; /* Adjust to position content over lower part of hero image without direct overlay */
  position: relative; /* Ensure it's above other content if margin-top is negative */
  z-index: 1;
}

.page-arcade__hero-content {
  max-width: 900px;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-arcade__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 15px;
}

.page-arcade__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-arcade__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-arcade__btn-primary,
.page-arcade__btn-secondary,
.page-arcade__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-arcade__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast on bright button */
  border: 2px solid transparent;
}

.page-arcade__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 0 15px #FFD36B;
}

.page-arcade__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B; /* Border color */
}

.page-arcade__btn-secondary:hover {
  background: #FFD36B;
  color: #111111; /* Dark text for contrast */
  box-shadow: 0 0 15px #FFD36B;
}

.page-arcade__btn-tertiary {
  background: #F2C14E; /* Primary color */
  color: #111111;
  border: none;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-arcade__btn-tertiary:hover {
  background: #FFD36B; /* Auxiliary color */
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-arcade__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(58, 42, 18, 0.3); /* Border with transparency */
}

.page-arcade__section:last-of-type {
  border-bottom: none;
}

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

.page-arcade__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Glow color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-arcade__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}