.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Main text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

.page-about__container--center {
  text-align: center;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  box-sizing: border-box;
  background-color: #000000; /* Fallback */
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-about__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__hero-cta-button,
.page-about__cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-about__hero-cta-button:hover,
.page-about__cta-button:hover {
  background-color: #1e87c2; /* Slightly darker primary color */
}

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
  margin: 10px;
}

.page-about__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #26A9E0;
  color: #26A9E0;
}

.page-about__cta-button--secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-about__section {
  padding: 60px 0;
  background-color: #000000; /* Consistent with body */
  color: #ffffff;
}

.page-about__section:nth-of-type(even) {
  background-color: #0a0a0a; /* Slightly different background for visual separation */
}

.page-about__heading {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-about__sub-heading {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-about__paragraph a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__paragraph a:hover {
  text-decoration: underline;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__game-item {
  background-color: rgba(255, 255, 255, 0.05); /* Light transparent background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-about__game-item:hover {
  transform: translateY(-5px);
}

.page-about__game-item .page-about__sub-heading {
  color: #26A9E0;
  font-size: 1.5em;
  margin-top: 0;
}

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

.page-about__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}