
    /* General styles for the 3in1bet page */
.page-3in1-bet {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding-top */
}

.page-3in1-bet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-3in1-bet__section-title {
  font-size: 2.5em;
  color: #1a2a4b;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-3in1-bet__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-3in1-bet__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small decorative padding, main offset handled by body */
  box-sizing: border-box;
}

.page-3in1-bet__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-3in1-bet__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-3in1-bet__hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.page-3in1-bet__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-3in1-bet__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.page-3in1-bet__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-3in1-bet__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-3in1-bet__hero-cta--register {
  background-color: #ff4500; /* Orange-red */
  color: #fff;
  border: 2px solid #ff4500;
}

.page-3in1-bet__hero-cta--register:hover {
  background-color: #e63900;
  transform: translateY(-3px);
}

.page-3in1-bet__hero-cta--login {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-3in1-bet__hero-cta--login:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* About Section */
.page-3in1-bet__about-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-3in1-bet__text-content {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

/* Products Section */
.page-3in1-bet__products-section {
  padding: 60px 0;
  background-color: #f0f2f5;
}

.page-3in1-bet__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-3in1-bet__product-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-3in1-bet__product-card:hover {
  transform: translateY(-10px);
}

.page-3in1-bet__product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-3in1-bet__product-title {
  font-size: 1.8em;
  color: #1a2a4b;
  margin-bottom: 10px;
  padding: 0 15px;
  word-wrap: break-word;
}

.page-3in1-bet__product-description {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
  word-wrap: break-word;
}

/* Promotions Section */
.page-3in1-bet__promotions-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-3in1-bet__promotion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-3in1-bet__promotion-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Crucial for list item responsiveness */
}

.page-3in1-bet__promotion-item:hover {
  transform: translateY(-5px);
}

.page-3in1-bet__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-3in1-bet__promotion-title {
  font-size: 1.5em;
  color: #1a2a4b;
  margin-bottom: 10px;
  padding: 0 15px;
  word-wrap: break-word;
}

.page-3in1-bet__promotion-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px;
  word-wrap: break-word;
}

/* Features Section */
.page-3in1-bet__features-section {
  padding: 60px 0;
  background-color: #f0f2f5;
}

.page-3in1-bet__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-3in1-bet__feature-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-3in1-bet__feature-item:hover {
  transform: translateY(-5px);
}

.page-3in1-bet__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-3in1-bet__feature-title {
  font-size: 1.6em;
  color: #1a2a4b;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.page-3in1-bet__feature-description {
  font-size: 0.95em;
  color: #666;
  word-wrap: break-word;
}

/* FAQ Section */
.page-3in1-bet__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-3in1-bet__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-3in1-bet__faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.page-3in1-bet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-3in1-bet__faq-question:hover {
  background-color: #eee;
}

.page-3in1-bet__faq-item.active .page-3in1-bet__faq-question {
  background-color: #e0e0e0;
}

.page-3in1-bet__faq-title {
  font-size: 1.2em;
  color: #1a2a4b;
  margin: 0;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

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

.page-3in1-bet__faq-item.active .page-3in1-bet__faq-toggle {
  transform: rotate(45deg);
}

.page-3in1-bet__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background-color: #fff;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #555;
}

.page-3in1-bet__faq-item.active .page-3in1-bet__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 15px !important;
  opacity: 1;
}

.page-3in1-bet__faq-answer p {
  margin: 0;
  word-wrap: break-word;
}

/* Bottom CTA Section */
.page-3in1-bet__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
  background-color: #1a2a4b;
  color: #fff;
}

.page-3in1-bet__cta-bottom-section .page-3in1-bet__section-title,
.page-3in1-bet__cta-bottom-section .page-3in1-bet__section-description {
  color: #fff;
}

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

.page-3in1-bet__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-3in1-bet__floating-button:hover {
  transform: scale(1.05);
}

.page-3in1-bet__floating-button--register {
  background-color: #007bff; /* Blue */
  color: #fff;
}

.page-3in1-bet__floating-button--register:hover {
  background-color: #0056b3;
}

