/* style/blog-how-to-choose-betting-games.css */

/* Base styles for dark background */
.page-blog-how-to-choose-betting-games {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body handles background-color */
}

.page-blog-how-to-choose-betting-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-betting-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-how-to-choose-betting-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog-how-to-choose-betting-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-blog-how-to-choose-betting-games__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-betting-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-betting-games__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-betting-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-choose-betting-games__btn-primary:hover {
  background-color: #1a8ac7;
  transform: translateY(-2px);
}

.page-blog-how-to-choose-betting-games__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-blog-how-to-choose-betting-games__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-blog-how-to-choose-betting-games__content-area {
  padding: 60px 0;
  background-color: #1a1a1a; /* A slightly lighter dark background for content */
  color: #ffffff;
}

.page-blog-how-to-choose-betting-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-how-to-choose-betting-games__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-betting-games__paragraph {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-how-to-choose-betting-games__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-how-to-choose-betting-games__list-item {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-blog-how-to-choose-betting-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-how-to-choose-betting-games__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-betting-games__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFFFFF;
}

.page-blog-how-to-choose-betting-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-betting-games__faq-question::-webkit-details-marker, 
.page-blog-how-to-choose-betting-games__faq-question::marker {
  display: none;
}

.page-blog-how-to-choose-betting-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-choose-betting-games__faq-answer {
  padding: 0 25px 15px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-blog-how-to-choose-betting-games__faq-item[open] .page-blog-how-to-choose-betting-games__faq-question {
  color: #FFFFFF;
  background-color: #26A9E0;
}

.page-blog-how-to-choose-betting-games__faq-item[open] .page-blog-how-to-choose-betting-games__faq-toggle {
  color: #FFFFFF;
}

.page-blog-how-to-choose-betting-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-betting-games__hero-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-choose-betting-games__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-choose-betting-games__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-betting-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-how-to-choose-betting-games__hero-title {
    font-size: 2em;
  }
  .page-blog-how-to-choose-betting-games__hero-description {
    font-size: 1em;
  }
  .page-blog-how-to-choose-betting-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-betting-games__btn-secondary {
    margin-left: 0 !important;
  }
  .page-blog-how-to-choose-betting-games__cta-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .page-blog-how-to-choose-betting-games__content-area {
    padding: 40px 0;
  }
  .page-blog-how-to-choose-betting-games__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .page-blog-how-to-choose-betting-games__sub-title {
    font-size: 1.2em;
    margin-top: 30px;
  }
  .page-blog-how-to-choose-betting-games__paragraph,
  .page-blog-how-to-choose-betting-games__list-item {
    font-size: 0.95em;
  }
  .page-blog-how-to-choose-betting-games__container {
    padding: 0 15px;
  }
  .page-blog-how-to-choose-betting-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-choose-betting-games__image-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-blog-how-to-choose-betting-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-how-to-choose-betting-games__faq-answer {
    padding: 0 20px 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-betting-games__hero-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-choose-betting-games__hero-description {
    font-size: 0.9em;
  }
  .page-blog-how-to-choose-betting-games__section-title {
    font-size: 1.4em;
  }
  .page-blog-how-to-choose-betting-games__sub-title {
    font-size: 1.1em;
  }
}