.page-blog-why-choose-88clup-registration {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds, ensures WCAG AA */
  background-color: #FFFFFF; /* Explicitly set for clarity, though body handles it */
  line-height: 1.6;
}

/* Hero Section */
.page-blog-why-choose-88clup-registration__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #f0f8f0; /* Light green tint for hero section background */
  overflow: hidden; /* Ensure no overflow for hero image */
}

.page-blog-why-choose-88clup-registration__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image container */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-why-choose-88clup-registration__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

.page-blog-why-choose-88clup-registration__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-why-choose-88clup-registration__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #017439;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-why-choose-88clup-registration__description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-why-choose-88clup-registration__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* General Section Styling */
.page-blog-why-choose-88clup-registration__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
}

.page-blog-why-choose-88clup-registration__section:last-of-type {
  border-bottom: none;
}

.page-blog-why-choose-88clup-registration__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-why-choose-88clup-registration__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-why-choose-88clup-registration__sub-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  color: #333333; /* Ensure paragraph text has good contrast */
}

.page-blog-why-choose-88clup-registration__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

/* Buttons */
.page-blog-why-choose-88clup-registration__btn-primary,
.page-blog-why-choose-88clup-registration__btn-secondary,
.page-blog-why-choose-88clup-registration__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-why-choose-88clup-registration__btn-primary {
  background-color: #017439; /* Primary color */
  color: #FFFFFF; /* White text for contrast */
  border: 2px solid #017439;
}

.page-blog-why-choose-88clup-registration__btn-primary:hover {
  background-color: #025f2e;
  border-color: #025f2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-why-choose-88clup-registration__btn-secondary {
  background-color: #FFFFFF;
  color: #017439; /* Primary color text for contrast */
  border: 2px solid #017439;
}

.page-blog-why-choose-88clup-registration__btn-secondary:hover {
  background-color: #e6ffe6; /* Light green background */
  color: #017439;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-why-choose-88clup-registration__btn-tertiary {
  background-color: #f0f0f0; /* Light gray */
  color: #333333;
  border: 1px solid #cccccc;
  font-size: 1rem;
  padding: 10px 20px;
}

.page-blog-why-choose-88clup-registration__btn-tertiary:hover {
  background-color: #e0e0e0;
  transform: translateY(-1px);
}

/* Lists */
.page-blog-why-choose-88clup-registration__list,
.page-blog-why-choose-88clup-registration__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-why-choose-88clup-registration__list li,
.page-blog-why-choose-88clup-registration__ordered-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444444; /* Ensure good contrast */
}

.page-blog-why-choose-88clup-registration__list li::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
}

.page-blog-why-choose-88clup-registration__ordered-list li::before {
  content: counter(item) '.';
  counter-increment: item;
  position: absolute;
  left: 0;
  color: #017439;
  font-weight: bold;
}
.page-blog-why-choose-88clup-registration__ordered-list {
  counter-reset: item;
}

/* Game Grid */
.page-blog-why-choose-88clup-registration__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-why-choose-88clup-registration__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-why-choose-88clup-registration__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-why-choose-88clup-registration__game-title {
  font-size: 1.2rem;
  color: #017439;
  margin: 15px 15px 10px;
  font-weight: 600;
}

.page-blog-why-choose-88clup-registration__game-card p {
  font-size: 0.95rem;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-blog-why-choose-88clup-registration__faq-list {
  margin-top: 40px;
}

.page-blog-why-choose-88clup-registration__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-why-choose-88clup-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #017439; /* Ensure good contrast */
  cursor: pointer;
  background-color: #e6ffe6; /* Light green background for question */
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}
.page-blog-why-choose-88clup-registration__faq-question::-webkit-details-marker {
  display: none;
}
.page-blog-why-choose-88clup-registration__faq-question::marker {
  display: none;
}

.page-blog-why-choose-88clup-registration__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #017439; /* Ensure good contrast */
  margin-left: 15px;
}

.page-blog-why-choose-88clup-registration__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555; /* Ensure good contrast */
  background-color: #FFFFFF;
}

/* Conclusion CTA */
.page-blog-why-choose-88clup-registration__cta-final,
.page-blog-why-choose-88clup-registration__cta-single {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-why-choose-88clup-registration__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-why-choose-88clup-registration__section {
    padding: 40px 15px;
  }
  .page-blog-why-choose-88clup-registration__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-why-choose-88clup-registration__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
  .page-blog-why-choose-88clup-registration__sub-title {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  }
}

@media (max-width: 768px) {
  .page-blog-why-choose-88clup-registration {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Images, Videos, Buttons and Containers must be responsive */
  .page-blog-why-choose-88clup-registration img,
  .page-blog-why-choose-88clup-registration video,
  .page-blog-why-choose-88clup-registration__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important; /* Allow images to shrink */
    min-height: unset !important;
  }

  .page-blog-why-choose-88clup-registration__section,
  .page-blog-why-choose-88clup-registration__card,
  .page-blog-why-choose-88clup-registration__container,
  .page-blog-why-choose-88clup-registration__video-section,
  .page-blog-why-choose-88clup-registration__video-container,
  .page-blog-why-choose-88clup-registration__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  .page-blog-why-choose-88clup-registration__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Buttons */
  .page-blog-why-choose-88clup-registration__btn-primary,
  .page-blog-why-choose-88clup-registration__btn-secondary,
  .page-blog-why-choose-88clup-registration__btn-tertiary,
  .page-blog-why-choose-88clup-registration a[class*="button"],
  .page-blog-why-choose-88clup-registration a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .page-blog-why-choose-88clup-registration__cta-buttons,
  .page-blog-why-choose-88clup-registration__button-group,
  .page-blog-why-choose-88clup-registration__btn-container,
  .page-blog-why-choose-88clup-registration__cta-final,
  .page-blog-why-choose-88clup-registration__cta-single {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-blog-why-choose-88clup-registration__game-grid {
    grid-template-columns: 1fr; /* Single column for games */
  }

  .page-blog-why-choose-88clup-registration__game-image {
    height: auto; /* Allow height to adjust */
  }

  .page-blog-why-choose-88clup-registration__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-why-choose-88clup-registration__faq-answer {
    padding: 15px 20px;
  }
}