.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  padding-bottom: 60px;
  background-color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

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

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

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-about__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-about__button--register:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-about__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-about__button--login:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-about__story-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__story-content {
  margin-bottom: 40px;
  text-align: left;
}

.page-about__story-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-about__story-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-about__section--dark {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-about__section--dark .page-about__section-title {
  color: #FFFFFF;
}

.page-about__section--dark .page-about__section-title::after {
  background-color: #FCBC45;
}

.page-about__mission-section {
  padding: 80px 0;
}

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

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

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

.page-about__mission-card .page-about__card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-about__mission-card p {
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-about__values-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-about__values-list li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
}

.page-about__mission-image {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 40px auto 0 auto;
}

.page-about__why-choose-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__why-choose-intro {
  font-size: 1.15em;
  text-align: center;
  max-width: 800px;
  margin-bottom: 50px;
  color: #333333;
}

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

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

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

.page-about__feature-card .page-about__card-title {
  font-size: 1.7em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__feature-card p {
  font-size: 1.0em;
}

.page-about__why-choose-image {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.page-about__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-about__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-bottom: 40px;
}

.page-about__button--learn-more:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-about__responsible-gaming-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.page-about__future-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__future-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-about__future-image {
  display: block;
  width: 100%;
  max-width: 1600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__cta-text {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-about__button--explore-games {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-about__button--explore-games:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__story-section, .page-about__mission-section, .page-about__why-choose-section, .page-about__responsible-gaming-section, .page-about__future-section, .page-about__cta-section {
    padding: 60px 0;
  }
  .page-about__mission-grid, .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__hero-image-wrapper, .page-about__story-image, .page-about__mission-image, .page-about__why-choose-image, .page-about__responsible-gaming-image, .page-about__future-image {
    max-width: 100%;
    border-radius: 8px;
  }
  .page-about__hero-image, .page-about__story-image, .page-about__mission-image, .page-about__why-choose-image, .page-about__responsible-gaming-image, .page-about__future-image {
    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__hero-cta-group, .page-about__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-about__story-content p, .page-about__mission-card p, .page-about__values-list, .page-about__why-choose-intro, .page-about__feature-card p, .page-about__responsible-gaming-text, .page-about__future-text, .page-about__cta-text {
    font-size: 0.95em;
  }
}