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

.page-resources-understanding-game-odds__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.page-resources-understanding-game-odds__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for consistency */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-understanding-game-odds__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
}

.page-resources-understanding-game-odds__hero-content {
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.page-resources-understanding-game-odds__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45;
  font-weight: bold;
}

.page-resources-understanding-game-odds__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-understanding-game-odds__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-resources-understanding-game-odds__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
}

.page-resources-understanding-game-odds__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-understanding-game-odds__button--register:hover {
  background-color: #f0f0f0;
}

.page-resources-understanding-game-odds__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-understanding-game-odds__button--login:hover {
  background-color: #e0a030;
}

.page-resources-understanding-game-odds__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-understanding-game-odds__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-understanding-game-odds__back-link:hover {
  text-decoration: underline;
}

.page-resources-understanding-game-odds__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-understanding-game-odds__subsection-title {
  font-size: 1.7em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-understanding-game-odds__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-understanding-game-odds__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-understanding-game-odds__list-item {
  margin-bottom: 10px;
}

.page-resources-understanding-game-odds__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-understanding-game-odds__link:hover {
  text-decoration: underline;
}

.page-resources-understanding-game-odds__content-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-understanding-game-odds__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-understanding-game-odds__call-to-action-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-resources-understanding-game-odds__call-to-action-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-understanding-game-odds__call-to-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-understanding-game-odds__related-resources {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-resources-understanding-game-odds__related-resources-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
}

.page-resources-understanding-game-odds__related-resources-list {
  list-style-type: none;
  padding: 0;
}

.page-resources-understanding-game-odds__related-resources-item {
  margin-bottom: 10px;
}

.page-resources-understanding-game-odds__related-resources-item a {
  color: #FCBC45;
  text-decoration: none;
  font-size: 1.1em;
}

.page-resources-understanding-game-odds__related-resources-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-understanding-game-odds__hero-title {
    font-size: 2em;
  }

  .page-resources-understanding-game-odds__hero-description,
  .page-resources-understanding-game-odds__paragraph,
  .page-resources-understanding-game-odds__list,
  .page-resources-understanding-game-odds__list-item,
  .page-resources-understanding-game-odds__call-to-action-description {
    font-size: 1em;
  }

  .page-resources-understanding-game-odds__section-title {
    font-size: 1.8em;
  }

  .page-resources-understanding-game-odds__subsection-title {
    font-size: 1.4em;
  }

  .page-resources-understanding-game-odds__hero-actions {
    flex-direction: column;
  }

  .page-resources-understanding-game-odds__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-understanding-game-odds__content-area {
    padding: 0 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-resources-understanding-game-odds__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }

  .page-resources-understanding-game-odds__call-to-action-title {
    font-size: 2em;
  }

  .page-resources-understanding-game-odds__call-to-action-buttons {
    flex-direction: column;
    gap: 10px;
  }
}