.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: #FFF3E6;
}

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

.page-about__hero-content-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(13, 14, 18, 0.7); /* Semi-transparent background for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-about__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 0 15px rgba(255, 165, 58, 0.6);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A; /* Auxiliary color */
}

.page-about__btn-secondary:hover {
  background-color: #FFA53A;
  color: #17191F; /* Card BG */
  box-shadow: 0 0 15px rgba(255, 165, 58, 0.6);
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #FFB04D; /* Glow */
  padding-top: 40px;
}

.page-about__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-about__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FFA53A; /* Auxiliary color */
}

.page-about__text-block p,
.page-about__text-block li {
  margin-bottom: 15px;
  color: #FFF3E6; /* Text Main */
}

.page-about__dark-section {
  background-color: #0D0E12; /* Background */
  padding: 60px 0;
  color: #FFF3E6;
}

.page-about__light-bg {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  color: #FFF3E6;
}

.page-about__text-dark {
  color: #FFF3E6; /* Ensure readability on light background */
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-about__value-list {
  list-style: disc inside;
  padding-left: 20px;
}

.page-about__value-list li {
  margin-bottom: 10px;
}

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

.page-about__feature-card,
.page-about__team-member,
.page-about__faq-item {
  background-color: #17191F; /* Card BG */\  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6;
  display: flex;
  flex-direction: column;
}

.page-about__feature-card:hover,
.page-about__team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
}

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

.page-about__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.page-about__game-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-about__game-list li {
  margin-bottom: 8px;
}

.page-about__game-list a,
.page-about__faq-link {
  color: #FFB04D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__game-list a:hover,
.page-about__faq-link:hover {
  color: #FFA53A; /* Auxiliary color */
  text-decoration: underline;
}

.page-about__btn-link {
  display: inline-block;
  margin-top: 20px;
  color: #FFB04D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-about__btn-link:hover {
  color: #FFA53A;
  text-decoration: underline;
}

.page-about__commitment-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF3E6;
}

.page-about__member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  display: block;
  border: 3px solid #FFA53A; /* Auxiliary color */
  min-width: 200px;
  min-height: 200px;
}

.page-about__member-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 10px;
}

.page-about__member-role {
  font-size: 1rem;
  text-align: center;
  color: #FFF3E6;
}

.page-about__contact-info {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF3E6;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-about__contact-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #FFF3E6;
}

.page-about__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-about__faq-item {
  cursor: pointer;
  overflow: hidden;
  color: #FFF3E6;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  background-color: rgba(255, 165, 58, 0.1); /* Lighter accent for question */
  border-bottom: 1px solid #A84F0C; /* Border */
  list-style: none;
  cursor: pointer;
}

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

details.page-about__faq-item[open] .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF3E6;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-about__grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__hero-content-wrapper {
    padding: 60px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-about__hero-content-wrapper {
    padding: 20px;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-about__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    padding-top: 30px;
  }

  .page-about__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .page-about__text-block p,
  .page-about__text-block li {
    font-size: 0.9rem;
  }

  .page-about__features-grid,
  .page-about__commitment-grid,
  .page-about__team-grid,
  .page-about__contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__feature-card,
  .page-about__team-member,
  .page-about__commitment-item,
  .page-about__contact-info,
  .page-about__faq-item {
    padding: 20px;
  }

  .page-about__card-image {
    height: 180px;
  }

  .page-about__card-title {
    font-size: 1.4rem;
  }

  .page-about__card-text {
    font-size: 0.9rem;
  }

  .page-about__member-photo {
    width: 120px;
    height: 120px;
  }

  .page-about__member-name {
    font-size: 1.3rem;
  }

  .page-about__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-about__faq-answer {
    padding: 15px;
    font-size: 0.9rem;
  }

  /* Force responsive images */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important;
    min-height: unset !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section,
  .page-about__introduction-section,
  .page-about__why-choose-section,
  .page-about__commitment-section,
  .page-about__team-section,
  .page-about__contact-section,
  .page-about__faq-section,
  .page-about__text-block,
  .page-about__image-block,
  .page-about__feature-card,
  .page-about__team-member,
  .page-about__commitment-item,
  .page-about__contact-info,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-content-wrapper {
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
  }

  .page-about__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}