/* style/resources-betting-guide.css */
.page-resources-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches body background */
}

.page-resources-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Hero Section --- */
.page-resources-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #007bff; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-betting-guide__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2; /* Subtle background image */
}

.page-resources-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- General Sections --- */
.page-resources-betting-guide__section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
}

.page-resources-betting-guide__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-resources-betting-guide__dark-bg {
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
}

.page-resources-betting-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffc107; /* Accent color for titles */
}

.page-resources-betting-guide__light-bg .page-resources-betting-guide__section-title {
  color: #007bff; /* Primary color for titles on light background */
}

.page-resources-betting-guide__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-resources-betting-guide__light-bg .page-resources-betting-guide__paragraph {
  color: #555555;
}

/* --- Buttons --- */
.page-resources-betting-guide__btn-primary,
.page-resources-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-betting-guide__btn-primary {
  background-color: #ffc107; /* Accent color */
  color: #121212; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-resources-betting-guide__btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-resources-betting-guide__btn-secondary {
  background-color: transparent;
  color: #ffc107; /* Accent color */
  border: 2px solid #ffc107;
  margin-left: 20px;
}

.page-resources-betting-guide__btn-secondary:hover {
  background-color: #ffc107;
  color: #121212;
}

.page-resources-betting-guide__btn-text {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-betting-guide__btn-text:hover {
  color: #e0a800;
  text-decoration: underline;
}

/* --- Feature Grid (Introduction Section) --- */
.page-resources-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-resources-betting-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-guide__light-bg .page-resources-betting-guide__feature-item {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-betting-guide__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-betting-guide__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffc107;
}

.page-resources-betting-guide__light-bg .page-resources-betting-guide__feature-title {
  color: #007bff;
}

.page-resources-betting-guide__feature-text {
  color: #e0e0e0;
}

.page-resources-betting-guide__light-bg .page-resources-betting-guide__feature-text {
  color: #555555;
}

.page-resources-betting-guide__feature-text a {
  color: #ffc107;
  text-decoration: none;
}

.page-resources-betting-guide__feature-text a:hover {
  text-decoration: underline;
}

/* --- Getting Started Section --- */
.page-resources-betting-guide__step-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-resources-betting-guide__step-item {
  background-color: #ffffff;
  color: #333333;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-resources-betting-guide__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-betting-guide__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-resources-betting-guide__step-text {
  font-size: 1.05em;
  color: #555555;
}

.page-resources-betting-guide__step-text a,
.page-resources-betting-guide__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-betting-guide__step-text a:hover,
.page-resources-betting-guide__text-link:hover {
  text-decoration: underline;
}

/* --- Bet Types Section --- */
.page-resources-betting-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-betting-guide__card {
  background-color: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-resources-betting-guide__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-betting-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-betting-guide__card-title {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
  color: #ffc107;
}

.page-resources-betting-guide__card-title a {
  color: #ffc107;
  text-decoration: none;
}

.page-resources-betting-guide__card-title a:hover {
  text-decoration: underline;
}

.page-resources-betting-guide__card-text {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 15px 20px 15px;
}

/* --- Strategies Section --- */
.page-resources-betting-guide__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-resources-betting-guide__strategy-item {
  background-color: #ffffff;
  color: #333333;
  padding: 25px 30px;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-betting-guide__strategy-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-resources-betting-guide__strategy-text {
  font-size: 1.05em;
  color: #555555;
}

.page-resources-betting-guide__strategy-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-betting-guide__strategy-text a:hover {
  text-decoration: underline;
}

.page-resources-betting-guide__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* --- Promotions Section --- */
.page-resources-betting-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-betting-guide__promo-card {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  color: #ffffff;
}

.page-resources-betting-guide__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-betting-guide__promo-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffc107;
  padding: 0 15px;
}

.page-resources-betting-guide__promo-text {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 15px 20px 15px;
}

.page-resources-betting-guide__promo-text a {
  color: #ffc107;
  text-decoration: none;
}

.page-resources-betting-guide__promo-text a:hover {
  text-decoration: underline;
}

.page-resources-betting-guide__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-resources-betting-guide__cta-bottom .page-resources-betting-guide__btn-primary {
  margin-left: 0;
}

/* --- FAQ Section --- */
.page-resources-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-resources-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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