/* style/blog-how-to-choose-best-betting-site.css */

/* Color Variables */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --background-color-card: #11271B;
  --background-color-page: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Global styles for this page scope */
.page-blog-how-to-choose-best-betting-site {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background-color-page); /* Specific page background */
}

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

/* Hero Section */
.page-blog-how-to-choose-best-betting-site__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: var(--background-color-page); /* Ensure background for hero section */
}

.page-blog-how-to-choose-best-betting-site__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 40px; /* Space between image and content */
  border-radius: 8px;
}

.page-blog-how-to-choose-best-betting-site__hero-content {
  position: relative; /* Not absolute, to flow below image */
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  color: var(--text-main); /* Light text on dark background */
}

.page-blog-how-to-choose-best-betting-site__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color); /* Gold color for main title */
}

.page-blog-how-to-choose-best-betting-site__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary); /* Secondary text color */
}

/* CTA Buttons */
.page-blog-how-to-choose-best-betting-site__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-how-to-choose-best-betting-site__cta-buttons--center {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-how-to-choose-best-betting-site__btn-primary,
.page-blog-how-to-choose-best-betting-site__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 180px;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  text-align: center;
}

.page-blog-how-to-choose-best-betting-site__btn-primary {
  background: var(--button-gradient); /* Custom button gradient */
  color: #ffffff;
  border: none;
}

.page-blog-how-to-choose-best-betting-site__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-how-to-choose-best-betting-site__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-choose-best-betting-site__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Content Sections */
.page-blog-how-to-choose-best-betting-site__content-section {
  padding: 60px 0;
  background-color: var(--background-color-card); /* Card background for sections */
  color: var(--text-main); /* Main text color on dark background */
}

.page-blog-how-to-choose-best-betting-site__content-section:nth-of-type(odd) {
  background-color: var(--background-color-page); /* Alternate section background */
}

.page-blog-how-to-choose-best-betting-site__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-color); /* Gold color for section titles */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-how-to-choose-best-betting-site p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary); /* Secondary text color for paragraphs */
}

.page-blog-how-to-choose-best-betting-site__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-betting-site__list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary); /* Secondary text color for list items */
}

.page-blog-how-to-choose-best-betting-site__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-how-to-choose-best-betting-site__content-image {
  width: 100%;
  max-width: 800px; /* Max width for content images */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-betting-site__inline-link {
    color: var(--gold-color);
    text-decoration: underline;
    font-weight: 600;
}

.page-blog-how-to-choose-best-betting-site__inline-link:hover {
    color: var(--glow-color);
}

/* FAQ Section */
.page-blog-how-to-choose-best-betting-site__faq-section {
  padding: 60px 0;
  background-color: var(--deep-green-color); /* Deep green background for FAQ */
  color: var(--text-main);
}

.page-blog-how-to-choose-best-betting-site__faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 40px;
  text-align: center;
}

.page-blog-how-to-choose-best-betting-site__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-choose-best-betting-site__faq-item {
  background-color: var(--background-color-card); /* Card background for FAQ items */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-choose-best-betting-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--background-color-card);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-how-to-choose-best-betting-site__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-choose-best-betting-site__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-how-to-choose-best-betting-site__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-how-to-choose-best-betting-site__faq-item[open] .page-blog-how-to-choose-best-betting-site__faq-answer {
  max-height: 2000px; /* Sufficiently large to show content */
}

.page-blog-how-to-choose-best-betting-site__faq-item.active .page-blog-how-to-choose-best-betting-site__faq-answer {
  max-height: 2000px !important; /* For JS-controlled div version */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-best-betting-site {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-betting-site__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-choose-best-betting-site__hero-section {
    padding: 10px 0 40px 0; /* Adjust padding for mobile */
  }

  .page-blog-how-to-choose-best-betting-site__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust H1 for mobile */
    margin-bottom: 15px;
  }

  .page-blog-how-to-choose-best-betting-site__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-how-to-choose-best-betting-site__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-choose-best-betting-site__btn-primary,
  .page-blog-how-to-choose-best-betting-site__btn-secondary {
    width: 100% !important; /* Full width buttons on mobile */
    min-width: unset;
    padding: 12px 20px;
  }

  .page-blog-how-to-choose-best-betting-site__content-section {
    padding: 40px 0;
  }

  .page-blog-how-to-choose-best-betting-site__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-best-betting-site__list li {
    padding-left: 20px;
  }

  .page-blog-how-to-choose-best-betting-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-how-to-choose-best-betting-site__faq-section {
    padding: 40px 0;
  }

  .page-blog-how-to-choose-best-betting-site__faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-best-betting-site__faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  .page-blog-how-to-choose-best-betting-site__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }
}

/* Video responsive rules (if video were present) */
.page-blog-how-to-choose-best-betting-site video,
.page-blog-how-to-choose-best-betting-site__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-how-to-choose-best-betting-site__video-section,
.page-blog-how-to-choose-best-betting-site__video-container,
.page-blog-how-to-choose-best-betting-site__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-betting-site video,
  .page-blog-how-to-choose-best-betting-site__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-best-betting-site__video-section,
  .page-blog-how-to-choose-best-betting-site__video-container,
  .page-blog-how-to-choose-best-betting-site__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-how-to-choose-best-betting-site__video-section {
    padding-top: 10px !important;
  }
  
  .page-blog-how-to-choose-best-betting-site__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}