/* style/blog-w88hey-sports-betting-tips.css */

/* Base styles for the page */
.page-blog-w88hey-sports-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--background-color, #08160F); /* Default background for the page body */
}

/* Hero Section */
.page-blog-w88hey-sports-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  text-align: center;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-blog-w88hey-sports-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-w88hey-sports-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area */
}

.page-blog-w88hey-sports-betting-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  z-index: 1; /* Ensure content is above image if any overlap */
}

.page-blog-w88hey-sports-betting-tips__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-w88hey-sports-betting-tips__lead-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-w88hey-sports-betting-tips__btn-primary,
.page-blog-w88hey-sports-betting-tips__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-blog-w88hey-sports-betting-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-w88hey-sports-betting-tips__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-w88hey-sports-betting-tips__btn-secondary {
  background: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-w88hey-sports-betting-tips__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--deep-green, #0A4B2C);
}

/* Content Area */
.page-blog-w88hey-sports-betting-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color, #08160F);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__section-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-w88hey-sports-betting-tips__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__link {
  color: var(--glow, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-w88hey-sports-betting-tips__link:hover {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

/* Feature Grid */
.page-blog-w88hey-sports-betting-tips__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-w88hey-sports-betting-tips__feature-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-w88hey-sports-betting-tips__card-title {
  font-size: 1.5rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-w88hey-sports-betting-tips__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide in cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-w88hey-sports-betting-tips__card-text {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

/* Step List */
.page-blog-w88hey-sports-betting-tips__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-blog-w88hey-sports-betting-tips__list-item {
  background-color: var(--card-bg, #11271B);
  border-left: 5px solid var(--glow, #57E38D);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__list-title {
  font-size: 1.3rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-w88hey-sports-betting-tips__list-text {
  font-size: 1rem;
}

/* Tip Cards */
.page-blog-w88hey-sports-betting-tips__tip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-w88hey-sports-betting-tips__tip-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align text to left */
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Content Image */
.page-blog-w88hey-sports-betting-tips__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-blog-w88hey-sports-betting-tips__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-w88hey-sports-betting-tips__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-w88hey-sports-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-w88hey-sports-betting-tips__faq-item[open] .page-blog-w88hey-sports-betting-tips__faq-question {
  border-bottom: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-w88hey-sports-betting-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-w88hey-sports-betting-tips__faq-item[open] .page-blog-w88hey-sports-betting-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-w88hey-sports-betting-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

/* Hide default details marker */
.page-blog-w88hey-sports-betting-tips__faq-item summary::-webkit-details-marker,
.page-blog-w88hey-sports-betting-tips__faq-item summary::marker {
  display: none;
}

/* Conclusion Section */
.page-blog-w88hey-sports-betting-tips__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

/* Color Contrast Classes (for intelligent selection) */
.page-blog-w88hey-sports-betting-tips__dark-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-w88hey-sports-betting-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-w88hey-sports-betting-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-w88hey-sports-betting-tips__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-w88hey-sports-betting-tips__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-blog-w88hey-sports-betting-tips__hero-image,
  .page-blog-w88hey-sports-betting-tips__card-image,
  .page-blog-w88hey-sports-betting-tips__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-w88hey-sports-betting-tips__hero-content,
  .page-blog-w88hey-sports-betting-tips__content-area,
  .page-blog-w88hey-sports-betting-tips__conclusion-section,
  .page-blog-w88hey-sports-betting-tips__feature-grid,
  .page-blog-w88hey-sports-betting-tips__tip-cards,
  .page-blog-w88hey-sports-betting-tips__step-list,
  .page-blog-w88hey-sports-betting-tips__bet-types-list,
  .page-blog-w88hey-sports-betting-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }

  .page-blog-w88hey-sports-betting-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-w88hey-sports-betting-tips__btn-primary,
  .page-blog-w88hey-sports-betting-tips__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-w88hey-sports-betting-tips__section-title {
    margin-bottom: 25px;
  }

  .page-blog-w88hey-sports-betting-tips__feature-card,
  .page-blog-w88hey-sports-betting-tips__tip-card,
  .page-blog-w88hey-sports-betting-tips__faq-item {
    padding: 20px;
  }

  .page-blog-w88hey-sports-betting-tips__card-title {
    font-size: 1.3rem;
  }

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

  .page-blog-w88hey-sports-betting-tips__faq-answer {
    padding: 15px 20px;
  }
}