/* style/resources-how-to-choose-best-betting-platform.css */

:root {
  --primary-color: #1A2A4A;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d; /* Body background from shared.css */
}

.page-resources-how-to-choose-best-betting-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the main page content on dark body background */
  background-color: var(--bg-dark);
}

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

.page-resources-how-to-choose-best-betting-platform__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
  color: var(--text-light);
  background-color: var(--primary-color);
  padding-top: var(--header-offset, 120px);
}

.page-resources-how-to-choose-best-betting-platform__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-how-to-choose-best-betting-platform__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-resources-how-to-choose-best-betting-platform__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-how-to-choose-best-betting-platform__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-best-betting-platform__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-how-to-choose-best-betting-platform__btn-primary:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
}

.page-resources-how-to-choose-best-betting-platform__btn-large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-resources-how-to-choose-best-betting-platform__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-how-to-choose-best-betting-platform__introduction-section,
.page-resources-how-to-choose-best-betting-platform__why-choose-us-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.page-resources-how-to-choose-best-betting-platform__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-how-to-choose-best-betting-platform__criteria-section,
.page-resources-how-to-choose-best-betting-platform__mistakes-section,
.page-resources-how-to-choose-best-betting-platform__conclusion-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__criterion-item {
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-best-betting-platform__criterion-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-platform__image-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-how-to-choose-best-betting-platform__mistakes-list {
  list-style: none;
  padding: 0;
}

.page-resources-how-to-choose-best-betting-platform__mistakes-list li {
  margin-bottom: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
}

.page-resources-how-to-choose-best-betting-platform__mistake-title {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 5px;
}

.page-resources-how-to-choose-best-betting-platform__faq-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-how-to-choose-best-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-best-betting-platform__faq-question h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.2em;
}

.page-resources-how-to-choose-best-betting-platform__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-choose-best-betting-platform__faq-toggle {
  font-size: 1.5em;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-best-betting-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__faq-answer p {
  margin: 15px 0;
  color: var(--text-light);
}

.page-resources-how-to-choose-best-betting-platform__faq-item.active .page-resources-how-to-choose-best-betting-platform__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px !important;
}

.page-resources-how-to-choose-best-betting-platform__faq-item.active .page-resources-how-to-choose-best-betting-platform__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-resources-how-to-choose-best-betting-platform__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-best-betting-platform__hero-title {
    font-size: 3em;
  }
  .page-resources-how-to-choose-best-betting-platform__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-best-betting-platform__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-best-betting-platform__criterion-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-best-betting-platform__hero-section {
    padding: 60px 15px;
  }
  .page-resources-how-to-choose-best-betting-platform__hero-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-best-betting-platform__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-best-betting-platform__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-resources-how-to-choose-best-betting-platform__btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-resources-how-to-choose-best-betting-platform__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-resources-how-to-choose-best-betting-platform__introduction-section,
  .page-resources-how-to-choose-best-betting-platform__criteria-section,
  .page-resources-how-to-choose-best-betting-platform__why-choose-us-section,
  .page-resources-how-to-choose-best-betting-platform__mistakes-section,
  .page-resources-how-to-choose-best-betting-platform__faq-section,
  .page-resources-how-to-choose-best-betting-platform__conclusion-section {
    padding: 40px 0;
  }
  .page-resources-how-to-choose-best-betting-platform__container {
    padding: 0 15px !important;
  }
  .page-resources-how-to-choose-best-betting-platform__text-block {
    font-size: 1em;
  }
  
  /* Mobile image responsiveness */
  .page-resources-how-to-choose-best-betting-platform img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-choose-best-betting-platform__hero-image-wrapper,
  .page-resources-how-to-choose-best-betting-platform__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-how-to-choose-best-betting-platform__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Mobile button responsiveness */
  .page-resources-how-to-choose-best-betting-platform__btn-primary,
  .page-resources-how-to-choose-best-betting-platform__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-resources-how-to-choose-best-betting-platform__hero-section {
    padding-top: var(--header-offset, 120px) !important; 
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-best-betting-platform__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-best-betting-platform__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-best-betting-platform__criterion-title {
    font-size: 1.3em;
  }
  .page-resources-how-to-choose-best-betting-platform__faq-question h3 {
    font-size: 1em;
  }
}