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

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

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF3E6;
}

.page-about__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__paragraph a {
  color: #FFA53A;
  text-decoration: underline;
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already has padding-top */
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height to prevent image being too tall */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-about__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.2em;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-about__cta-button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF3E6;
  border: none;
}

.page-about__cta-button--primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-about__cta-button--secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A;
  border: 1px solid #FFA53A;
}

.page-about__cta-button--secondary:hover {
  background: #FFA53A;
  color: #17191F;
}

.page-about__cta-button--tertiary {
  background: #A84F0C; /* Border */
  color: #FFF3E6;
  border: none;
}

.page-about__cta-button--tertiary:hover {
  background: #D96800; /* Deep Orange */
}

.page-about__cta-button--text {
  background: transparent;
  color: #FFA53A;
  border: 1px solid #FFA53A;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-about__cta-button--text:hover {
  background: #FFA53A;
  color: #17191F;
}

.page-about__cta-button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-about__cta-button--small:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-about__text-center {
  text-align: center;
}

.page-about__feature-grid, .page-about__game-grid, .page-about__security-grid, .page-about__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-card, .page-about__game-card, .page-about__security-item, .page-about__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Ensures buttons are at bottom */
  height: 100%;
  box-sizing: border-box;
}

.page-about__feature-icon, .page-about__game-image, .page-about__security-icon, .page-about__promo-image {
  width: 100%;
  max-width: 400px; /* Recommended size */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Minimum size */
}

.page-about__feature-icon-small {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Minimum size */
}

.page-about__feature-title, .page-about__game-title, .page-about__security-title, .page-about__promo-title {
  font-size: 1.5em;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__feature-text, .page-about__game-text, .page-about__security-text, .page-about__promo-text {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-about__feature-item {
  background-color: #17191F;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__feature-item-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about__feature-item-text {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-about__faq-section {
  background-color: #0D0E12;
}

.page-about__faq-list {
  margin-top: 40px;
}

.page-about__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* 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.2em;
  font-weight: bold;
  color: #FFA53A;
  cursor: pointer;
  background-color: #17191F;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #FFF3E6;
  border-top: 1px solid #A84F0C; /* Border */
  margin-top: -1px; /* Overlap border */
}

.page-about__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-about__faq-answer a {
  color: #FFA53A;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
}

.page-about__call-to-action-section {
  background-color: #17191F;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
}

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

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

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

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

  .page-about__intro-text {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-about__feature-grid, .page-about__game-grid, .page-about__security-grid, .page-about__promo-grid, .page-about__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-about__feature-icon, .page-about__game-image, .page-about__security-icon, .page-about__promo-image, .page-about__feature-icon-small {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    object-fit: cover !important;
  }

  .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 !important;
  }

  .page-about__cta-button--small {
    padding: 10px 15px !important;
  }

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

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

  .page-about__call-to-action-section {
    margin: 30px 15px;
    padding: 40px 20px;
  }

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

  .page-about__hero-image-wrapper {
    max-height: 300px;
  }
}