.page-blog-expert-betting-tips {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-blog-expert-betting-tips__hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-blog-expert-betting-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-expert-betting-tips__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-expert-betting-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-expert-betting-tips__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-blog-expert-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-blog-expert-betting-tips__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog-expert-betting-tips__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-blog-expert-betting-tips__cta-button--register {
  background-color: #FFFFFF;
  color: #000000; /* Text color for contrast with white background */
}

.page-blog-expert-betting-tips__cta-button--register:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-blog-expert-betting-tips__cta-button--login {
  background-color: #FCBC45;
  color: #000000; /* Text color for contrast with yellow background */
}

.page-blog-expert-betting-tips__cta-button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}