.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-about__container--narrow {
  max-width: 960px;
}

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  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-color: #FFD700;
  border-radius: 2px;
}

.page-about__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-about__hero-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-about__hero-description strong {
  color: #FFD700;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: #FFD700;
  color: #0A2463;
}

.page-about__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-about__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn-secondary:hover {
  background: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-about__brand-intro-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about__brand-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__brand-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: none; /* Ensure no color filters */
}

.page-about__item-title {
  font-size: 24px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-about__brand-item p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
}

.page-about__commitment-section {
  padding: 80px 0;
  background: #0A2463;
  color: #ffffff;
}

.page-about__commitment-section .page-about__section-title {
  color: #ffffff;
}

.page-about__commitment-section .page-about__section-title::after {
  background-color: #FFD700;
}

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

.page-about__commitment-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__commitment-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-about__commitment-item .page-about__item-title {
  color: #FFD700;
  font-size: 22px;
}

.page-about__commitment-item p {
  font-size: 15px;
  color: #e0e0e0;
}

.page-about__games-overview-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-about__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-about__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none; /* Ensure no color filters */
}

.page-about__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463;
  padding: 20px 20px 10px;
}

.page-about__game-card p {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-about__card-link {
  display: block;
  background: #FFD700;
  color: #0A2463;
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-about__card-link:hover {
  background: #e6c200;
}

.page-about__faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%);
  color: #ffffff;
}

.page-about__faq-section .page-about__section-title {
  color: #ffffff;
}

.page-about__faq-section .page-about__section-title::after {
  background-color: #FFD700;
}

.page-about__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  color: #0A2463;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-about__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-about__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #0A2463;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-about__faq-item.active .page-about__faq-question {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #e6c200;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #0A2463;
  transform: rotate(180deg);
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f0f0f0;
  color: #333333;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

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

.page-about__responsible-gaming-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about__responsible-gaming-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-about__responsible-gaming-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no color filters */
}

.page-about__responsible-gaming-text {
  flex: 1;
}

.page-about__responsible-gaming-text h3 {
  font-size: 28px;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-about__responsible-gaming-text ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #555555;
}

.page-about__responsible-gaming-text li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-about__responsible-gaming-text strong {
  color: #0A2463;
}

.page-about__future-vision-section {
  padding: 80px 0;
  background: #1A3A7A;
  color: #ffffff;
}

.page-about__future-vision-section .page-about__section-title {
  color: #ffffff;
}

.page-about__future-vision-section .page-about__section-title::after {
  background-color: #FFD700;
}

.page-about__future-vision-section .page-about__section-description {
  color: #e0e0e0;
}

.page-about__future-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: center;
}

.page-about__future-list li {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #e0e0e0;
}

.page-about__future-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 20px;
  line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 42px;
  }
  .page-about__section-title {
    font-size: 32px;
  }
  .page-about__responsible-gaming-content {
    flex-direction: column;
    text-align: center;
  }
  .page-about__responsible-gaming-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__hero-section,
  .page-about__brand-intro-section,
  .page-about__commitment-section,
  .page-about__games-overview-section,
  .page-about__faq-section,
  .page-about__responsible-gaming-section,
  .page-about__future-vision-section {
    padding: 50px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-about__hero-title {
    font-size: 32px;
  }
  .page-about__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-about__section-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__content-grid,
  .page-about__commitment-grid,
  .page-about__games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-about__brand-image,
  .page-about__commitment-icon {
    width: 80px;
    height: 80px;
  }
  .page-about__item-title {
    font-size: 20px;
  }
  .page-about__game-image {
    height: 180px;
  }
  .page-about__card-title {
    font-size: 20px;
  }
  .page-about__faq-list {
    margin-top: 40px;
  }
  .page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-question h3 {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-about__faq-answer {
    padding: 0 20px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px !important;
  }
  .page-about__responsible-gaming-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-about__responsible-gaming-text h3 {
    font-size: 24px;
  }
  .page-about__future-list {
    margin: 40px auto;
  }
  .page-about__future-list li {
    font-size: 16px;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 28px;
  }
  .page-about__section-title {
    font-size: 24px;
  }
  .page-about__hero-description {
    font-size: 15px;
  }
  .page-about__item-title {
    font-size: 18px;
  }
  .page-about__commitment-item .page-about__item-title {
    font-size: 18px;
  }
  .page-about__game-card p {
    font-size: 14px;
  }
  .page-about__faq-question h3 {
    font-size: 15px;
  }
  .page-about__faq-answer p {
    font-size: 15px;
  }
  .page-about__responsible-gaming-text h3 {
    font-size: 22px;
  }
  .page-about__responsible-gaming-text li {
    font-size: 15px;
  }
  .page-about__future-list li {
    font-size: 15px;
  }
}