
    /* General styles for the page */
.page-789pp-com {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-789pp-com__section-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 15px 0;
  font-weight: bold;
}

.page-789pp-com__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  color: #fff;
  padding: 10px 20px 60px; /* Minimal padding-top, relying on body for header offset */
  background-color: #0d1a26; /* Dark background for contrast */
}

.page-789pp-com__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim image for text readability */
  z-index: 1;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-789pp-com__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-789pp-com__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #e0e0e0;
  line-height: 1.2;
}

.page-789pp-com__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-789pp-com__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-789pp-com__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-789pp-com__button--primary {
  background-color: #e74c3c; /* Red */
  color: #fff;
}

.page-789pp-com__button--primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.page-789pp-com__button--secondary {
  background-color: #3498db; /* Blue */
  color: #fff;
}

.page-789pp-com__button--secondary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.page-789pp-com__button--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

/* About Section */
.page-789pp-com__about-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-789pp-com__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-789pp-com__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-789pp-com__feature-item:hover {
  transform: translateY(-5px);
}

.page-789pp-com__feature-icon {
  width: 100%; /* Ensure images are responsive */
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-789pp-com__feature-title {
  font-size: 1.5em;
  color: #e74c3c;
  margin-bottom: 10px;
}

.page-789pp-com__feature-text {
  font-size: 1em;
  color: #555;
}

/* Products Section (Games) */
.page-789pp-com__products-section {
  padding: 60px 20px;
  background-color: #f2f2f2;
}

.page-789pp-com__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-789pp-com__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-789pp-com__game-card:hover {
  transform: translateY(-5px);
}

.page-789pp-com__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-789pp-com__game-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin: 15px 10px 5px;
}

.page-789pp-com__game-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
}

/* Promotions Section */
.page-789pp-com__promotions-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-789pp-com__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-789pp-com__promo-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-789pp-com__promo-item:hover {
  transform: translateY(-5px);
}

.page-789pp-com__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.page-789pp-com__promo-title {
  font-size: 1.4em;
  color: #e74c3c;
  margin: 0 15px 10px;
}

.page-789pp-com__promo-text {
  font-size: 1em;
  color: #555;
  padding: 0 15px;
}

/* Payment Section */
.page-789pp-com__payment-section,
.page-789pp-com__providers-section {
  padding: 60px 20px;
  background-color: #f2f2f2;
}

.page-789pp-com__payment-grid,
.page-789pp-com__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for logos */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.page-789pp-com__payment-item,
.page-789pp-com__provider-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* Ensure consistent height for logo containers */
  transition: transform 0.3s ease;
}

.page-789pp-com__payment-item:hover,
.page-789pp-com__provider-item:hover {
  transform: translateY(-3px);
}

.page-789pp-com__payment-logo,
.page-789pp-com__provider-logo {
  max-width: 100%;
  max-height: 80px; /* Max height for logos */
  height: auto;
  object-fit: contain;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* FAQ Section */
.page-789pp-com__faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-789pp-com__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-789pp-com__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-789pp-com__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #e74c3c; /* Red for questions */
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  user-select: none;
  border-radius: 8px; /* Apply border-radius here too */
}

.page-789pp-com__faq-item.active .page-789pp-com__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-789pp-com__faq-question-title {
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Prevent h3 from blocking click on parent */
  color: #fff; /* Ensure contrast */
}

.page-789pp-com__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  pointer-events: none; /* Prevent span from blocking click on parent */
  transition: transform 0.3s ease;
}

.page-789pp-com__faq-item.active .page-789pp-com__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
}

.page-789pp-com__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #333; /* Ensure contrast */
}

.page-789pp-com__faq-item.active .page-789pp-com__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 20px !important; /* Expanded padding */
  opacity: 1;
}

.page-789pp-com__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Call to Action Section */
.page-789pp-com__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #0d1a26; /* Dark background for CTA */
  color: #fff;
}

.page-789pp-com__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #cccccc;
}

/* Floating Register/Login Buttons */
.page-789pp-com__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-789pp-com__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-789pp-com__floating-button--register {
  background-color: #e74c3c; /* Red */
}

.page-789pp-com__floating-button--register:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}

.page-789pp-com__floating-button--login {
  background-color: #3498db; /* Blue */
}

.page-789pp-com__floating-button--login:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 768px) {
  .page-789pp-com__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-789pp-com__hero-title {
    font-size: 2.2em;
  }

  .page-789pp-com__hero-description {
    font-size: 1em;
  }

  .page-789pp-com__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-789pp-com__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* List items responsive */
  .page-789pp-com__features-grid,
  .page-789pp-com__games-grid,
  .page-789pp-com__promo-list,
  .page-789pp-com__payment-grid,
  .page-789pp-com__providers-grid {
    grid-template-columns: 1fr; /* Single column layout */
    padding: 0 15px !important; /* Adjust container padding */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-789pp-com__feature-item,
  .page-789pp-com__game-card,
  .page-789pp-com__promo-item,
  .page-789pp-com__payment-item,
  .page-789pp-com__provider-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-789pp-com__feature-icon,
  .page-789pp-com__game-image,
  .page-789pp-com__promo-image,
  .page-789pp-com__payment-logo,
  .page-789pp-com__provider-logo {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-789pp-com__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-789pp-com__faq-answer {
    padding: 0 15px;
  }

  .page-789pp-com__faq-item.active .page-789pp-com__faq-answer {
    padding: 15px 15px !important;
  }

  .page-789pp-com__floating-buttons {
    flex-direction: row;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 30px);
    justify-content: space-around;
  }

  .page-789pp-com__floating-button {
    width: 48%;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .page-789pp-com__hero-title {
    font-size: 1.8em;
  }
  .page-789pp-com__hero-description {
    font-size: 0.9em;
  }
  .page-789pp-com__section-title {
    font-size: 1.6em;
  }
}
  