.page-resources-why-choose-cockfighting5 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-why-choose-cockfighting5__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-why-choose-cockfighting5__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
}

.page-resources-why-choose-cockfighting5__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-why-choose-cockfighting5__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-resources-why-choose-cockfighting5__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Buttons */
.page-resources-why-choose-cockfighting5__btn-primary,
.page-resources-why-choose-cockfighting5__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-why-choose-cockfighting5__btn-primary {
  background-color: #C30808; /* Custom color for register/login type buttons */
  color: #FFFF00; /* Custom font color for register/login buttons */
  border: 2px solid #C30808;
}

.page-resources-why-choose-cockfighting5__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
}

.page-resources-why-choose-cockfighting5__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-why-choose-cockfighting5__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Section Titles */
.page-resources-why-choose-cockfighting5__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff; /* Default for dark background */
  font-weight: bold;
}

.page-resources-why-choose-cockfighting5__text-dark {
  color: #333333; /* For sections with light background */
}

.page-resources-why-choose-cockfighting5__highlight {
  color: #FFFF00; /* Highlight color for text */
  font-weight: bold;
}

.page-resources-why-choose-cockfighting5__highlight-dark {
  color: #C30808; /* Highlight color for text on light background */
  font-weight: bold;
}

.page-resources-why-choose-cockfighting5__text-link {
  color: #FFFF00; /* Link color for dark background */
  text-decoration: underline;
}

.page-resources-why-choose-cockfighting5__text-link:hover {
  color: #ffffff;
}

.page-resources-why-choose-cockfighting5__text-link-dark {
  color: #C30808; /* Link color for light background */
  text-decoration: underline;
}

.page-resources-why-choose-cockfighting5__text-link-dark:hover {
  color: #017439;
}

/* Intro Section */
.page-resources-why-choose-cockfighting5__intro-section {
  padding: 60px 0;
  background-color: transparent; /* Body background handles this */
}

.page-resources-why-choose-cockfighting5__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.page-resources-why-choose-cockfighting5__text-block p {
  margin-bottom: 20px;
}

/* Video Section */
.page-resources-why-choose-cockfighting5__video-section {
  padding: 60px 0;
  background-color: #017439; /* Brand color */
}

.page-resources-why-choose-cockfighting5__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-resources-why-choose-cockfighting5__video-wrapper .page-resources-why-choose-cockfighting5__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-resources-why-choose-cockfighting5__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.page-resources-why-choose-cockfighting5__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  font-size: 1.1em;
  color: #ffffff;
}

/* Reasons Section */
.page-resources-why-choose-cockfighting5__reasons-section {
  padding: 80px 0;
  background-color: transparent; /* Body background */
}

.page-resources-why-choose-cockfighting5__reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-why-choose-cockfighting5__reason-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark body background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  color: #ffffff; /* Light text for dark card background */
}

.page-resources-why-choose-cockfighting5__reason-card:hover {
  transform: translateY(-10px);
}