/* style/live-betting-guide.css */
.page-live-betting-guide {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
}

.page-live-betting-guide__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #f8f8f8;
}

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

.page-live-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff; /* Light text over hero image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for title */
}

.page-live-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-live-betting-guide__hero-button,
.page-live-betting-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for buttons */
  color: #B80000; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-betting-guide__hero-button:hover,
.page-live-betting-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live-betting-guide__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-live-betting-guide__section-title {
  font-size: 2.5em;
  color: #B80000; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live-betting-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-live-betting-guide__sub-title {
  font-size: 1.8em;
  color: #B80000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-live-betting-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-live-betting-guide__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-live-betting-guide__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live-betting-guide__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 800px; /* Ensure images are not too small */
}

.page-live-betting-guide__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-live-betting-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-live-betting-guide__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23B80000"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-live-betting-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live-betting-guide__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-live-betting-guide__card:hover {
  transform: translateY(-10px);
}

.page-live-betting-guide__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-live-betting-guide__card-title {
  font-size: 1.5em;
  color: #B80000;
  margin: 20px 15px 10px;
}

.page-live-betting-guide__card p {
  padding: 0 15px;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-live-betting-guide__card-button {
  display: inline-block;
  background-color: #B80000; /* Main color for card buttons */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-live-betting-guide__card-button:hover {
  background-color: #8c0000;
}

.page-live-betting-guide__responsible-gaming-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #B80000; /* Main color for responsible gaming button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live-betting-guide__responsible-gaming-button:hover {
  background-color: #8c0000;
}

.page-live-betting-guide__faq-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 60px auto;
}

.page-live-betting-guide__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-live-betting-guide__faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-live-betting-guide__faq-question {
  background-color: #FFD700; /* Auxiliary color for FAQ question */
  color: #B80000; /* Main color for FAQ question text */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live-betting-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-live-betting-guide__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-live-betting-guide__faq-answer p {
  padding: 15px 0;
  margin: 0;
}

.page-live-betting-guide__cta-section {
  background-color: #B80000; /* Main color for CTA section background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
}

.page-live-betting-guide__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-live-betting-guide__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-live-betting-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for CTA title */
}

.page-live-betting-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live-betting-guide__hero-title {
    font-size: 2.8em;
  }
  .page-live-betting-guide__section-title {
    font-size: 2em;
  }
  .page-live-betting-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live-betting-guide {
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has header offset */
  }
  .page-live-betting-guide__hero-section {
    padding: 60px 15px;
  }
  .page-live-betting-guide__hero-title {
    font-size: 2.2em;
  }
  .page-live-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-live-betting-guide__hero-button,
  .page-live-betting-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live-betting-guide__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-live-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-live-betting-guide__sub-title {
    font-size: 1.5em;
  }
  .page-live-betting-guide__content-grid,
  .page-live-betting-guide__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-live-betting-guide__card-grid {
    grid-template-columns: 1fr;
  }
  .page-live-betting-guide__faq-section {
    padding: 40px 15px;
  }
  .page-live-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-live-betting-guide__cta-section {
    padding: 60px 15px;
  }
  .page-live-betting-guide__cta-title {
    font-size: 1.8em;
  }
  .page-live-betting-guide__cta-description {
    font-size: 1em;
  }
  .page-live-betting-guide__image, 
  .page-live-betting-guide__card-image, 
  .page-live-betting-guide__cta-image, 
  .page-live-betting-guide__image--centered {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must be >= 200px. No small icons. */
  .page-live-betting-guide img {
    min-width: 200px; 
    min-height: 200px;
  }
}