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

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

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

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-about__cta-button--small {
  padding: 12px 25px;
  font-size: 0.95em;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-about__section-subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__intro-section, .page-about__why-choose-us, .page-about__team-section, .page-about__security-section {
  padding: 80px 0;
}

.page-about__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__content-grid-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
}

.page-about__text-block {
  flex: 1;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__text-block p {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-about__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__values-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

.page-about__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-about__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about__feature-list li {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-left: 5px solid #57E38D; /* Glow */
}

.page-about__feature-list li strong {
  color: #F2C14E; /* Gold */
}

.page-about__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-about__gaming-diversity {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-about__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-about__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-about__game-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin: 20px 10px 10px 10px;
}

.page-about__game-card p {
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px 20px 15px;
  font-size: 0.95em;
}

.page-about__game-link {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__game-link:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-about__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: 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: 20px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> */
}

.page-about__faq-question::-webkit-details-marker {
  display: none; /* For <summary> */
}

.page-about__faq-question:hover {
  background-color: #13994A;
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 10px;
}

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

.page-about__faq-answer p {
  margin-bottom: 10px;
}

.page-about__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__content-grid, .page-about__content-grid-reverse {
    flex-direction: column;
  }
  .page-about__text-block, .page-about__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-about__hero-content {
    padding: 0 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-about__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 40px;
  }
  .page-about__intro-section, .page-about__values-section, .page-about__why-choose-us, .page-about__team-section, .page-about__gaming-diversity, .page-about__security-section, .page-about__faq-section {
    padding: 60px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__main-title {
    font-size: clamp(1.6em, 8vw, 2.5em);
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__cta-button, .page-about__game-link {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-button--small {
    padding: 10px 18px;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .page-about__card-title {
    font-size: 1.3em;
  }
  .page-about__feature-list li {
    padding: 12px 15px;
    font-size: 0.9em;
  }
  .page-about__game-grid {
    gap: 20px;
  }
  .page-about__game-title {
    font-size: 1.2em;
  }
  .page-about__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
  /* Ensure all images are responsive */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__hero-image-wrapper,
  .page-about__image-wrapper,
  .page-about__text-block,
  .page-about__card,
  .page-about__game-card,
  .page-about__faq-item,
  .page-about__cta-wrapper,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-about__cta-button {
    font-size: 0.85em;
  }
  .page-about__section-title {
    font-size: 1.6em;
  }
  .page-about__hero-description {
    font-size: 0.9em;
  }
  .page-about__card-title {
    font-size: 1.1em;
  }
  .page-about__card p {
    font-size: 0.85em;
  }
  .page-about__feature-list li {
    font-size: 0.85em;
  }
  .page-about__game-title {
    font-size: 1.1em;
  }
  .page-about__game-card p {
    font-size: 0.85em;
  }
  .page-about__game-link {
    font-size: 0.85em;
  }
  .page-about__faq-question {
    font-size: 0.9em;
  }
  .page-about__faq-answer {
    font-size: 0.9em;
  }
}