.page-about {
  color: #F2FFF6; /* Text Main for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--background-color, #08160F);
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0; /* Small top padding, more bottom padding */
  background-color: #08160F; /* Ensure hero section has a background */
  overflow: hidden; /* Ensure no overflow */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 500px; /* Limit hero image height for better content visibility */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Adjust to place content below image but slightly overlap for visual appeal, without actual text overlaying image */
  background-color: rgba(8, 22, 15, 0.85); /* Darker background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-about__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main for button text */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: none;
  color: #2AD16F; /* Green for secondary button text */
  border: 2px solid #2AD16F;
  margin-left: 15px;
}

.page-about__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #08160F; /* Default section background */
}

.page-about__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG for alternating sections */
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #2AD16F; /* Green */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-about__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
}

.page-about__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Green */
}

.page-about__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-about__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__game-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-about__game-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__game-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__game-title a {
  color: #2AD16F; /* Green */
  text-decoration: none;
}

.page-about__game-title a:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold on hover */
}

.page-about__game-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-about__join-us .page-about__text-block a {
  color: #2AD16F;
  text-decoration: none;
}

.page-about__join-us .page-about__text-block a:hover {
  text-decoration: underline;
}

.page-about__faq-section {
  background-color: #08160F;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  user-select: none;
  list-style: none; /* For details summary */
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-about__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Green */
}

.page-about__faq-item[open] .page-about__faq-toggle {
  content: '−';
}

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #2E7A4E; /* Divider */
}

.page-about__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-content {
    margin-top: -60px; /* Adjust for mobile */
    padding: 15px;
  }

  .page-about__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
  }

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

  .page-about__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-about__btn-secondary {
    margin-left: 0;
    margin-top: 15px; /* Stack buttons */
  }

  .page-about__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

  .page-about__list-item {
    font-size: 0.9em;
  }

  .page-about__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-about__feature-card,
  .page-about__game-item {
    padding: 20px;
  }

  .page-about__card-title,
  .page-about__game-title {
    font-size: 1.2em;
  }

  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-about__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-about__hero-section .page-about__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure all containers containing images/videos/buttons are responsive */
  .page-about__section,
  .page-about__container,
  .page-about__hero-content,
  .page-about__feature-card,
  .page-about__game-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Removed global padding here, better to apply to specific elements if needed */
    /* padding-right: 15px; */
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Specific padding for sections for mobile */
  .page-about__section > .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-section {
    padding-top: 10px !important;
  }

  .page-about__hero-section .page-about__hero-content {
    width: calc(100% - 30px); /* Adjust for container padding */
    margin-left: 15px;
    margin-right: 15px;
  }
}