
    /* CSS for 1 1bet page */
.page-1-1bet {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

/* Hero Section */
.page-1-1bet__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust height for mobile */
  background: url('[GALLERY:hero:1920x1080:online_betting,casino,vietnam]') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
  box-sizing: border-box;
}

.page-1-1bet__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-1-1bet__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-1-1bet__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffcc00; /* Gold color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-1-1bet__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.page-1-1bet__button--primary {
  background-color: #ffcc00;
  color: #333;
}

.page-1-1bet__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-1-1bet__button--secondary {
  background-color: #333;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-1-1bet__button--secondary:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.page-1-1bet__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

.page-1-1bet__button--small:hover {
  background-color: #0056b3;
}

/* Section common styles */
.page-1-1bet__section-title {
  font-size: 2.2em;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-1-1bet__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Games Section */
.page-1-1bet__games-section,
.page-1-1bet__promo-section,
.page-1-1bet__about-section,
.page-1-1bet__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-1-1bet__game-card,
.page-1-1bet__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Important for responsive lists */
}

.page-1-1bet__game-card:hover,
.page-1-1bet__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-1-1bet__game-image,
.page-1-1bet__promo-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-1-1bet__game-title,
.page-1-1bet__promo-title {
  font-size: 1.5em;
  color: #333;
  margin: 15px 10px 10px 10px;
}

.page-1-1bet__game-text,
.page-1-1bet__promo-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* About Section */
.page-1-1bet__about-content {
  text-align: center;
}

.page-1-1bet__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-1-1bet__advantage-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Important for responsive lists */
}

.page-1-1bet__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-1-1bet__advantage-icon {
  width: 100px; /* Display size, source image is 200x200 */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure responsiveness */
  height: auto;
}

.page-1-1bet__advantage-title {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 10px;
}

.page-1-1bet__advantage-text {
  font-size: 0.95em;
  color: #666;
}

/* Floating Buttons */
.page-1-1bet__floating-button {
  position: fixed;
  bottom: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-1-1bet__floating-button--register {
  left: 20px;
  background-color: #ffcc00;
  color: #333;
}

.page-1-1bet__floating-button--register:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-1-1bet__floating-button--login {
  right: 20px;
  background-color: #007bff;
  color: #fff;
}

.page-1-1bet__floating-button--login:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-1-1bet__faq-container {
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
}

.page-1-1bet__faq-item {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box; /* Important for responsive lists */
}

.page-1-1bet__faq-item:last-child {
  border-bottom: none;
}

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

.page-1-1bet__faq-question:hover {
  background-color: #eaeaea;
}

.page-1-1bet__faq-question-text {
  font-size: 1.2em;
  color: #333;
  margin: 0;
  pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-1-1bet__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffcc00;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-1-1bet__faq-item.active .page-1-1bet__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
  color: #007bff;
}

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

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

.page-1-1bet__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-1-1bet__hero-section {
    height: 70vh;
  }

  .page-1-1bet__hero-title {
    font-size: 2em;
  }

  .page-1-1bet__hero-description {
    font-size: 1em;
  }

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

  .page-1-1bet__button {
    width: 80%;
    margin: 0 auto;
    padding: 10px 20px;
  }

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

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

  .page-1-1bet__games-section,
  .page-1-1bet__promo-section,
  .page-1-1bet__about-section,
  .page-1-1bet__faq-section {
    padding: 40px 15px;
  }

  .page-1-1bet__game-grid,
  .page-1-1bet__promo-grid,
  .page-1-1bet__advantages-list {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }

  /* List item specific mobile styles */
  .page-1-1bet__game-card,
  .page-1-1bet__promo-card,
  .page-1-1bet__advantage-item,
  .page-1-1bet__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important; /* Adjust padding to avoid excessive inner spacing */
    padding-right: 15px !important;
  }

  /* List containers specific mobile styles */
  .page-1-1bet__game-grid,
  .page-1-1bet__promo-grid,
  .page-1-1bet__advantages-list,
  .page-1-1bet__faq-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-1-1bet__game-text,
  .page-1-1bet__promo-text,
  .page-1-1bet__advantage-text,
  .page-1-1bet__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-1-1bet__faq-question {
    padding: 15px 20px;
  }

  .page-1-1bet__faq-question-text {
    font-size: 1.1em;
  }

  .page-1-1bet__faq-answer {
    padding: 0 20px;
  }

  .page-1-1bet__faq-item.active .page-1-1bet__faq-answer {
    padding: 15px 20px !important;
  }

  .page-1-1bet__floating-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

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

  .page-1-1bet__hero-description {
    font-size: 0.9em;
  }

  .page-1-1bet__section-title {
    font-size: 1.5em;
  }
  .page-1-1bet__game-image,
  .page-1-1bet__promo-image {
    height: 150px;
  }
}
  