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

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-about__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-about__intro-section,
.page-about__values-section,
.page-about__history-section,
.page-about__why-choose-us-section,
.page-about__games-section,
.page-about__security-responsibility-section,
.page-about__team-section,
.page-about__faq-section,
.page-about__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  font-weight: bold;
  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: linear-gradient(90deg, transparent, #2AD16F, transparent);
  border-radius: 2px;
}

.page-about p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__value-cards,
.page-about__game-categories,
.page-about__commitment-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-about__game-categories {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.page-about__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

.page-about__value-icon,
.page-about__game-image {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-about__game-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-about__card-title a:hover {
    color: #2AD16F;
}

.page-about__history-timeline {
  position: relative;
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__history-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #1E3A2A; /* Divider */
  transform: translateX(-50%);
}

.page-about__timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 0;
  text-align: left;
}

.page-about__timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
}

.page-about__timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

.page-about__timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #2AD16F;
  border: 3px solid #08160F;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.page-about__timeline-item:nth-child(odd)::before {
  right: -8px;
}

.page-about__timeline-item:nth-child(even)::before {
  left: -8px;
}

.page-about__timeline-year {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__why-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.page-about__why-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-about__why-item:hover {
  transform: translateY(-5px);
}

.page-about__why-heading {
  font-size: 1.3em;
  color: #2AD16F;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__history-image,
.page-about__team-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

.page-about__btn-secondary {
  background: #08160F; /* Background */
  color: #2AD16F;
  border: 2px solid #2AD16F;
  margin-top: 20px;
}

.page-about__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

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

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

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

.page-about__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  list-style: none;
}

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

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

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

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

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

.page-about__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 40px 0;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-about__description {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-about__intro-section,
  .page-about__values-section,
  .page-about__history-section,
  .page-about__why-choose-us-section,
  .page-about__games-section,
  .page-about__security-responsibility-section,
  .page-about__team-section,
  .page-about__faq-section,
  .page-about__cta-section {
    padding: 50px 0;
  }

  .page-about__value-cards,
  .page-about__game-categories,
  .page-about__commitment-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-about__history-timeline::before {
    left: 20px;
    transform: translateX(0);
  }

  .page-about__timeline-item {
    width: 100%;
    padding-left: 40px;
    text-align: left;
  }

  .page-about__timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 0;
  }

  .page-about__timeline-item:nth-child(even) {
    left: 0;
    padding-left: 40px;
  }

  .page-about__timeline-item::before {
    left: 12px;
    transform: translateY(-50%);
  }

  .page-about__timeline-item:nth-child(odd)::before {
    right: auto;
  }

  .page-about__timeline-item:nth-child(even)::before {
    left: 12px;
  }

  .page-about__why-list {
    padding: 0 15px;
  }

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

  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 10px;
  }

  .page-about__faq-list {
    padding: 0 15px;
  }

  .page-about__card {
    padding: 25px;
  }
  
  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-about__hero-image-wrapper,
  .page-about__intro-section .page-about__container,
  .page-about__values-section .page-about__container,
  .page-about__history-section .page-about__container,
  .page-about__why-choose-us-section .page-about__container,
  .page-about__games-section .page-about__container,
  .page-about__security-responsibility-section .page-about__container,
  .page-about__team-section .page-about__container,
  .page-about__faq-section .page-about__container,
  .page-about__cta-section .page-about__container,
  .page-about__card,
  .page-about__why-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific adjustments for elements that might have padding */
  .page-about__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-about__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-about__value-icon,
  .page-about__game-image {
    max-width: 150px !important;
    height: auto !important;
  }

  .page-about__game-image {
    height: 150px !important; /* Adjust fixed height for mobile */
  }
}