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

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --body-bg-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}

/* Base styles for the page content, ensuring text visibility against dark body background */
.page-blog-how-to-choose-a-reliable-betting-site {
  color: var(--text-main-color); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--body-bg-color); /* Ensure consistency if body bg is not fully controlled by shared */
}

.page-blog-how-to-choose-a-reliable-betting-site__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content */
  background-color: var(--body-bg-color);
  overflow: hidden;
}

.page-blog-how-to-choose-a-reliable-betting-site__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height to maintain aspect ratio on larger screens */
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-how-to-choose-a-reliable-betting-site__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-how-to-choose-a-reliable-betting-site__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-choose-a-reliable-betting-site__description {
  font-size: 1.1rem;
  color: rgba(255, 243, 230, 0.8);
  margin-bottom: 30px;
}

.page-blog-how-to-choose-a-reliable-betting-site__btn-primary,
.page-blog-how-to-choose-a-reliable-betting-site__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-betting-site__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-choose-a-reliable-betting-site__btn-primary:hover {
  background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-how-to-choose-a-reliable-betting-site__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-blog-how-to-choose-a-reliable-betting-site__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-how-to-choose-a-reliable-betting-site__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--body-bg-color);
}

.page-blog-how-to-choose-a-reliable-betting-site__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-choose-a-reliable-betting-site__content-area p {
  margin-bottom: 20px;
  color: var(--text-main-color);
  font-size: 1rem;
}

.page-blog-how-to-choose-a-reliable-betting-site__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-a-reliable-betting-site__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-betting-site__card-image {
  width: 100%;
  max-width: 400px; /* Adjust based on display size */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-a-reliable-betting-site__card-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-a-reliable-betting-site__card p {
  font-size: 0.95rem;
  color: rgba(255, 243, 230, 0.7);
}

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

.page-blog-how-to-choose-a-reliable-betting-site__list li {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color);
}

.page-blog-how-to-choose-a-reliable-betting-site__list-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-choose-a-reliable-betting-site__list li p {
  font-size: 1rem;
  color: rgba(255, 243, 230, 0.7);
  margin-bottom: 0;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-section {
  margin-top: 40px;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-blog-how-to-choose-a-reliable-betting-site__faq-answer {
  padding: 0 20px 20px;
  color: rgba(255, 243, 230, 0.7);
  font-size: 1rem;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item[open] .page-blog-how-to-choose-a-reliable-betting-site__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item[open] .page-blog-how-to-choose-a-reliable-betting-site__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-how-to-choose-a-reliable-betting-site__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-a-reliable-betting-site__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-a-reliable-betting-site__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__hero-image {
    max-height: 400px;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__main-title {
    font-size: 2rem;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__criteria-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__card {
    padding: 20px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__card-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__list li {
    padding: 15px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__list-title {
    font-size: 1.1rem;
  }

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

  .page-blog-how-to-choose-a-reliable-betting-site__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__btn-secondary {
    margin-left: 0; /* Remove margin for vertical stacking */
  }

  /* Mobile image, video, button responsive adaptations */
  .page-blog-how-to-choose-a-reliable-betting-site img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-a-reliable-betting-site video,
  .page-blog-how-to-choose-a-reliable-betting-site__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-a-reliable-betting-site__section,
  .page-blog-how-to-choose-a-reliable-betting-site__card,
  .page-blog-how-to-choose-a-reliable-betting-site__container,
  .page-blog-how-to-choose-a-reliable-betting-site__hero-content,
  .page-blog-how-to-choose-a-reliable-betting-site__content-area,
  .page-blog-how-to-choose-a-reliable-betting-site__cta-buttons,
  .page-blog-how-to-choose-a-reliable-betting-site__button-group,
  .page-blog-how-to-choose-a-reliable-betting-site__btn-container,
  .page-blog-how-to-choose-a-reliable-betting-site__video-section,
  .page-blog-how-to-choose-a-reliable-betting-site__video-container,
  .page-blog-how-to-choose-a-reliable-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; /* Ensure content doesn't overflow */
  }
  
  .page-blog-how-to-choose-a-reliable-betting-site__btn-primary,
  .page-blog-how-to-choose-a-reliable-betting-site__btn-secondary,
  .page-blog-how-to-choose-a-reliable-betting-site a[class*="button"],
  .page-blog-how-to-choose-a-reliable-betting-site a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-a-reliable-betting-site__video-section {
    padding-top: 10px !important;
  }

  /* Content area images minimum display size */
  .page-blog-how-to-choose-a-reliable-betting-site__content-area img {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}