.page-about {
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Main content background should be transparent to show body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-about__section {
  padding: 80px 20px;
  text-align: center;
}

.page-about__section--dark {
  background-color: #1A202C; /* Main brand color for dark sections */
}

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

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for titles */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.page-about__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
  z-index: 1;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.page-about__hero-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

.page-about__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

/* Story Section */
.page-about__story-section {
  background-color: #2a303c;
  color: #f0f0f0;
}

.page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-about__story-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-about__story-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__story-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__value-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

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

.page-about__value-description {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Why Choose Section */
.page-about__why-choose-section {
  background-color: #2a303c;
  color: #f0f0f0;
}

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

.page-about__why-choose-item {
  background-color: rgba(255, 215, 0, 0.05); /* Very light gold tint */
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-about__why-choose-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__why-choose-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__cta-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-about__cta-image {
  width: 50%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-content {
  width: 50%;
}

.page-about__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-about__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-about__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsible Gaming Section */
.page-about__responsible-gaming-content {
  display: flex;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.page-about__responsible-gaming-text {
  flex: 1;
}

.page-about__responsible-gaming-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-about__text-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-about__responsible-gaming-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-about__responsible-gaming-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Community Section */
.page-about__community-section {
  background-color: #2a303c;
  color: #f0f0f0;
}

.page-about__community-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__community-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.page-about__community-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.25em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__community-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

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

.page-about__community-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-about__community-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3em;
  }
  .page-about__hero-description {
    font-size: 1.2em;
  }
  .page-about__story-grid,
  .page-about__responsible-gaming-content {
    grid-template-columns: 1fr;
  }
  .page-about__story-image-wrapper,
  .page-about__responsible-gaming-image-wrapper {
    margin-top: 40px;
  }
  .page-about__story-image,
  .page-about__responsible-gaming-image {
    max-width: 100%;
  }
  .page-about__cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-about__cta-image,
  .page-about__cta-content {
    width: 100%;
  }
  .page-about__cta-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-container {
    height: 500px;
  }
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__hero-button {
    width: 100%;
    max-width: 280px;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__section {
    padding: 60px 15px;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__cta-title {
    font-size: 2em;
  }
  .page-about__cta-description {
    font-size: 1.1em;
  }
  .page-about__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-about__community-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__community-button {
    width: 100%;
    max-width: 280px;
  }
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-container {
    height: 400px;
  }
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__value-icon {
    width: 80px;
    height: 80px;
  }
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__cta-description {
    font-size: 1em;
  }
  .page-about__story-content p,
  .page-about__why-choose-description,
  .page-about__responsible-gaming-text p,
  .page-about__community-description {
    font-size: 0.95em;
  }
  .page-about__value-card,
  .page-about__why-choose-item {
    padding: 20px;
  }
}