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

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-text: #FFFF00;
  --card-bg-dark: #017439;
  --card-bg-light: #ffffff;
  --border-light: #e0e0e0;
}

.page-resources-cockfighting-betting-tips-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Body background is #FFFFFF */
}

.page-resources-cockfighting-betting-tips-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-cockfighting-betting-tips-strategy__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: linear-gradient(135deg, var(--primary-color) 0%, #005f2e 100%); /* Darker green gradient */
  color: var(--text-light);
}

.page-resources-cockfighting-betting-tips-strategy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-cockfighting-betting-tips-strategy__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-cockfighting-betting-tips-strategy__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-cockfighting-betting-tips-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-cockfighting-betting-tips-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-cockfighting-betting-tips-strategy__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

.page-resources-cockfighting-betting-tips-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-cockfighting-betting-tips-strategy__btn-register {
  background: var(--register-button-bg);
  color: var(--register-login-text);
}

.page-resources-cockfighting-betting-tips-strategy__btn-register:hover {
  background: #a80707;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-cockfighting-betting-tips-strategy__btn-login {
  background: var(--login-button-bg);
  color: var(--register-login-text);
}

.page-resources-cockfighting-betting-tips-strategy__btn-login:hover {
  background: #a80707;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Sections */
.page-resources-cockfighting-betting-tips-strategy__section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-cockfighting-betting-tips-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-cockfighting-betting-tips-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* Grid Layout for Cards */
.page-resources-cockfighting-betting-tips-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-cockfighting-betting-tips-strategy__card {
  background: var(--card-bg-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-cockfighting-betting-tips-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-cockfighting-betting-tips-strategy__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-cockfighting-betting-tips-strategy__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-cockfighting-betting-tips-strategy__card-text {
  font-size: 1em;
  color: var(--text-dark);
  text-align: left;
}

/* Dark Background Section (e.g., benefits) */
.page-resources-cockfighting-betting-tips-strategy__dark-bg {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__section-title,
.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__paragraph,
.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__card-title,
.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__card-text,
.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__benefit-title,
.page-resources-cockfighting-betting-tips-strategy__dark-bg .page-resources-cockfighting-betting-tips-strategy__benefit-item p {
  color: var(--text-light);
}

/* Lists */
.page-resources-cockfighting-betting-tips-strategy__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-resources-cockfighting-betting-tips-strategy__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 40px auto;
  max-width: 900px;
}

.page-resources-cockfighting-betting-tips-strategy__list-item {
  background: var(--card-bg-light);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-resources-cockfighting-betting-tips-strategy__list-item p {
  margin-bottom: 0;
}

.page-resources-cockfighting-betting-tips-strategy__list-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-cockfighting-betting-tips-strategy__numbered-list .page-resources-cockfighting-betting-tips-strategy__list-item {
  background: var(--card-bg-light);
  border-left: none;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  counter-increment: list-counter;
  padding-left: 50px;
}

.page-resources-cockfighting-betting-tips-strategy__numbered-list .page-resources-cockfighting-betting-tips-strategy__list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  background: #e6f7ed;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-cockfighting-betting-tips-strategy__image--full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-cockfighting-betting-tips-strategy__image--center {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-cockfighting-betting-tips-strategy__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 30px;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-cockfighting-betting-tips-strategy__btn-primary:hover {
  background: #005f2e;
}

.page-resources-cockfighting-betting-tips-strategy__btn-full-width {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Benefits Grid */
.page-resources-cockfighting-betting-tips-strategy__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-cockfighting-betting-tips-strategy__benefit-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-cockfighting-betting-tips-strategy__benefit-item img {
  
  height: auto;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
  min-width: 200px; /* Enforce min image size */
  min-
}

.page-resources-cockfighting-betting-tips-strategy__benefit-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--text-light);
}