/* style/resources-online-cockfighting-betting-tips.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #f0f0f0;
  --background-light: #FFFFFF;
  --background-dark: #1a1a2e; /* Inherited from shared.css, body background */
  --login-color: #EA7C07;
  --border-color: #e0e0e0;
}

.page-resources-online-cockfighting-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page, assuming dark body background */
  background-color: var(--background-dark);
}

.page-resources-online-cockfighting-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  color: var(--secondary-color);
  overflow: hidden;
}

.page-resources-online-cockfighting-betting-tips__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-online-cockfighting-betting-tips__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-online-cockfighting-betting-tips__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-online-cockfighting-betting-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

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

.page-resources-online-cockfighting-betting-tips__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-cockfighting-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-online-cockfighting-betting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-online-cockfighting-betting-tips__cta-buttons--center {
  justify-content: center;
}

.page-resources-online-cockfighting-betting-tips__btn-primary,
.page-resources-online-cockfighting-betting-tips__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%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-online-cockfighting-betting-tips__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-online-cockfighting-betting-tips__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-online-cockfighting-betting-tips__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-online-cockfighting-betting-tips__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-online-cockfighting-betting-tips__content-section {
  padding: 60px 20px;
}

.page-resources-online-cockfighting-betting-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-online-cockfighting-betting-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-resources-online-cockfighting-betting-tips__section-title--light {
  color: var(--secondary-color);
}

.page-resources-online-cockfighting-betting-tips__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-online-cockfighting-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-resources-online-cockfighting-betting-tips__paragraph--light {
  color: var(--text-light);
}

.page-resources-online-cockfighting-betting-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-resources-online-cockfighting-betting-tips__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--text-dark);
}