
    /* General styling for page-6ff3 */
.page-6ff3 {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  padding-bottom: 20px;
}

.page-6ff3__section-title {
  text-align: center;
  font-size: 2.5em;
  color: #e94560; /* Accent color */
  margin-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.page-6ff3__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #e94560;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Hero Section */
.page-6ff3__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small padding-top, relying on body for header offset */
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
  overflow: hidden;
  position: relative;
}

.page-6ff3__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-6ff3__hero-title {
  font-size: 3.2em;
  color: #e94560;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-6ff3__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #c0c0c0;
}

.page-6ff3__hero-cta-button,
.page-6ff3__view-all-promos-button,
.page-6ff3__join-cta-button {
  display: inline-block;
  background-color: #e94560;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.page-6ff3__hero-cta-button:hover,
.page-6ff3__view-all-promos-button:hover,
.page-6ff3__join-cta-button:hover {
  background-color: #ff6b8e;
  transform: translateY(-3px);
}

.page-6ff3__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-6ff3__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* About Section */
.page-6ff3__about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-6ff3__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-6ff3__feature-item {
  background-color: #2a2a4a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.page-6ff3__feature-item:hover {
  transform: translateY(-10px);
}

.page-6ff3__feature-icon {
  width: 100%; /* Ensure image fills container */
  max-width: 200px; /* Max size for feature icon */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-sizing: border-box;
}

.page-6ff3__feature-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-6ff3__feature-description {
  font-size: 1em;
  color: #c0c0c0;
}

/* Games Section */
.page-6ff3__games-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-6ff3__game-card {
  background-color: #2a2a4a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-6ff3__game-card:hover {
  transform: translateY(-10px);
}

.page-6ff3__game-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}

.page-6ff3__game-title {
  font-size: 1.8em;
  color: #e94560;
  margin: 20px 0 10px;
}

.page-6ff3__game-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-6ff3__promo-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-6ff3__promo-intro {
  font-size: 1.2em;
  color: #c0c0c0;
  margin-bottom: 40px;
}

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

.page-6ff3__promo-item {
  background-color: #2a2a4a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: left;
  box-sizing: border-box;
}

.page-6ff3__promo-item:hover {
  transform: translateY(-10px);
}

.page-6ff3__promo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}

.page-6ff3__promo-title {
  font-size: 1.6em;
  color: #f0f0f0;
  margin: 20px 20px 10px;
}

.page-6ff3__promo-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

.page-6ff3__promo-button {
  background-color: #e94560;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  margin: 0 20px 20px;
  font-size: 0.9em;
  font-weight: bold;
  cursor: default; /* No link */
  transition: background-color 0.3s ease;
  display: inline-block;
}

/* Join Section */
.page-6ff3__join-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-6ff3__step-item {
  background-color: #2a2a4a;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  box-sizing: border-box;
}

.page-6ff3__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #e94560;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  margin: -60px auto 20px auto; /* Pulls number up */
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.page-6ff3__step-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-6ff3__step-description {
  font-size: 1em;
  color: #c0c0c0;
}

/* FAQ Section */
.page-6ff3__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-6ff3__faq-container {
  background-color: #2a2a4a;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-6ff3__faq-item {
  border-bottom: 1px solid #3a3a5a;
}

.page-6ff3__faq-item:last-child {
  border-bottom: none;
}

.page-6ff3__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #2a2a4a;
  transition: background-color 0.3s ease;
}

.page-6ff3__faq-question:hover {
  background-color: #3a3a5a;
}

.page-6ff3__faq-question h3 {
  margin: 0;
  font-size: 1.4em;
  color: #f0f0f0;
  pointer-events: none; /* Prevent h3 from blocking click event on parent */
}

.page-6ff3__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #e94560;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from blocking click event on parent */
}

.page-6ff3__faq-item.active .page-6ff3__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' visually */
}

.page-6ff3__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  background-color: #3a3a5a;
  color: #c0c0c0;
}

.page-6ff3__faq-item.active .page-6ff3__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-6ff3__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-6ff3__hero-title {
    font-size: 2.5em;
  }

  .page-6ff3__hero-description {
    font-size: 1.1em;
  }

  .page-6ff3__hero-cta-button,
  .page-6ff3__view-all-promos-button,
  .page-6ff3__join-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-6ff3__section-title {
    font-size: 2em;
    padding-top: 30px;
  }

  .page-6ff3__features-grid,
  .page-6ff3__game-grid,
  .page-6ff3__promo-list,
  .page-6ff3__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-6ff3__feature-item,
  .page-6ff3__game-card,
  .page-6ff3__promo-item,
  .page-6ff3__step-item {
    padding: 20px;
  }

  .page-6ff3__feature-title,
  .page-6ff3__game-title,
  .page-6ff3__promo-title,
  .page-6ff3__step-title {
    font-size: 1.5em;
  }

  .page-6ff3__promo-intro {
    font-size: 1em;
  }

  .page-6ff3__step-number {
      margin-top: 0; /* Adjust for mobile */
  }

  /* List item specific responsive styles */
  .page-6ff3__features-grid > .page-6ff3__feature-item,
  .page-6ff3__game-grid > .page-6ff3__game-card,
  .page-6ff3__promo-list > .page-6ff3__promo-item,
  .page-6ff3__steps-grid > .page-6ff3__step-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Image responsive styles */
  .page-6ff3__hero-image,
  .page-6ff3__feature-icon,
  .page-6ff3__game-image,
  .page-6ff3__promo-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-6ff3__hero-image-wrapper {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
  }
  .page-6ff3__faq-question, .page-6ff3__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-6ff3__faq-question h3 {
    font-size: 1.2em;
  }
  .page-6ff3__faq-answer p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-6ff3__hero-title {
    font-size: 2em;
  }
  .page-6ff3__hero-description {
    font-size: 1em;
  }
  .page-6ff3__section-title {
    font-size: 1.8em;
  }
  .page-6ff3__promo-button {
      font-size: 0.8em;
      padding: 8px 15px;
  }
}
  