.page-about {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content clears 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;
  text-align: center;
  padding: 80px 20px;
  gap: 40px;
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Dark background for hero */
}

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

.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.5);
}

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

.page-about__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  filter: brightness(0.7); /* Darken image slightly */
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-about__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Mission & Vision Section */
.page-about__mission-vision {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-about__mission-vision-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__mission-vision-grid .page-about__text-content {
  flex: 2;
}

.page-about__mission-vision-grid .page-about__image-wrapper {
  flex: 1;
}

/* Values Section */
.page-about__values {
  padding: 80px 0;
  background-color: #333;
}

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

.page-about__value-card {
  background-color: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 215, 0, 0.2);
}

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

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

/* Journey Section */
.page-about__journey {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-about__journey-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-about__journey-content--reverse {
  flex-direction: row-reverse;
}

.page-about__journey-content .page-about__text-content {
  flex: 1;
}

.page-about__journey-content .page-about__image-wrapper {
  flex: 1;
}

.page-about__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-about__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

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

/* Why Choose Us Section */
.page-about__why-choose-us {
  padding: 80px 0;
  background-color: #333;
}

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

.page-about__choice-card {
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-about__choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 215, 0, 0.2);
}

.page-about__choice-card .page-about__card-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-about__choice-card .page-about__card-description {
  color: #cccccc;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-about__card-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-about__card-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-about__responsible-gaming-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__responsible-gaming-content .page-about__text-content {
  flex: 1;
}

.page-about__responsible-gaming-content .page-about__image-wrapper {
  flex: 1;
}

/* Call to Action Section */
.page-about__cta {
  padding: 80px 20px;
  text-align: center;
  background-color: #333;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  margin-top: 30px;
}

.page-about__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 20px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-about__mission-vision-grid,
  .page-about__journey-content,
  .page-about__responsible-gaming-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__values-grid,
  .page-about__choice-grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-card,
  .page-about__choice-card {
    padding: 25px;
  }
  .page-about__sub-title {
    font-size: 1.5em;
  }
  .page-about__paragraph {
    font-size: 0.95em;
  }
  .page-about__button,
  .page-about__card-link {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-about__cta-button {
    padding: 15px 40px;
    font-size: 1.2em;
  }

  .page-about__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px; /* Enforce minimum image size */
  }

  .page-about__hero-image-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
  }

  .page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-about__hero-content {
    order: 2;
  }
  .page-about__hero-image-wrapper {
    order: 1;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__hero-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-about__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-about__hero-section {
    padding: 40px 15px;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-image-wrapper {
    height: 250px;
  }
}