.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA; /* Assuming light body background */
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #E53935;
  text-align: center;
}

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

.page-about__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E53935;
  text-align: center;
}

.page-about__description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-about__description--light {
  color: #f0f0f0;
}

.page-about__text-block {
  text-align: left;
  padding: 0 15px;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333333;
}

/* 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 */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-about__hero-content .page-about__description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-about__intro-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

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

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

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min size requirement */
  min-height: 200px;
}

/* Commitment Section */
.page-about__commitment-section {
  background: #E53935;
  color: #ffffff;
  padding: 80px 0;
}

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

.page-about__feature-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.page-about__feature-card img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  min-width: 200px; /* Min size requirement, though content is small, actual image should be bigger */
  min-height: 200px;
}

.page-about__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-about__feature-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* Ecosystem Section */
.page-about__ecosystem-section {
  background-color: #F5F7FA;
  padding: 80px 0;
}

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

.page-about__game-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min size requirement */
  min-height: 200px;
}

.page-about__game-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-about__game-title a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__game-title a:hover {
  color: #FF5A4F;
}

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

.page-about__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

/* Promotions Section */
.page-about__promotions-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-about__promo-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

.page-about__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about__promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #E53935;
}

.page-about__promo-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 25px;
}

.page-about__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Quick Access Section */
.page-about__quick-access-section {
  background-color: #F5F7FA;
  padding: 80px 0;
}

.page-about__access-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-about__access-links, .page-about__customer-support {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #E0E0E0;
}

.page-about__access-links ul, .page-about__customer-support ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__access-links li, .page-about__customer-support li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555555;
}

.page-about__link {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__link:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

.page-about__customer-support p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555555;
}

/* FAQ Section */
.page-about__faq-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #f9f9f9;
}

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: #f0f0f0;
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #E53935;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 20px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  text-align: left;
  color: #555555;
  font-size: 16px;
}

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

/* Latest Blog Section */
.page-about__latest-blog-section {
  background-color: #F5F7FA;
  padding: 80px 0;
}

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

.page-about__blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  overflow: hidden;
  border: 1px solid #E0E0E0;
}

.page-about__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about__blog-card img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Min size requirement */
  min-height: 200px;
}

.page-about__blog-content {
  padding: 25px;
}

.page-about__blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-about__blog-title a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__blog-title a:hover {
  color: #FF5A4F;
}

.page-about__blog-meta {
  font-size: 14px;
  color: #888888;
  margin-bottom: 15px;
}

.page-about__blog-excerpt {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-about__view-all-button-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* General link styles */
a {
  color: #E53935;
  text-decoration: none;
}

a:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-about__main-title {
    font-size: 40px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__description {
    font-size: 16px;
  }
  .page-about__hero-content .page-about__description {
    font-size: 18px;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-about__content-grid {
    flex-direction: column;
  }
  .page-about__image-block {
    order: -1; /* Image on top for smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image {
    border-radius: 8px;
  }
  .page-about__main-title {
    font-size: 32px;
  }
  .page-about__hero-content .page-about__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about__cta-button,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page-about__sub-title {
    font-size: 20px;
  }
  .page-about__description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-about__text-block p {
    font-size: 15px;
  }
  .page-about__feature-card {
    padding: 20px;
  }
  .page-about__feature-title {
    font-size: 20px;
  }
  .page-about__feature-text {
    font-size: 14px;
  }
  .page-about__game-card, .page-about__promo-card, .page-about__blog-card {
    padding: 20px;
  }
  .page-about__game-title, .page-about__promo-title, .page-about__blog-title {
    font-size: 18px;
  }
  .page-about__game-card p, .page-about__promo-card p, .page-about__blog-excerpt {
    font-size: 14px;
  }
  .page-about__access-links li, .page-about__customer-support li, .page-about__customer-support p {
    font-size: 15px;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }
  .page-about__blog-content {
    padding: 20px;
  }
  .page-about__blog-meta {
    font-size: 13px;
  }

  /* Image responsive rules */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__promo-card,
  .page-about__access-links,
  .page-about__customer-support,
  .page-about__blog-card {
    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-direction: column !important;
    gap: 10px;
  }
}

/* Contrast Fixes */
.page-about__dark-bg {
  color: #ffffff;
  background: #E53935;
}

.page-about__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-about__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

/* Ensure min image sizes */
.page-about img {
  min-width: 200px;
  min-height: 200px;
}

.page-about__feature-card img {
  width: 200px;
  height: 200px;
}