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

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

.page-about__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

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

.page-about__hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-about__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-about__button--register:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

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

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

.page-about__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #000000;
}

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

.page-about__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__text-content--light {
  color: #f0f0f0;
}

.page-about__image-content {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  object-fit: cover;
}

.page-about__image-content--center {
  margin-left: auto;
  margin-right: auto;
}

.page-about__mission-section,
.page-about__features-section,
.page-about__values-section,
.page-about__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-about__bg-dark {
  background-color: #000000; /* Main dark color */
  color: #FFFFFF;
}

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

.page-about__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-about__timeline-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible card on dark background */
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #FCBC45;
}

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

.page-about__timeline-description {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-about__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

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

.page-about__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-about__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-about__button--promo {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 15px;
}

.page-about__button--promo:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

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

.page-about__button--responsible-gaming {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  margin-top: 30px;
}

.page-about__button--responsible-gaming:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

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

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

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

.page-about__button--register-free:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

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

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

.page-about__contact-section {
  text-align: center;
}

.page-about__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-about__button--contact:hover {
  background-color: #333333;
  border-color: #333333;
}

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

  .page-about__hero-description {
    font-size: 1.1em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__timeline-title {
    font-size: 1.5em;
  }

  .page-about__feature-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 450px;
  }

  .page-about__hero-overlay {
    padding: 30px;
  }

  .page-about__hero-title {
    font-size: 2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__text-content {
    font-size: 0.95em;
  }

  .page-about__image-content {
    max-width: 100%;
    height: auto;
  }

  .page-about__mission-section,
  .page-about__features-section,
  .page-about__values-section,
  .page-about__contact-section,
  .page-about__journey-section,
  .page-about__responsible-gaming-section,
  .page-about__cta-section {
    padding: 60px 0;
  }

  .page-about__features-grid {
    grid-template-columns: 1fr;
  }

  .page-about__timeline-item {
    padding: 20px;
  }

  .page-about__timeline-title {
    font-size: 1.3em;
  }

  .page-about__feature-title {
    font-size: 1.2em;
  }

  .page-about__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    min-height: 350px;
  }

  .page-about__hero-overlay {
    padding: 20px;
  }

  .page-about__hero-title {
    font-size: 1.5em;
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}