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

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

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero */
  text-align: center;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(252, 188, 69, 0.5);
}

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

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

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

.page-about__button--register {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

.page-about__button--login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

.page-about__button--outline:hover {
  background-color: rgba(252, 188, 69, 0.1);
  transform: translateY(-3px);
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 60px;
  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, .page-about__vision-section, .page-about__values-section, .page-about__why-choose-section, .page-about__responsible-gaming-section, .page-about__cta-section {
  padding: 80px 0;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about__story-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin: 20px 0;
  min-width: 200px;
  min-height: 200px;
}

.page-about__vision-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-about__vision-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-about__value-card:hover {
  transform: translateY(-10px);
  background-color: rgba(252, 188, 69, 0.1);
}

.page-about__value-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-about__usp-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(252, 188, 69, 0.2);
}

.page-about__usp-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__usp-card .page-about__text, .page-about__usp-card .page-about__usp-title {
  padding: 0 30px;
}

.page-about__usp-title {
  font-size: 2em;
  color: #FCBC45;
  margin: 25px 0 15px;
}

.page-about__responsible-gaming-section {
  text-align: center;
}

.page-about__cta-section {
  text-align: center;
  padding-bottom: 100px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__section-title {
    font-size: 2.5em;
  }
  .page-about__usp-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding: 60px 20px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-about__story-content, .page-about__vision-content {
    flex-direction: column;
  }
  .page-about__values-grid, .page-about__usp-grid {
    grid-template-columns: 1fr;
  }
  .page-about__value-card, .page-about__usp-card {
    padding: 20px;
  }
  .page-about__usp-image {
    height: 200px;
  }
  .page-about__usp-card .page-about__text, .page-about__usp-card .page-about__usp-title {
    padding: 0 20px;
  }
  .page-about__usp-title {
    font-size: 1.8em;
  }
  .page-about__story-image, .page-about__vision-image, .page-about__value-icon, .page-about__usp-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
  }
  .page-about__container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-about__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__text {
    font-size: 1em;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__usp-title {
    font-size: 1.6em;
  }
  .page-about__hero-actions {
    gap: 10px;
  }
  .page-about__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}