.page-about {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-about__heading {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__sub-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.6)); /* Overlay for image */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__hero-button--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

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

.page-about__hero-button--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-about__hero-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
  transform: translateY(-3px);
}

.page-about__mission-vision {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-about__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  font-size: 1em;
  color: #666666;
  text-align: left;
}

.page-about__values {
  padding: 60px 0;
  background-color: #e9ecef;
}

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

.page-about__value-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__value-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__value-text {
  font-size: 0.95em;
  color: #666666;
}

.page-about__journey {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.page-about__journey-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-about__text-block {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: justify;
}

.page-about__gaming-portfolio {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-about__category-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-about__category-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__category-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__category-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-about__category-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #007bff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__category-link:hover {
  background-color: #e0a800;
}

.page-about__security {
  padding: 60px 0;
  background-color: #e9ecef;
}

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

.page-about__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__feature-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

.page-about__feature-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__feature-link:hover {
  color: #0056b3;
}

.page-about__responsible-gaming {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-about__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-about__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__button--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-about__button--outline:hover {
  background-color: #007bff;
  color: #ffffff;
}

.page-about__experience {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.page-about__experience-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__experience-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

.page-about__experience-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__experience-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

.page-about__experience-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__experience-link:hover {
  color: #0056b3;
}

.page-about__promotions {
  padding: 60px 0;
  background-color: #e9ecef;
}

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

.page-about__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__promo-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__promo-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-about__promo-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #007bff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__promo-link:hover {
  background-color: #e0a800;
}

.page-about__cta {
  padding: 80px 0;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-about__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-about__cta-button--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-about__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

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

.page-about__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.2em;
  }
  .page-about__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
  }
  .page-about__hero-button {
    width: 80%;
  }
  .page-about__heading {
    font-size: 1.8em;
  }
  .page-about__sub-description {
    font-size: 0.95em;
  }
  .page-about__text-block {
    font-size: 1em;
  }
  .page-about__card-title, .page-about__value-title, .page-about__category-title, .page-about__feature-title, .page-about__experience-title, .page-about__promo-title {
    font-size: 1.3em;
  }
  .page-about__card-text, .page-about__value-text, .page-about__category-text, .page-about__feature-text, .page-about__experience-text, .page-about__promo-text {
    font-size: 0.9em;
  }
  .page-about__cta-button {
    font-size: 1em;
    padding: 15px 25px;
  }
  .page-about__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile overflow prevention for images within content area */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__hero-button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-about__heading {
    font-size: 1.5em;
  }
  .page-about__sub-description {
    font-size: 0.85em;
  }
  .page-about__card-title, .page-about__value-title, .page-about__category-title, .page-about__feature-title, .page-about__experience-title, .page-about__promo-title {
    font-size: 1.1em;
  }
  .page-about__card-text, .page-about__value-text, .page-about__category-text, .page-about__feature-text, .page-about__experience-text, .page-about__promo-text {
    font-size: 0.85em;
  }
  .page-about__cta-button {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}