.page-3in1-bet__floating-button--login {
  background-color: #28a745; /* Green */
  color: #fff;
}

.page-3in1-bet__floating-button--login:hover {
  background-color: #1e7e34;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-3in1-bet__hero-title {
    font-size: 2.8em;
  }

  .page-3in1-bet__hero-subtitle {
    font-size: 1.3em;
  }

  .page-3in1-bet__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-3in1-bet__hero-section {
    height: 500px;
  }

  .page-3in1-bet__hero-title {
    font-size: 2.2em;
  }

  .page-3in1-bet__hero-subtitle {
    font-size: 1.1em;
  }

  .page-3in1-bet__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-3in1-bet__hero-cta {
    width: 80%;
    margin: 0 auto;
    padding: 12px 20px;
  }

  .page-3in1-bet__section-title {
    font-size: 1.8em;
  }

  .page-3in1-bet__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-3in1-bet__product-grid,
  .page-3in1-bet__promotion-list,
  .page-3in1-bet__features-grid {
    grid-template-columns: 1fr;
  }

  .page-3in1-bet__product-card,
  .page-3in1-bet__promotion-item,
  .page-3in1-bet__feature-item {
    margin: 0 auto;
    max-width: 400px;
    width: 100% !important; /* List item responsiveness */
    box-sizing: border-box !important; /* List item responsiveness */
    margin-left: 0 !important; /* List item responsiveness */
    margin-right: 0 !important; /* List item responsiveness */
    word-wrap: break-word !important; /* Text wrapping */
    overflow-wrap: break-word !important; /* Text wrapping */
  }

  .page-3in1-bet__promotion-list,
  .page-3in1-bet__faq-list {
    width: 100% !important; /* List container responsiveness */
    max-width: 100% !important; /* List container responsiveness */
    padding: 0 !important; /* List container responsiveness */
    margin-left: 0 !important; /* List container responsiveness */
    margin-right: 0 !important; /* List container responsiveness */
  }

  .page-3in1-bet__promotion-item,
  .page-3in1-bet__product-card,
  .page-3in1-bet__feature-item {
    padding: 15px;
  }

  .page-3in1-bet__promotion-title,
  .page-3in1-bet__product-title,
  .page-3in1-bet__feature-title {
    font-size: 1.3em;
  }

  .page-3in1-bet__promotion-description,
  .page-3in1-bet__product-description,
  .page-3in1-bet__feature-description {
    font-size: 0.9em;
  }

  .page-3in1-bet__faq-question {
    padding: 12px 15px;
  }

  .page-3in1-bet__faq-title {
    font-size: 1.1em;
  }

  .page-3in1-bet__faq-answer {
    padding: 15px 15px !important;
  }

  .page-3in1-bet__floating-buttons {
    flex-direction: row;
    bottom: 10px;
    right: 10px;
    left: 10px;
    justify-content: space-around;
  }

  .page-3in1-bet__floating-button {
    flex: 1;
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 0.9em;
  }

  /* Ensure all images are responsive */
  .page-3in1-bet img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-3in1-bet__product-image,
  .page-3in1-bet__promotion-image,
  .page-3in1-bet__feature-icon {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain; /* or cover, depending on desired effect */
  }

  .page-3in1-bet__hero-background-image {
    max-width: 100% !important;
    height: 100% !important;
  }

  /* Ensure all image containers are responsive */
  .page-3in1-bet__product-card,
  .page-3in1-bet__promotion-item,
  .page-3in1-bet__feature-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-3in1-bet__hero-title {
    font-size: 1.8em;
  }

  .page-3in1-bet__hero-subtitle {
    font-size: 1em;
  }

  .page-3in1-bet__hero-cta {
    width: 90%;
  }

  .page-3in1-bet__section-title {
    font-size: 1.5em;
  }

  .page-3in1-bet__section-description {
    font-size: 0.9em;
  }

  .page-3in1-bet__floating-button {
    font-size: 0.85em;
    padding: 8px 10px;
  }
}
  