/* style/resources-vz88-app-betting-guide.css */
.page-resources-vz88-app-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-resources-vz88-app-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-vz88-app-betting-guide__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted for header offset on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #017439, #0a0a0a);
  color: #ffffff;
}

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

.page-resources-vz88-app-betting-guide__hero-section .page-resources-vz88-app-betting-guide__container {
  position: relative;
  z-index: 2;
}

.page-resources-vz88-app-betting-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-vz88-app-betting-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-vz88-app-betting-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-vz88-app-betting-guide__btn-primary,
.page-resources-vz88-app-betting-guide__btn-secondary,
.page-resources-vz88-app-betting-guide__btn-register,
.page-resources-vz88-app-betting-guide__btn-login,
.page-resources-vz88-app-betting-guide__btn-card {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-vz88-app-betting-guide__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-vz88-app-betting-guide__btn-primary:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

.page-resources-vz88-app-betting-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-vz88-app-betting-guide__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Custom button colors based on requirements, ensuring contrast */
.page-resources-vz88-app-betting-guide__btn-register,
.page-resources-vz88-app-betting-guide__btn-login {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #ffffff; /* Prioritizing WCAG AA contrast (4.5:1) over custom #FFFF00 for text */
  border: 2px solid #C30808;
}

.page-resources-vz88-app-betting-guide__btn-register:hover,
.page-resources-vz88-app-betting-guide__btn-login:hover {
  background-color: #a30707;
  transform: translateY(-2px);
}

.page-resources-vz88-app-betting-guide__btn-card {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-vz88-app-betting-guide__btn-card:hover {
  background-color: #005a2e;
  transform: translateY(-1px);
}

/* General Section Styling */
.page-resources-vz88-app-betting-guide__section {
  padding: 80px 0;
}

.page-resources-vz88-app-betting-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-vz88-app-betting-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-vz88-app-betting-guide__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-resources-vz88-app-betting-guide__sub-heading {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-vz88-app-betting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-resources-vz88-app-betting-guide__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-vz88-app-betting-guide__ordered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-vz88-app-betting-guide__list-item {
  margin-bottom: 10px;
  color: inherit;
}