/* style/resources-123b-betting-faq.css */
.page-resources-123b-betting-faq {
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-123b-betting-faq__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-resources-123b-betting-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-123b-betting-faq__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-123b-betting-faq__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-123b-betting-faq__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-123b-betting-faq__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-123b-betting-faq__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-123b-betting-faq__btn-primary,
.page-resources-123b-betting-faq__btn-secondary,
.page-resources-123b-betting-faq__btn-inline {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-123b-betting-faq__btn-primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-resources-123b-betting-faq__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-123b-betting-faq__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-123b-betting-faq__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-resources-123b-betting-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-resources-123b-betting-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-123b-betting-faq__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-123b-betting-faq__faq-list {
  margin-top: 40px;
}

.page-resources-123b-betting-faq__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-123b-betting-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #2a2a2a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-123b-betting-faq__faq-question:hover {
  background-color: #3a3a3a;
}

.page-resources-123b-betting-faq__faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
}

.page-resources-123b-betting-faq__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-123b-betting-faq__faq-item.active .page-resources-123b-betting-faq__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-123b-betting-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-123b-betting-faq__faq-item.active .page-resources-123b-betting-faq__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 20px 25px;
}

.page-resources-123b-betting-faq__faq-answer p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-123b-betting-faq__faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-123b-betting-faq__faq-answer li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-resources-123b-betting-faq__faq-answer strong {
  color: #FFD700;
}

.page-resources-123b-betting-faq__image-inline {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
}

.page-resources-123b-betting-faq__btn-inline {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #1E90FF;
  padding: 10px 20px;
  margin-top: 10px;
}

.page-resources-123b-betting-faq__btn-inline:hover {
  background-color: #1c7edc;
  border-color: #1c7edc;
}

.page-resources-123b-betting-faq__cta-section {
  background-color: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  border: 1px solid #333333;
}

.page-resources-123b-betting-faq__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-123b-betting-faq__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-123b-betting-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-123b-betting-faq__hero-title {
    font-size: 2.8em;
  }
  .page-resources-123b-betting-faq__hero-description {
    font-size: 1.2em;
  }
  .page-resources-123b-betting-faq__section-title {
    font-size: 2em;
  }
  .page-resources-123b-betting-faq__faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-123b-betting-faq__hero-section {
    height: 500px;
  }
  .page-resources-123b-betting-faq__hero-title {
    font-size: 2.2em;
  }
  .page-resources-123b-betting-faq__hero-description {
    font-size: 1em;
  }
  .page-resources-123b-betting-faq__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-123b-betting-faq__btn-primary,
  .page-resources-123b-betting-faq__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-resources-123b-betting-faq__content-area {
    padding: 30px 15px;
  }
  .page-resources-123b-betting-faq__section-title {
    font-size: 1.8em;
  }
  .page-resources-123b-betting-faq__section-intro {
    font-size: 0.95em;
  }
  .page-resources-123b-betting-faq__faq-question {
    padding: 15px 20px;
  }
  .page-resources-123b-betting-faq__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-123b-betting-faq__faq-answer {
    padding: 0 20px;
  }
  .page-resources-123b-betting-faq__faq-item.active .page-resources-123b-betting-faq__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-123b-betting-faq__cta-title {
    font-size: 1.8em;
  }
  .page-resources-123b-betting-faq__cta-description {
    font-size: 0.95em;
  }
  .page-resources-123b-betting-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-123b-betting-faq__btn-inline {
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
  }

  /* Force responsive for images */
  .page-resources-123b-betting-faq img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-123b-betting-faq__hero-section,
  .page-resources-123b-betting-faq__content-area,
  .page-resources-123b-betting-faq__faq-item,
  .page-resources-123b-betting-faq__cta-section,
  .page-resources-123b-betting-faq__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-resources-123b-betting-faq__btn-primary,
  .page-resources-123b-betting-faq__btn-secondary,
  .page-resources-123b-betting-faq a[class*="button"],
  .page-resources-123b-betting-faq 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;
  }
}