.page-resources-understanding-betting-odds {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background is white */
}

.page-resources-understanding-betting-odds__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #f0f0f0;
  overflow: hidden;
}

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

.page-resources-understanding-betting-odds__hero-title {
  font-size: 2.8em;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-resources-understanding-betting-odds__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-understanding-betting-odds__btn-primary,
.page-resources-understanding-betting-odds__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%; /* Ensure buttons are responsive */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  min-width: 200px; /* Minimum width for buttons */
  text-align: center;
}

.page-resources-understanding-betting-odds__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-resources-understanding-betting-odds__btn-primary:hover {
  background-color: #e02a2a;
  border-color: #e02a2a;
}

.page-resources-understanding-betting-odds__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}