/* style/cockfighting-c3-introduction.css */
.page-cockfighting-c3-introduction {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Main content area will inherit body background */
}

.page-cockfighting-c3-introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-cockfighting-c3-introduction__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  color: #ffffff;
}

.page-cockfighting-c3-introduction__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-cockfighting-c3-introduction__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-cockfighting-c3-introduction__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-cockfighting-c3-introduction__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-cockfighting-c3-introduction__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting-c3-introduction__hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-cockfighting-c3-introduction__btn-primary,
.page-cockfighting-c3-introduction__btn-secondary {
  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, color 0.3s ease, border-color 0.3s ease;
  /* margin: 0 10px 10px 0; Removed margin-right to use gap on flex container */
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting-c3-introduction__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-cockfighting-c3-introduction__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-cockfighting-c3-introduction__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-cockfighting-c3-introduction__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* General Section Styles */
.page-cockfighting-c3-introduction__intro-section,
.page-cockfighting-c3-introduction__features-section,
.page-cockfighting-c3-introduction__types-section,
.page-cockfighting-c3-introduction__promotions-section,
.page-cockfighting-c3-introduction__cta-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for these sections */
  color: #333333; /* Dark text for light background */
}

.page-cockfighting-c3-introduction__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body bg for distinction, but still dark */
    color: #ffffff;
}

.page-cockfighting-c3-introduction__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-cockfighting-c3-introduction__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555; /* Slightly lighter dark text */
}

/* Intro Section */
.page-cockfighting-c3-introduction__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-cockfighting-c3-introduction__image-left,
.page-cockfighting-c3-introduction__image-right {
  flex: 1;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting-c3-introduction__text-block {
  flex: 1;
  color: #333333;
}

.page-cockfighting-c3-introduction__text-block h3 {
  color: #26A9E0;
  font-size: 1.5em;
  margin-top: 20px;
}

.page-cockfighting-c3-introduction__text-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-cockfighting-c3-introduction__text-block li {
  margin-bottom: 8px;
}

/* Video Section */
.page-cockfighting-c3-introduction__video-section {
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-cockfighting-c3-introduction__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1000px; /* Max width for video */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-c3-introduction__video,
.page-cockfighting-c3-introduction__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.page-cockfighting-c3-introduction__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Features Section */
.page-cockfighting-c3-introduction__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting-c3-introduction__feature-card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-cockfighting-c3-introduction__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Adjust size for feature icons */
  margin-bottom: 20px;
  border-radius: 4px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting-c3-introduction__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-cockfighting-c3-introduction__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-cockfighting-c3-introduction__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* Rules Section */
.page-cockfighting-c3-introduction__rules-section {
    padding: 80px 0;
    color: #ffffff;
}

.page-cockfighting-c3-introduction__content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-cockfighting-c3-introduction__content-grid .page-cockfighting-c3-introduction__text-block {
    flex: 1;
}

.page-cockfighting-c3-introduction__content-grid .page-cockfighting-c3-introduction__text-block h3 {
    color: #26A9E0;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-cockfighting-c3-introduction__content-grid .page-cockfighting-c3-introduction__text-block ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-cockfighting-c3-introduction__content-grid .page-cockfighting-c3-introduction__text-block li {
    margin-bottom: 8px;
}

.page-cockfighting-c3-introduction__content-grid .page-cockfighting-c3-introduction__image-right {
    flex: 0 0 400px; /* Fixed width for image on desktop */
    max-width: 400px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Types Section */
.page-cockfighting-c3-introduction__type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-c3-introduction__card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    color: #333333;
    text-align: center;
}

.page-cockfighting-c3-introduction__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-cockfighting-c3-introduction__card-text {
    font-size: 1em;
    color: #555555;
}

/* Benefits Section */
.page-cockfighting-c3-introduction__benefits-section {
    padding: 80px 0;
    color: #ffffff;
}

.page-cockfighting-c3-introduction__benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}