.page-about {
  background-color: #B71C1C; /* Background color from custom palette */
  color: #FFF5E1; /* Main text color from custom palette */
  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__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__dark-bg {
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  margin-bottom: 40px;
  color: #F4D34D; /* Gold color for titles */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  color: #F4D34D; /* Gold color for main title */
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.08em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  overflow: hidden;
  color: #FFF5E1;
  background-color: #B71C1C;
}

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

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to allow text readability */
  display: block;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color from custom palette */
  color: #7A0E0E; /* Deep Red for text on button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #F2B544; /* Border color from custom palette */
  box-shadow: 0 0 15px #FFCC66; /* Glow color from custom palette */
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #FFCC66, 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-about__content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
  text-align: left;
}

.page-about__content-grid .page-about__text-block, 
.page-about__content-grid .page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__content-grid .page-about__text-block {
  padding-right: 20px;
}

.page-about__content-grid .page-about__image-block {
  padding-left: 20px;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: block;
  margin: 0 auto;
}

.page-about__mission-vision .page-about__text-block p,
.page-about__responsible-gaming .page-about__text-block p,
.page-about__technology-innovation .page-about__text-block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.page-about__feature-item {
  background-color: #D32F2F; /* Card BG color from custom palette */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  color: #FFF5E1;
  border: 1px solid #F2B544;
}

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

.page-about__feature-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #F4D34D;
}

.page-about__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__join-community {
  background-color: #7A0E0E; /* Deep Red for this section */
  color: #FFF5E1;
  padding: 80px 20px;
}

.page-about__join-community .page-about__section-title {
  color: #F4D34D;
}

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

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

.page-about__faq-item {
  background-color: #D32F2F; /* Card BG for FAQ item */
  border: 1px solid #F2B544; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF5E1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-about__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  background-color: #C91F17; /* Main brand color for summary */
  color: #FFF5E1;
  border-bottom: 1px solid #E53935;
}

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

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

.page-about__faq-toggle {
  font-size: 1.5rem;
  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: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #D32F2F;
  color: #FFF5E1;
}

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

.page-about a {
  color: #F4D34D; /* Gold color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-about a:hover {
  color: #FFCC66; /* Glow color on hover */
}

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

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

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

  .page-about__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

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

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

  .page-about__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__content-grid .page-about__text-block,
  .page-about__content-grid .page-about__image-block {
    padding: 0;
  }

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

  .page-about__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__feature-item {
    padding: 20px;
  }

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

  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}