/* style/resources-online-betting-guide.css */
.page-resources-online-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.page-resources-online-betting-guide__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-resources-online-betting-guide__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources-online-betting-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-online-betting-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-online-betting-guide__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-online-betting-guide__btn--primary {
  background-color: #ffc107;
  color: #0056b3;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-online-betting-guide__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-online-betting-guide__btn--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-resources-online-betting-guide__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-online-betting-guide__hero-image-container {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  z-index: 1;
}

.page-resources-online-betting-guide__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-guide__article-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-online-betting-guide__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-betting-guide__article {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.page-resources-online-betting-guide__heading {
  font-size: 2.2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
}

.page-resources-online-betting-guide__sub-heading {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-online-betting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333;
}

.page-resources-online-betting-guide__list,
.page-resources-online-betting-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-resources-online-betting-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-online-betting-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-online-betting-guide__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-online-betting-guide__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #e0eaf6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide__faq-question {
  color: #007bff;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-online-betting-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #007bff;
  transition: transform 0.3s ease;
}

.page-resources-online-betting-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-online-betting-guide__faq-answer {
  display: none;
  font-size: 1em;
  color: #555;
  margin-top: 10px;
}

.page-resources-online-betting-guide__faq-question.active + .page-resources-online-betting-guide__faq-answer {
  display: block;
}

.page-resources-online-betting-guide__link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.page-resources-online-betting-guide__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-resources-online-betting-guide__return-link-container {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-resources-online-betting-guide__return-link {
  color: #007bff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
}

.page-resources-online-betting-guide__return-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-resources-online-betting-guide__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-resources-online-betting-guide__floating-btn {
  background-color: #ffc107;
  color: #0056b3;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.page-resources-online-betting-guide__floating-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-online-betting-guide__hero {
    padding: 60px 15px;
  }

  .page-resources-online-betting-guide__title {
    font-size: 2.5em;
  }

  .page-resources-online-betting-guide__subtitle {
    font-size: 1.1em;
  }

  .page-resources-online-betting-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-online-betting-guide__article {
    padding: 30px;
  }

  .page-resources-online-betting-guide__heading {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-online-betting-guide__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-online-betting-guide__paragraph,
  .page-resources-online-betting-guide__list,
  .page-resources-online-betting-guide__ordered-list,
  .page-resources-online-betting-guide__faq-answer {
    font-size: 1em;
  }

  .page-resources-online-betting-guide__faq-question {
    font-size: 1.2em;
  }

  .page-resources-online-betting-guide__floating-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-resources-online-betting-guide__hero {
    padding: 40px 10px;
  }

  .page-resources-online-betting-guide__title {
    font-size: 2em;
  }

  .page-resources-online-betting-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-online-betting-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-online-betting-guide__article {
    padding: 20px;
  }

  .page-resources-online-betting-guide__heading {
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-resources-online-betting-guide__sub-heading {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .page-resources-online-betting-guide__floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .page-resources-online-betting-guide__floating-btn {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}