:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* #F2FFF6 on dark background */
  background-color: var(--background-color); /* #08160F */
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: var(--background-color);
}

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__hero-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--text-main-color);
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

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

.page-cockfighting__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button--primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-cockfighting__cta-button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__cta-button--secondary {
  background-color: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--border-color); /* #2E7A4E */
}

.page-cockfighting__cta-button--secondary:hover {
  background-color: rgba(46, 122, 78, 0.2);
  transform: translateY(-2px);
}

.page-cockfighting__section {
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-cockfighting__section--intro {
  background-color: var(--background-color);
}

.page-cockfighting__section--history,
.page-cockfighting__section--guide,
.page-cockfighting__section--promotions,
.page-cockfighting__section--conclusion {
  background-color: var(--card-bg-color); /* #11271B */
}

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

.page-cockfighting__title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-cockfighting__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
  border-radius: 2px;
}

.page-cockfighting__text {
  font-size: 1.05em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-cockfighting__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
  font-size: 1em;
}

.page-cockfighting__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color); /* #11A84E */
  font-weight: bold;
}

.page-cockfighting__list--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .page-cockfighting__list--two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.page-cockfighting__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-cockfighting__guide-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-cockfighting__guide-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-cockfighting__step-card {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--divider-color); /* #1E3A2A */
}

.page-cockfighting__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__step-title {
  font-size: 1.4em;
  color: var(--main-color); /* #11A84E */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__step-description {
  color: var(--text-secondary-color);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push button to bottom */
}

.page-cockfighting__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting__title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }
  .page-cockfighting__hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
  }
  .page-cockfighting__hero-buttons,
  .page-cockfighting__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-cockfighting__section {
    padding: 40px 15px;
  }
  .page-cockfighting__title {
    font-size: 1.6em;
    margin-bottom: 25px;
  }
  .page-cockfighting__text {
    font-size: 0.95em;
  }
  .page-cockfighting__list-item {
    font-size: 0.95em;
  }
  .page-cockfighting__list--two-cols {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__step-card {
    padding: 25px;
  }
  .page-cockfighting__step-title {
    font-size: 1.2em;
  }

  /* Mobile forced responsive styles */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-cockfighting__section,
  .page-cockfighting__container,
  .page-cockfighting__step-card,
  .page-cockfighting__hero-content,
  .page-cockfighting__hero-buttons,
  .page-cockfighting__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-cockfighting__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-cockfighting__cta-button,
  .page-cockfighting__cta-button--primary,
  .page-cockfighting__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px; /* Add padding for button text */
    padding-right: 15px;
  }
  .page-cockfighting__hero-buttons,
  .page-cockfighting__button-group {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
  /* No video on this page, so no specific video responsive styles needed */
}