.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Body background from shared.css */
}

.page-cockfighting__section {
  padding: 60px 20px;
  text-align: center;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-cockfighting__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #FF0000; /* Brand red for titles */
  text-transform: uppercase;
}

.page-cockfighting__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FF0000; /* Brand red for sub-titles */
  text-align: left;
}

.page-cockfighting__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light grey for body text on dark background */
  text-align: justify;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: nowrap;
  word-wrap: normal;
}

.page-cockfighting__btn-primary {
  background-color: #FF0000; /* Brand red */
  color: #ffffff; /* White text */
  border-color: #FF0000;
}

.page-cockfighting__btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
}

.page-cockfighting__btn-secondary {
  background-color: #ffffff;
  color: #FF0000; /* Brand red text */
  border-color: #FF0000;
}

.page-cockfighting__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #cc0000;
  border-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
}

.page-cockfighting__btn--large {
  padding: 18px 40px;
  font-size: 20px;
}

/* HERO Section */
.page-cockfighting__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Assuming shared.css does NOT set body padding-top */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #000000;
}

.page-cockfighting__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-cockfighting__hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: 22px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* General Content Grid Layout */
.page-cockfighting__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__grid-layout--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-cockfighting__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-cockfighting__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FF0000; /* Brand red for card titles */
}

.page-cockfighting__card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card images */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}