/* style/blog-online-betting-strategy.css */
.page-blog-online-betting-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000000 from shared.css */
}

.page-blog-online-betting-strategy__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-blog-online-betting-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-online-betting-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.page-blog-online-betting-strategy__hero-image-wrapper {
  width: 100%;
  position: relative;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-blog-online-betting-strategy__hero-content {
  position: relative;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  margin-top: -100px; /* Overlap with image slightly for visual effect */
}

.page-blog-online-betting-strategy__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-online-betting-strategy__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-online-betting-strategy__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-online-betting-strategy__btn-primary,
.page-blog-online-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-online-betting-strategy__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

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

.page-blog-online-betting-strategy__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-online-betting-strategy__btn-center {
  display: block;
  margin: 20px auto;
  max-width: 300px;
}

.page-blog-online-betting-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-blog-online-betting-strategy__section-title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-blog-online-betting-strategy__section-title--white {
  color: #ffffff;
}

.page-blog-online-betting-strategy__table-of-contents {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-blog-online-betting-strategy__table-of-contents li a {
  text-decoration: none;
  color: #26A9E0;
  font-weight: 600;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.page-blog-online-betting-strategy__table-of-contents li a:hover {
  color: #000000;
}

.page-blog-online-betting-strategy__article-subtitle {
  font-size: 2rem;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-blog-online-betting-strategy__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-online-betting-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-online-betting-strategy__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-online-betting-strategy__list li strong {
  color: #000000;
}

.page-blog-online-betting-strategy__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-online-betting-strategy__highlight-text {
  background-color: #e0f7fa;
  padding: 15px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-style: italic;
  margin: 25px 0;
  color: #000000;
}

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

.page-blog-online-betting-strategy__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-blog-online-betting-strategy__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-online-betting-strategy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-online-betting-strategy__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 15px 15px 5px;
  color: #000000;
}

.page-blog-online-betting-strategy__card-title a {
  text-decoration: none;
  color: #000000;
}

.page-blog-online-betting-strategy__card-title a:hover {
  color: #26A9E0;
}

.page-blog-online-betting-strategy__card-description {
  font-size: 0.95rem;
  padding: 0 15px 15px;
  color: #555555;
}

.page-blog-online-betting-strategy__faq-container {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-online-betting-strategy__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  color: #333333;
}

.page-blog-online-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-online-betting-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-online-betting-strategy__faq-question:hover {
  background-color: #e0e0e0;
}

.page-blog-online-betting-strategy__faq-item[open] > .page-blog-online-betting-strategy__faq-question {
  background-color: #e0e0e0;
}

.page-blog-online-betting-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
}

.page-blog-online-betting-strategy__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-online-betting-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-blog-online-betting-strategy__final-cta {
  text-align: center;
  margin-top: 50px;
  background-color: #f0f8ff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-blog-online-betting-strategy__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-blog-online-betting-strategy__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-blog-online-betting-strategy__video-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-online-betting-strategy__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-online-betting-strategy__video-link-wrapper {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.page-blog-online-betting-strategy__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-online-betting-strategy__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-online-betting-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-online-betting-strategy__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-online-betting-strategy__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-online-betting-strategy__hero-description {
    font-size: 1rem;
  }

  .page-blog-online-betting-strategy__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-online-betting-strategy__btn-primary,
  .page-blog-online-betting-strategy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-online-betting-strategy__content-area {
    padding: 20px 15px;
    margin-top: 10px;
  }

  .page-blog-online-betting-strategy__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-blog-online-betting-strategy__article-subtitle {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-online-betting-strategy__game-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-online-betting-strategy__card-image {
    height: 180px;
  }

  .page-blog-online-betting-strategy__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-online-betting-strategy__faq-answer {
    padding: 12px 15px;
  }

  .page-blog-online-betting-strategy__final-cta {
    padding: 30px 15px;
  }

  .page-blog-online-betting-strategy__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-online-betting-strategy__video-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-online-betting-strategy__video-description {
    font-size: 1rem;
  }

  .page-blog-online-betting-strategy__video-container,
  .page-blog-online-betting-strategy__video-link-wrapper,
  .page-blog-online-betting-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-online-betting-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-online-betting-strategy__section,
  .page-blog-online-betting-strategy__card,
  .page-blog-online-betting-strategy__container,
  .page-blog-online-betting-strategy__hero-image-wrapper,
  .page-blog-online-betting-strategy__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-online-betting-strategy__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-blog-online-betting-strategy__hero-content {
    margin-top: -40px;
  }
  .page-blog-online-betting-strategy__hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}