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

/* Variables */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #1a1a2e;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-resources-how-to-choose-reliable-betting-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency with shared body background */
}

.page-resources-how-to-choose-reliable-betting-platform__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

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

.page-resources-how-to-choose-reliable-betting-platform__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: var(--text-light);
}

.page-resources-how-to-choose-reliable-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.7);
  line-height: 1.2;
}

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

.page-resources-how-to-choose-reliable-betting-platform__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-choose-reliable-betting-platform__btn-primary {
  background-color: var(--secondary-color);
  color: var(--background-dark); /* Ensure contrast */
  border: none;
}

.page-resources-how-to-choose-reliable-betting-platform__btn-primary:hover {
  background-color: #e6b000; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-how-to-choose-reliable-betting-platform__content-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-reliable-betting-platform__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-how-to-choose-reliable-betting-platform__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

.page-resources-how-to-choose-reliable-betting-platform__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-how-to-choose-reliable-betting-platform__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-resources-how-to-choose-reliable-betting-platform__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-resources-how-to-choose-reliable-betting-platform__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-choose-reliable-betting-platform__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark bg */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
}

.page-resources-how-to-choose-reliable-betting-platform__feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-reliable-betting-platform__criteria-item {
  margin-bottom: 40px;
}

.page-resources-how-to-choose-reliable-betting-platform__criteria-item h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: inherit;
}

.page-resources-how-to-choose-reliable-betting-platform__criteria-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-choose-reliable-betting-platform__feature-list,
.page-resources-how-to-choose-reliable-betting-platform__warning-list,
.page-resources-how-to-choose-reliable-betting-platform__step-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: inherit;
}

.page-resources-how-to-choose-reliable-betting-platform__warning-list {
  list-style-type: '⚠️ ';
  padding-left: 10px;
}

.page-resources-how-to-choose-reliable-betting-platform__step-list {
  list-style-type: decimal;
}

.page-resources-how-to-choose-reliable-betting-platform__feature-list li,
.page-resources-how-to-choose-reliable-betting-platform__warning-list li,
.page-resources-how-to-choose-reliable-betting-platform__step-list li {
  margin-bottom: 10px;
}

.page-resources-how-to-choose-reliable-betting-platform__button-container {
  text-align: center;
  margin-top: 40px;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-light);
}

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

.page-resources-how-to-choose-reliable-betting-platform__faq-question:hover {
  background-color: #0069d9;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-item.active .page-resources-how-to-choose-reliable-betting-platform__faq-toggle {
  transform: rotate(45deg); /* Plus sign to X or minus */
}

.page-resources-how-to-choose-reliable-betting-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  color: var(--text-light);
}

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

.page-resources-how-to-choose-reliable-betting-platform__conclusion-section {
  text-align: center;
  padding: 60px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-reliable-betting-platform__hero-title {
    font-size: 3em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__hero-description {
    font-size: 1.2em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__section-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-reliable-betting-platform__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header on mobile */
  }
  .page-resources-how-to-choose-reliable-betting-platform__hero-title {
    font-size: 2.5em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__cta-button {
    width: 100% !important;
    max-width: 300px !important; /* Limit width to prevent overly wide buttons */
    margin-left: auto;
    margin-right: auto;
    display: block !important;
    padding: 12px 20px;
  }

  .page-resources-how-to-choose-reliable-betting-platform__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__sub-title {
    font-size: 1.4em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__text-block,
  .page-resources-how-to-choose-reliable-betting-platform__feature-list li,
  .page-resources-how-to-choose-reliable-betting-platform__warning-list li,
  .page-resources-how-to-choose-reliable-betting-platform__step-list li,
  .page-resources-how-to-choose-reliable-betting-platform__faq-answer p {
    font-size: 1em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__container {
    padding: 0 15px !important;
  }
  .page-resources-how-to-choose-reliable-betting-platform__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-how-to-choose-reliable-betting-platform__feature-item,
  .page-resources-how-to-choose-reliable-betting-platform__faq-item {
    padding: 20px;
  }
  .page-resources-how-to-choose-reliable-betting-platform__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-how-to-choose-reliable-betting-platform__faq-answer {
    padding: 0 20px;
  }
  .page-resources-how-to-choose-reliable-betting-platform__faq-item.active .page-resources-how-to-choose-reliable-betting-platform__faq-answer {
    padding: 15px 20px;
  }
  /* Ensure content sections don't cause horizontal scroll */
  .page-resources-how-to-choose-reliable-betting-platform__content-section,
  .page-resources-how-to-choose-reliable-betting-platform__faq-section,
  .page-resources-how-to-choose-reliable-betting-platform__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-resources-how-to-choose-reliable-betting-platform__button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-reliable-betting-platform__hero-section {
    height: 400px;
  }
  .page-resources-how-to-choose-reliable-betting-platform__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-reliable-betting-platform__section-title {
    font-size: 1.8em;
  }
}