.page-about {
  color: #ffffff; /* Light text on dark body background */
  background-color: #1A1A1A;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-about__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-about__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-about__story-section,
.page-about__mission-section,
.page-about__why-choose-section,
.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__story-section {
  background-color: #1A1A1A;
}

.page-about__mission-section {
  background-color: #2a2a2a;
}

.page-about__why-choose-section {
  background-color: #1A1A1A;
}

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

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

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

.page-about__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-about__mission-content {
  padding-right: 20px;
}

.page-about__mission-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__mission-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-about__feature-description a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-about__game-variety-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__cta-content {
  max-width: 800px;
}

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

.page-about__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-about__mission-content {
    padding-right: 0;
  }

  .page-about__mission-image {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 15px;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
  }

  .page-about__story-section,
  .page-about__mission-section,
  .page-about__why-choose-section,
  .page-about__cta-section {
    padding: 60px 0;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__section-text,
  .page-about__feature-description {
    font-size: 0.95em;
  }

  .page-about__cta-title {
    font-size: 2.2em;
  }

  .page-about__cta-description {
    font-size: 1em;
  }

  .page-about__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-about__container {
    padding: 0 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__section-title {
    font-size: 1.6em;
  }

  .page-about__cta-title {
    font-size: 1.8em;
  }
}