.page-resources-betting-tips {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0D0D0D; /* Inherited from shared, but good to be explicit for context */
}

.page-resources-betting-tips__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-resources-betting-tips__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-betting-tips__hero-title {
  font-size: 3.5em;
  color: #1A1A1A; /* Dark text for light hero background */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-betting-tips__hero-description {
  font-size: 1.2em;
  color: #333333; /* Slightly darker text for readability on light background */
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-tips__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-betting-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-betting-tips__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-resources-betting-tips__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-betting-tips__button--secondary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-betting-tips__button--secondary:hover {
  background-color: #000000;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-betting-tips__article-content {
  padding: 60px 20px;
  background-color: #0D0D0D; /* Dark background for article content */
}

.page-resources-betting-tips__content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-resources-betting-tips__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-betting-tips__subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-betting-tips__paragraph {
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark background */
}

.page-resources-betting-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-resources-betting-tips__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-resources-betting-tips__list-item strong {
  color: #FFD700;
}

.page-resources-betting-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-resources-betting-tips__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-tips__action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-betting-tips__hero-title {
    font-size: 2.5em;
  }

  .page-resources-betting-tips__hero-description {
    font-size: 1em;
  }

  .page-resources-betting-tips__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-betting-tips__button {
    width: 100%;
  }

  .page-resources-betting-tips__section-title {
    font-size: 2em;
  }

  .page-resources-betting-tips__subtitle {
    font-size: 1.5em;
  }

  .page-resources-betting-tips__content-wrapper {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-betting-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-betting-tips__hero-section {
    padding: 60px 15px;
  }

  .page-resources-betting-tips__article-content {
    padding: 40px 15px;
  }

  .page-resources-betting-tips__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}