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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px; /* Adjust top padding if shared.css doesn't handle body padding-top */
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

.page-about__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.page-about__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-about__button--explore, .page-about__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-about__button--explore:hover, .page-about__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Darken image to make text pop */
}

.page-about__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-about__story-section, .page-about__mission-vision-section, .page-about__why-choose-section, .page-about__responsible-gaming-section, .page-about__future-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-about__story-section:nth-of-type(odd), .page-about__why-choose-section:nth-of-type(odd), .page-about__future-section:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.page-about__story-title, .page-about__mission-vision-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__future-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-about__story-paragraph, .page-about__value-text, .page-about__why-choose-intro, .page-about__advantage-text, .page-about__why-choose-conclusion, .page-about__responsible-gaming-paragraph, .page-about__future-paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-about__story-image, .page-about__mission-vision-image, .page-about__why-choose-image, .page-about__responsible-gaming-image, .page-about__future-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about__value-cards {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-about__value-card {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__value-heading {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-about__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__advantage-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-about__advantage-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.page-about__advantage-heading {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-about__advantage-text a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

.page-about__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

.page-about__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__story-title, .page-about__mission-vision-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__future-title, .page-about__cta-title {
    font-size: 2.2em;
  }
  .page-about__value-card {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px 30px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 80%;
  }
  .page-about__story-title, .page-about__mission-vision-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__future-title, .page-about__cta-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__content-wrapper {
    padding: 30px 15px;
  }
  .page-about__value-cards {
    flex-direction: column;
    gap: 20px;
  }
  .page-about__value-card {
    max-width: 100%;
    min-width: unset;
  }
  .page-about__advantage-heading {
    font-size: 1.4em;
  }
  .page-about__cta-title {
    font-size: 2.0em;
  }
  .page-about__cta-description {
    font-size: 1.0em;
  }
  .page-about__cta-actions .page-about__button {
    width: 90%;
  }

  /* Mobile content image constraint */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 1.0em;
  }
  .page-about__button {
    padding: 12px 25px;
    font-size: 1.0em;
  }
  .page-about__story-title, .page-about__mission-vision-title, .page-about__why-choose-title, .page-about__responsible-gaming-title, .page-about__future-title, .page-about__cta-title {
    font-size: 1.6em;
  }
  .page-about__value-heading {
    font-size: 1.6em;
  }
  .page-about__advantage-heading {
    font-size: 1.2em;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 0.9em;
  }
}