/* style/blog-hi88g-sports-betting-tips.css */
.page-blog-hi88g-sports-betting-tips {
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-hi88g-sports-betting-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px 0; /* Small top padding, more bottom padding */
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
}

.page-blog-hi88g-sports-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-hi88g-sports-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hi88g-sports-betting-tips__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-hi88g-sports-betting-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
}

.page-blog-hi88g-sports-betting-tips__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-hi88g-sports-betting-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #121212; /* Default content area background */
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-hi88g-sports-betting-tips__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-hi88g-sports-betting-tips__sub-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-hi88g-sports-betting-tips__paragraph {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-blog-hi88g-sports-betting-tips__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hi88g-sports-betting-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-hi88g-sports-betting-tips__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
  font-size: 1.1rem;
}

.page-blog-hi88g-sports-betting-tips__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-hi88g-sports-betting-tips__cta-group--center {
  justify-content: center;
}

.page-blog-hi88g-sports-betting-tips__btn-primary,
.page-blog-hi88g-sports-betting-tips__btn-secondary,
.page-blog-hi88g-sports-betting-tips__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-hi88g-sports-betting-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hi88g-sports-betting-tips__btn-primary:hover {
  background-color: #1e87c2;
  border-color: #1e87c2;
}

.page-blog-hi88g-sports-betting-tips__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hi88g-sports-betting-tips__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: #26A9E0;
  color: #ffffff;
  border: 1px solid #26A9E0;
}

.page-blog-hi88g-sports-betting-tips__btn-small:hover {
  background-color: #1e87c2;
  border-color: #1e87c2;
}

.page-blog-hi88g-sports-betting-tips__grid-3-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-hi88g-sports-betting-tips__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-hi88g-sports-betting-tips__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-hi88g-sports-betting-tips__card-description {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-hi88g-sports-betting-tips__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-hi88g-sports-betting-tips__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-hi88g-sports-betting-tips__feature-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-hi88g-sports-betting-tips__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-hi88g-sports-betting-tips__faq-list {
  margin-top: 40px;
}

.page-blog-hi88g-sports-betting-tips__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-hi88g-sports-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-hi88g-sports-betting-tips__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-hi88g-sports-betting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hi88g-sports-betting-tips__faq-question::marker {
  display: none;
}

.page-blog-hi88g-sports-betting-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-hi88g-sports-betting-tips__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.03);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-hi88g-sports-betting-tips__hero-section {
    padding: 10px 0 30px 0;
  }

  .page-blog-hi88g-sports-betting-tips__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-hi88g-sports-betting-tips__subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  .page-blog-hi88g-sports-betting-tips__content-area {
    padding: 40px 15px;
  }

  .page-blog-hi88g-sports-betting-tips__container {
    padding: 0 15px;
  }

  .page-blog-hi88g-sports-betting-tips__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-hi88g-sports-betting-tips__sub-section-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-hi88g-sports-betting-tips__paragraph,
  .page-blog-hi88g-sports-betting-tips__list-item,
  .page-blog-hi88g-sports-betting-tips__card-description,
  .page-blog-hi88g-sports-betting-tips__feature-description,
  .page-blog-hi88g-sports-betting-tips__faq-answer {
    font-size: 1rem;
  }

  .page-blog-hi88g-sports-betting-tips__cta-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .page-blog-hi88g-sports-betting-tips__btn-primary,
  .page-blog-hi88g-sports-betting-tips__btn-secondary,
  .page-blog-hi88g-sports-betting-tips__btn-small {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-blog-hi88g-sports-betting-tips__grid-3-columns,
  .page-blog-hi88g-sports-betting-tips__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-blog-hi88g-sports-betting-tips__card,
  .page-blog-hi88g-sports-betting-tips__feature-item {
    padding: 20px;
  }

  .page-blog-hi88g-sports-betting-tips__card-image {
    height: 180px;
  }

  .page-blog-hi88g-sports-betting-tips__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  /* Image responsive rules for mobile */
  .page-blog-hi88g-sports-betting-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images/videos/buttons responsive rules for mobile */
  .page-blog-hi88g-sports-betting-tips__section,
  .page-blog-hi88g-sports-betting-tips__card,
  .page-blog-hi88g-sports-betting-tips__container,
  .page-blog-hi88g-sports-betting-tips__hero-section,
  .page-blog-hi88g-sports-betting-tips__content-area,
  .page-blog-hi88g-sports-betting-tips__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-hi88g-sports-betting-tips__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Contrast Fixes - if needed */
.page-blog-hi88g-sports-betting-tips__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-hi88g-sports-betting-tips__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}