
    /* Base styles for the 86kbet page */
.page-86kbet {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background for betting theme */
  line-height: 1.6;
}

.page-86kbet__section-title {
  font-size: 2.5em;
  color: #e94560; /* Accent color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: 700;
}

.page-86kbet__section-description {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
  color: #ccc;
}

/* Hero Section */
.page-86kbet__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* 10px top for nav bar offset, assuming body padding is handled by shared CSS */
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  text-align: center;
  min-height: 60vh;
}

.page-86kbet__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 2;
}

.page-86kbet__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e94560;
  font-weight: 900;
}

.page-86kbet__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #ccc;
}

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

.page-86kbet__hero-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping */
}

.page-86kbet__hero-button--register {
  background-color: #e94560;
  color: #fff;
  border: 2px solid #e94560;
}

.page-86kbet__hero-button--register:hover {
  background-color: #d1304a;
  transform: translateY(-3px);
}

.page-86kbet__hero-button--login {
  background-color: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.page-86kbet__hero-button--login:hover {
  background-color: #e94560;
  color: #fff;
  transform: translateY(-3px);
}

.page-86kbet__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-86kbet__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Product Showcase */
.page-86kbet__product-showcase {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

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

.page-86kbet__product-item {
  background-color: #2c2c4d;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-86kbet__product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-86kbet__product-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-86kbet__product-name {
  font-size: 1.8em;
  color: #e94560;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-86kbet__product-text {
  font-size: 1em;
  color: #ccc;
  padding: 0 15px;
}

/* Why Choose Us Section */
.page-86kbet__why-choose-us {
  padding: 60px 20px;
  background-color: #0f3460;
}

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

.page-86kbet__feature-item {
  background-color: #2c2c4d;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-86kbet__feature-item:hover {
  transform: translateY(-10px);
  background-color: #3e3e6b;
}

.page-86kbet__feature-image {
  width: 150px; /* Ensure minimum size */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-86kbet__feature-title {
  font-size: 1.8em;
  color: #e94560;
  margin-bottom: 10px;
}

.page-86kbet__feature-description {
  font-size: 1em;
  color: #ccc;
}

/* Game Providers & Payment Methods */
.page-86kbet__game-providers,
.page-86kbet__payment-methods {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-86kbet__providers-grid,
.page-86kbet__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for smaller logos */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}

.page-86kbet__provider-logo,
.page-86kbet__payment-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  min-width: 200px; /* Ensure minimum image size */
  min-height: 100px; /* Ensure minimum image size */
}

.page-86kbet__provider-logo:hover,
.page-86kbet__payment-logo:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.page-86kbet__faq-section {
  padding: 60px 20px;
  background-color: #0f3460;
}

.page-86kbet__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-86kbet__faq-item {
  background-color: #2c2c4d;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-86kbet__faq-item:hover {
  background-color: #3e3e6b;
}

.page-86kbet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-86kbet__faq-item.active .page-86kbet__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-86kbet__faq-question-text {
  font-size: 1.3em;
  color: #e94560;
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Crucial for click event on parent */
  font-weight: 600;
}

.page-86kbet__faq-toggle {
  font-size: 1.8em;
  color: #e94560;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Crucial for click event on parent */
  font-weight: 300;
  line-height: 1;
}

.page-86kbet__faq-item.active .page-86kbet__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-86kbet__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;
  color: #ccc;
  font-size: 1.05em;
  line-height: 1.8;
}

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

.page-86kbet__faq-answer p {
  margin: 0;
}

/* Call to Action Section */
.page-86kbet__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #1a1a2e;
}

.page-86kbet__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-86kbet__cta-button {
  display: inline-block;
  background-color: #e94560;
  color: #fff;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-86kbet__cta-button:hover {
  background-color: #d1304a;
  transform: translateY(-3px);
}

/* Floating Buttons */
.page-86kbet__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-86kbet__floating-button {
  display: block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-86kbet__floating-button--register {
  background-color: #e94560;
  color: #fff;
  border: 2px solid #e94560;
}

.page-86kbet__floating-button--register:hover {
  background-color: #d1304a;
  transform: translateY(-3px);
}

.page-86kbet__floating-button--login {
  background-color: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.page-86kbet__floating-button--login:hover {
  background-color: #e94560;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-86kbet__hero-section {
    padding: 10px 15px 40px;
  }

  .page-86kbet__hero-title {
    font-size: 2.2em;
  }

  .page-86kbet__hero-description {
    font-size: 1.1em;
  }

  .page-86kbet__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-86kbet__hero-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 25px;
    box-sizing: border-box !important;
  }

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

  .page-86kbet__section-description {
    font-size: 1em;
    padding: 0 10px;
  }

  .page-86kbet__product-grid,
  .page-86kbet__features-grid,
  .page-86kbet__providers-grid,
  .page-86kbet__payment-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-86kbet__product-item,
  .page-86kbet__feature-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .page-86kbet__product-name,
  .page-86kbet__feature-title {
    font-size: 1.5em;
  }

  .page-86kbet__product-text,
  .page-86kbet__feature-description {
    font-size: 0.95em;
  }

  .page-86kbet__hero-image,
  .page-86kbet__product-image,
  .page-86kbet__feature-image,
  .page-86kbet__provider-logo,
  .page-86kbet__payment-logo {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-86kbet__faq-question {
    padding: 15px 20px;
  }

  .page-86kbet__faq-question-text {
    font-size: 1.1em;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-86kbet__faq-toggle {
    font-size: 1.5em;
  }

  .page-86kbet__faq-answer {
    padding: 0 20px;
  }

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

  .page-86kbet__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-86kbet__floating-buttons {
    width: calc(100% - 40px);
    bottom: 15px;
    padding: 8px 15px;
    gap: 10px;
    box-sizing: border-box;
  }

  .page-86kbet__floating-button {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

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

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

  .page-86kbet__section-title {
    font-size: 1.8em;
  }

  .page-86kbet__product-image {
    height: 150px; /* Smaller height for very small screens */
  }

  .page-86kbet__provider-logo,
  .page-86kbet__payment-logo {
    min-width: 150px; /* Adjust min-width for smaller screens if needed */
    min-height: 80px;
  }

  .page-86kbet__faq-question-text {
    font-size: 1em;
  }

  .page-86kbet__floating-buttons {
    width: calc(100% - 30px);
    bottom: 10px;
    padding: 6px 10px;
  }

  .page-86kbet__floating-button {
    padding: 8px 12px;
    font-size: 0.85em;
  }
}
  