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

.page-about__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  text-align: center;
}

.page-about__dark-section {
  background-color: #17191F; /* Card BG from custom palette */
}

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

.page-about__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #FF8C1A; /* Primary color */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-about__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #0D0E12;
}

.page-about__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1200px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-about__main-title {
  font-size: clamp(32px, 5vw, 50px);
  color: #FF8C1A;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-about__intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #A84F0C; /* Border from custom palette */
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%); /* Glow on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Mission Vision Section */
.page-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__card {
  background-color: #17191F; /* Card BG from custom palette */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF3E6;
  border: 1px solid #A84F0C;
  height: 100%; /* Ensure cards are same height */
}

.page-about__card-title {
  font-size: 26px;
  color: #FF8C1A;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-about__mission-card img,
.page-about__vision-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Values Section */
.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-about__values-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
  border: 1px solid #A84F0C;
}

.page-about__values-heading {
  font-size: 22px;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: bold;
}

/* Game Variety Section */
.page-about__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-about__game-card {
  padding: 20px;
  text-align: center;
}

.page-about__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__game-title {
  font-size: 22px;
  color: #FF8C1A;
  margin-bottom: 10px;
}

.page-about__game-card p {
  font-size: 15px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-about__game-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFA53A;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__game-link:hover {
  background-color: #FFB04D;
}

/* Customer Support Section */
.page-about__customer-support-section img {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border from custom palette */
  overflow: hidden;
  background: #17191F; /* Card BG from custom palette */
  color: #FFF3E6;
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FF8C1A; /* Primary color */
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(255, 140, 26, 0.1); /* Lighter primary color for hover */
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}
details.page-about__faq-item[open] .page-about__faq-qtext {
  color: #FF8C1A;
}
.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  line-height: 1;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background from custom palette */
  border-radius: 0 0 5px 5px;
  text-align: left;
  color: #FFF3E6;
}

.page-about__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

/* General Image styles */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__section {
    padding: 40px 15px;
  }
  .page-about__section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .page-about__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image img {
    border-radius: 4px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-about__intro-text {
    font-size: 16px;
  }
  .page-about__grid,
  .page-about__values-list,
  .page-about__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card,
  .page-about__values-item,
  .page-about__game-card {
    padding: 20px;
  }
  .page-about__card-title,
  .page-about__values-heading,
  .page-about__game-title {
    font-size: 20px;
  }
  .page-about__game-card img {
    
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
  }
  .page-about__faq-answer {
    padding: 0 15px 15px;
  }
  /* Mobile image and container responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-container,
  .page-about__hero-image,
  .page-about__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-about__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-about__text-block {
    font-size: 15px;
  }
  .page-about__game-card img {
    
  }
  .page-about__game-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}