
    /* General styles for the page */
.page-39bet10-com {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
  padding-bottom: 80px; /* Space for floating buttons */
}

/* Section styling */
.page-39bet10-com__section-title {
  text-align: center;
  font-size: 2.2em;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e74c3c;
  border-radius: 2px;
}

/* Hero Section */
.page-39bet10-com__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust height for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 10px; /* Small aesthetic padding, body already has header offset */
}

.page-39bet10-com__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for text readability */
  max-width: 100%; /* Ensure responsive */
}

.page-39bet10-com__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-39bet10-com__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #f1c40f; /* Gold-like color for brand */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__hero-button {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__hero-button:hover {
  background-color: #c0392b;
}

/* Floating Buttons */
.page-39bet10-com__floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.page-39bet10-com__floating-button {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__floating-button--register {
  background-color: #27ae60;
}

.page-39bet10-com__floating-button--register:hover {
  background-color: #219d54;
}

.page-39bet10-com__floating-button--login {
  background-color: #3498db;
}

.page-39bet10-com__floating-button--login:hover {
  background-color: #2980b9;
}


/* Product Showcase Section */
.page-39bet10-com__products-section,
.page-39bet10-com__promotions-section,
.page-39bet10-com__why-choose-us-section,
.page-39bet10-com__faq-section,
.page-39bet10-com__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-39bet10-com__product-grid,
.page-39bet10-com__promotion-list,
.page-39bet10-com__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center; /* Center items in grid */
}

.page-39bet10-com__product-item,
.page-39bet10-com__promotion-item,
.page-39bet10-com__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-39bet10-com__product-item:hover,
.page-39bet10-com__promotion-item:hover,
.page-39bet10-com__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-39bet10-com__product-image,
.page-39bet10-com__promotion-image,
.page-39bet10-com__feature-icon {
  width: 100%;
  height: 250px; /* Consistent height for images */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box; /* Ensure responsive */
}

.page-39bet10-com__feature-icon {
  height: 180px; /* Slightly smaller for icons */
  object-fit: contain; /* Contain for icons */
  padding: 20px;
  border-bottom: none;
}

.page-39bet10-com__product-title,
.page-39bet10-com__promotion-title,
.page-39bet10-com__feature-title {
  font-size: 1.5em;
  color: #e74c3c;
  margin: 20px 15px 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__product-description,
.page-39bet10-com__promotion-description,
.page-39bet10-com__feature-description {
  font-size: 1em;
  color: #555;
  padding: 0 15px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Why Choose Us Section */
.page-39bet10-com__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* FAQ Section */
.page-39bet10-com__faq-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-39bet10-com__faq-item {
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}

.page-39bet10-com__faq-item:last-child {
  border-bottom: none;
}

.page-39bet10-com__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  background-color: #fdfdfd;
  transition: background-color 0.3s ease;
}

.page-39bet10-com__faq-question:hover {
  background-color: #f5f5f5;
}

.page-39bet10-com__faq-title {
  font-size: 1.2em;
  color: #333;
  margin: 0;
  pointer-events: none; /* Prevent h3 from blocking click event */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #e74c3c;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click event */
}

.page-39bet10-com__faq-item.active .page-39bet10-com__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-39bet10-com__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px; /* Initial padding */
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #555;
}

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

.page-39bet10-com__faq-answer p {
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Call to Action Section */
.page-39bet10-com__cta-section {
  text-align: center;
  background-color: #e74c3c;
  color: #fff;
  padding: 80px 20px;
  margin-top: 60px;
  border-radius: 12px;
}

.page-39bet10-com__cta-section .page-39bet10-com__section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-39bet10-com__cta-section .page-39bet10-com__section-title::after {
  background-color: #f1c40f;
}

.page-39bet10-com__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__cta-button {
  display: inline-block;
  background-color: #f1c40f;
  color: #2c3e50;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-39bet10-com__cta-button:hover {
  background-color: #e0b40e;
  transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 768px) {
  .page-39bet10-com__hero-section {
    height: 50vh;
  }

  .page-39bet10-com__hero-title {
    font-size: 2.5em;
  }

  .page-39bet10-com__hero-description {
    font-size: 1.1em;
  }

  .page-39bet10-com__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-39bet10-com__section-title {
    font-size: 1.8em;
  }

  .page-39bet10-com__products-section,
  .page-39bet10-com__promotions-section,
  .page-39bet10-com__why-choose-us-section,
  .page-39bet10-com__faq-section,
  .page-39bet10-com__cta-section {
    padding: 40px 15px;
  }

  .page-39bet10-com__product-grid,
  .page-39bet10-com__promotion-list,
  .page-39bet10-com__features-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }

  .page-39bet10-com__product-item,
  .page-39bet10-com__promotion-item,
  .page-39bet10-com__feature-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;
    word-break: break-word !important;
  }

  .page-39bet10-com__product-image,
  .page-39bet10-com__promotion-image,
  .page-39bet10-com__feature-icon {
    max-width: 100% !important;
    height: auto !important; /* Allow height to adjust */
    box-sizing: border-box !important;
  }

  .page-39bet10-com__faq-question {
    padding: 15px;
  }

  .page-39bet10-com__faq-title {
    font-size: 1.1em;
  }

  .page-39bet10-com__faq-answer {
    padding: 0 15px;
  }
  .page-39bet10-com__faq-item.active .page-39bet10-com__faq-answer {
    padding: 15px !important;
  }

  .page-39bet10-com__cta-section {
    padding: 60px 15px;
  }

  .page-39bet10-com__cta-description {
    font-size: 1.1em;
  }

  .page-39bet10-com__cta-button {
    font-size: 1.2em;
    padding: 12px 30px;
  }

  .page-39bet10-com__floating-buttons {
    padding: 8px 0;
  }

  .page-39bet10-com__floating-button {
    font-size: 1em;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-39bet10-com__hero-title {
    font-size: 2em;
  }

  .page-39bet10-com__hero-description {
    font-size: 1em;
  }

  .page-39bet10-com__section-title {
    font-size: 1.6em;
  }
}
  