.page-xs {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

/* HERO Section */
.page-xs__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, header offset handled by body */
  overflow: hidden;
}

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

.page-xs__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-xs__hero-content h1 {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: #1F2D3D;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-xs__hero-content p {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-xs__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 47, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-xs__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 47, 255, 0.4);
}

.page-xs__cta-button--light {
  background: #ffffff;
  color: #2F6BFF;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.page-xs__cta-button--light:hover {
  background: #f0f0f0;
  color: #2F6BFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* General Section Styles */
.page-xs__section {
  padding: 60px 20px;
  text-align: center;
  background-color: #F4F7FB; /* Background */
}

.page-xs__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #1F2D3D; /* Text Main */
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-xs__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-xs__container--narrow {
  max-width: 800px;
}

.page-xs__text-block {
  font-size: 1.05em;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-xs__text-block--light {
  color: #e0e0e0;
}

/* Card Styles */
.page-xs__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-xs__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

.page-xs__card-title {
  font-size: 1.5em;
  color: #2F6BFF;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-xs__card p {
  font-size: 0.95em;
  color: #333333;
  line-height: 1.6;
}

/* Benefits Section */
.page-xs__benefit-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 25px;
  text-align: center;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease;
}

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

.page-xs__benefit-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  width: auto; /* Allow auto width to respect min-width */
  height: auto;
}

.page-xs__benefit-title {
  font-size: 1.3em;
  color: #2F6BFF;
  font-weight: 600;
  margin-bottom: 10px;
}

/* How-To-Play Section */
.page-xs__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-xs__step-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  text-align: left;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease;
}

.page-xs__step-card:hover {
  transform: translateY(-5px);
}

.page-xs__step-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #6FA3FF; /* Secondary color */
  margin-bottom: 15px;
}

.page-xs__step-title {
  font-size: 1.4em;
  color: #2F6BFF;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-xs__step-card p {
  font-size: 0.95em;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-xs__step-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #2F6BFF;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-xs__step-link:hover {
  color: #6FA3FF;
  border-color: #6FA3FF;
}

.page-xs__cta-wrapper {
  margin-top: 50px;
}

.page-xs__cta-button--lg {
  padding: 18px 50px;
  font-size: 20px;
}

/* Tips Section */
.page-xs__tip-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  text-align: left;
  border: 1px solid #D6E2FF;
  transition: transform 0.3s ease;
}

.page-xs__tip-card:hover {
  transform: translateY(-5px);
}

.page-xs__tip-title {
  font-size: 1.4em;
  color: #2F6BFF;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-xs__tip-card p {
  font-size: 0.95em;
  color: #333333;
  line-height: 1.6;
}

/* FAQ Section */
.page-xs__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-xs__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-xs__faq-item summary.page-xs__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;
  color: #1F2D3D; /* Text Main */
  font-weight: 600;
}

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

details.page-xs__faq-item summary.page-xs__faq-question:hover {
  background: #F4F7FB; /* Lighter background on hover */
}

.page-xs__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-xs__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-xs__faq-item .page-xs__faq-answer {
  padding: 0 25px 20px;
  background: #F9F9F9; /* Slightly different background for answer */
  border-radius: 0 0 8px 8px;
  color: #333333;
  font-size: 1em;
  line-height: 1.7;
}

/* Conclusion Section */
.page-xs__conclusion {
  background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary and Secondary color gradient */
  color: #ffffff;
  padding: 80px 20px;
}

.page-xs__conclusion p {
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-xs__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-xs__hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-xs__hero-content p {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-xs__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-xs__section {
    padding: 40px 15px;
  }

  .page-xs__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-xs__container {
    padding: 0;
  }

  .page-xs__card {
    padding: 20px;
  }

  .page-xs__card img {
    min-width: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-xs__benefit-item img {
    min-width: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-xs__steps-grid {
    grid-template-columns: 1fr;
  }

  details.page-xs__faq-item summary.page-xs__faq-question {
    padding: 15px 20px;
  }

  .page-xs__faq-qtext {
    font-size: 1em;
  }

  .page-xs__faq-toggle {
    font-size: 20px;
    width: 24px;
  }

  details.page-xs__faq-item .page-xs__faq-answer {
    padding: 0 20px 15px;
  }

  .page-xs__conclusion {
    padding: 50px 15px;
  }

  /* Image responsiveness for all img tags within page-xs */
  .page-xs img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-xs__section,
  .page-xs__card,
  .page-xs__container,
  .page-xs__hero-container,
  .page-xs__steps-grid,
  .page-xs__grid-container,
  .page-xs__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsiveness */
  .page-xs__cta-button,
  .page-xs__btn-primary,
  .page-xs__btn-secondary,
  .page-xs a[class*="button"],
  .page-xs 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-xs__cta-buttons,
  .page-xs__button-group,
  .page-xs__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-xs__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}