:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --login-color: #EA7C07;
}

.page-blog-latest-kubet88-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Main text color for dark body background */
  background-color: transparent; /* Body handles the actual background */
  padding-bottom: 40px; /* General padding for the bottom of main content */
}

/* Hero Section - Revised for "上图下文" */
.page-blog-latest-kubet88-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Stack image and content vertically */
  align-items: center;
  padding: 0 0 60px 0; /* Remove top padding, body handles it. Add bottom padding */
  padding-top: 10px; /* Small top padding for aesthetic */
  text-align: center;
}

.page-blog-latest-kubet88-promotions__hero-image-top {
  width: 100%;
  max-width: 1920px; /* Max width for large screens */
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and text content */
  border-radius: 8px; /* Optional: subtle rounded corners */
}

.page-blog-latest-kubet88-promotions__hero-content-below-image {
  max-width: 900px;
  padding: 0 20px; /* Padding for content */
  box-sizing: border-box;
}

.page-blog-latest-kubet88-promotions__main-title {
  font-size: clamp(2em, 5vw, 2.5em); /* Using clamp for H1 */
  color: var(--primary-color); /* Title color for dark background */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-latest-kubet88-promotions__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--light-text-color); /* Intro text color for dark background */
}

/* General Sections */
.page-blog-latest-kubet88-promotions__section {
  padding: 40px 0;
  background-color: rgba(255, 255, 255, 0.03); /* Subtle dark background for sections */
  margin-bottom: 20px;
}

.page-blog-latest-kubet88-promotions__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Alternate background for readability */
}

.page-blog-latest-kubet88-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-kubet88-promotions__section-title {
  font-size: 2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-blog-latest-kubet88-promotions__text-block {
  margin-bottom: 20px;
  color: var(--light-text-color);
}

/* Buttons */
.page-blog-latest-kubet88-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-blog-latest-kubet88-promotions__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  margin-right: 15px;
}

.page-blog-latest-kubet88-promotions__btn-primary:hover {
  background-color: #1e87b7; /* Darker shade of primary */
}

.page-blog-latest-kubet88-promotions__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-latest-kubet88-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-latest-kubet88-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Cards */
.page-blog-latest-kubet88-promotions__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-latest-kubet88-promotions__card {
  background-color: rgba(255, 255, 255, 0.05); /* Light background for card content on dark body */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  color: var(--light-text-color);
}

.page-blog-latest-kubet88-promotions__card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-kubet88-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-kubet88-promotions__card-title {
  font-size: 1.3em;
  color: var(--primary-color);
  padding: 15px;
  margin-bottom: 5px;
}

.page-blog-latest-kubet88-promotions__card p {
  padding: 0 15px 15px;
  flex-grow: 1;
  color: var(--light-text-color);
}

.page-blog-latest-kubet88-promotions__card-link {
  display: block;
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-blog-latest-kubet88-promotions__card-link:hover {
  background-color: #1e87b7;
}

/* Lists */
.page-blog-latest-kubet88-promotions__steps-list,
.page-blog-latest-kubet88-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-blog-latest-kubet88-promotions__steps-list li,
.page-blog-latest-kubet88-promotions__list li {
  margin-bottom: 10px;
}

.page-blog-latest-kubet88-promotions__steps-list strong {
  color: var(--primary-color);
}

.page-blog-latest-kubet88-promotions__steps-list a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-latest-kubet88-promotions__steps-list a:hover {
  text-decoration: underline;
}

/* Full width image */
.page-blog-latest-kubet88-promotions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

/* FAQ Section */
.page-blog-latest-kubet88-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-latest-kubet88-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--light-text-color);
}

.page-blog-latest-kubet88-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.08);
}

.page-blog-latest-kubet88-promotions__faq-item summary { /* For details tag */
  list-style: none;
}

.page-blog-latest-kubet88-promotions__faq-item summary::-webkit-details-marker { /* Hide default marker */
  display: none;
}

.page-blog-latest-kubet88-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-latest-kubet88-promotions__faq-item[open] .page-blog-latest-kubet88-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate + to form X or - */
}

.page-blog-latest-kubet88-promotions__faq-answer {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-latest-kubet88-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-kubet88-promotions__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

  .page-blog-latest-kubet88-promotions__hero-image-top {
    margin-bottom: 20px;
  }

  .page-blog-latest-kubet88-promotions__hero-content-below-image {
    padding: 0 15px;
  }

  .page-blog-latest-kubet88-promotions__main-title {
    font-size: clamp(1.8em, 8vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-blog-latest-kubet88-promotions__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-latest-kubet88-promotions__section {
    padding: 30px 0;
  }

  .page-blog-latest-kubet88-promotions__container {
    padding: 0 15px;
  }

  .page-blog-latest-kubet88-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  /* Images responsive */
  .page-blog-latest-kubet88-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Image containers responsive */
  .page-blog-latest-kubet88-promotions__hero-image-top,
  .page-blog-latest-kubet88-promotions__cards-grid,
  .page-blog-latest-kubet88-promotions__card,
  .page-blog-latest-kubet88-promotions__image-full-width,
  .page-blog-latest-kubet88-promotions__container,
  .page-blog-latest-kubet88-promotions__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons responsive */
  .page-blog-latest-kubet88-promotions__cta-button,
  .page-blog-latest-kubet88-promotions__btn-primary,
  .page-blog-latest-kubet88-promotions__btn-secondary,
  .page-blog-latest-kubet88-promotions a[class*="button"],
  .page-blog-latest-kubet88-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important; /* Ensure buttons take full width */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-kubet88-promotions__button-group {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 15px; /* Add padding to button group */
  }
  
  .page-blog-latest-kubet88-promotions__btn-primary {
    margin-right: 0; /* Remove right margin when stacked */
  }

  .page-blog-latest-kubet88-promotions__cards-grid {
    grid-template-columns: 1fr; /* Single column for cards */
  }

  .page-blog-latest-kubet88-promotions__card-title {
    font-size: 1.2em;
  }

  /* FAQ specific mobile styles */
  .page-blog-latest-kubet88-promotions__faq-question,
  .page-blog-latest-kubet88-promotions__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure no filter on images */
.page-blog-latest-kubet88-promotions img {
  filter: none; /* Override any potential global filters */
}