.page-resources-latest-updates-in-online-betting {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-button-bg: #C30808;
  --register-login-text-color: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --section-bg-dark: #1a1a1a; /* Assuming dark background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1);

  color: var(--text-light); /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-resources-latest-updates-in-online-betting__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-resources-latest-updates-in-online-betting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-latest-updates-in-online-betting__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-latest-updates-in-online-betting__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-resources-latest-updates-in-online-betting__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-updates-in-online-betting__hero-description {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-updates-in-online-betting__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-latest-updates-in-online-betting__section {
  padding: 60px 20px;
  background: var(--section-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-updates-in-online-betting__introduction {
  background: var(--primary-color);
}

.page-resources-latest-updates-in-online-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-latest-updates-in-online-betting__heading {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-latest-updates-in-online-betting__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
}

.page-resources-latest-updates-in-online-betting__sub-heading {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.page-resources-latest-updates-in-online-betting__paragraph {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-latest-updates-in-online-betting__trend-item,
.page-resources-latest-updates-in-online-betting__leadership-item,
.page-resources-latest-updates-in-online-betting__safety-item,
.page-resources-latest-updates-in-online-betting__future-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-updates-in-online-betting__trend-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-resources-latest-updates-in-online-betting__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-latest-updates-in-online-betting__list-item {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.page-resources-latest-updates-in-online-betting__list-item strong {
  color: var(--secondary-color);
  margin-right: 8px;
}

.page-resources-latest-updates-in-online-betting__list-item::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.page-resources-latest-updates-in-online-betting__btn-primary,
.page-resources-latest-updates-in-online-betting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-latest-updates-in-online-betting__btn-primary {
  background: var(--register-login-button-bg);
  color: var(--register-login-text-color);
  border: 2px solid var(--register-login-button-bg);
}

.page-resources-latest-updates-in-online-betting__btn-primary:hover {
  background: darken(var(--register-login-button-bg), 10%);
  border-color: darken(var(--register-login-button-bg), 10%);
}

.page-resources-latest-updates-in-online-betting__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-latest-updates-in-online-betting__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-latest-updates-in-online-betting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-latest-updates-in-online-betting__faq {
  background: #111;
}

.page-resources-latest-updates-in-online-betting__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-updates-in-online-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-resources-latest-updates-in-online-betting__faq-question:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-resources-latest-updates-in-online-betting__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-latest-updates-in-online-betting__faq-item.active .page-resources-latest-updates-in-online-betting__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-updates-in-online-betting__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}

.page-resources-latest-updates-in-online-betting__faq-item.active .page-resources-latest-updates-in-online-betting__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px !important;
}

.page-resources-latest-updates-in-online-betting__faq-answer .page-resources-latest-updates-in-online-betting__paragraph {
  margin-bottom: 0;
}

.page-resources-latest-updates-in-online-betting__conclusion {
  background: linear-gradient(135deg, var(--primary-color), #004d27);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-updates-in-online-betting__hero-title {
    font-size: 3em;
  }
  .page-resources-latest-updates-in-online-betting__hero-description {
    font-size: 1.2em;
  }
  .page-resources-latest-updates-in-online-betting__heading {
    font-size: 2em;
  }
  .page-resources-latest-updates-in-online-betting__sub-heading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-updates-in-online-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-latest-updates-in-online-betting__hero-section {
    height: auto;
    min-height: 60vh;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-latest-updates-in-online-betting__hero-title {
    font-size: 2.2em;
  }

  .page-resources-latest-updates-in-online-betting__hero-description {
    font-size: 1em;
  }

  .page-resources-latest-updates-in-online-betting__hero-buttons,
  .page-resources-latest-updates-in-online-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-latest-updates-in-online-betting__btn-primary,
  .page-resources-latest-updates-in-online-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-resources-latest-updates-in-online-betting__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-latest-updates-in-online-betting__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-latest-updates-in-online-betting__paragraph {
    font-size: 1em;
  }

  .page-resources-latest-updates-in-online-betting__trend-item,
  .page-resources-latest-updates-in-online-betting__leadership-item,
  .page-resources-latest-updates-in-online-betting__safety-item,
  .page-resources-latest-updates-in-online-betting__future-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-resources-latest-updates-in-online-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-latest-updates-in-online-betting__section,
  .page-resources-latest-updates-in-online-betting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-updates-in-online-betting__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-latest-updates-in-online-betting__faq-answer {
    padding: 0 15px;
  }

  .page-resources-latest-updates-in-online-betting__faq-item.active .page-resources-latest-updates-in-online-betting__faq-answer {
    padding: 15px !important;
  }
}