.page-resources-famous-cockfighting-events {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default light text color for dark body background */
  line-height: 1.6;
  background-color: #000000; /* Body background is black from shared.css */
}

.page-resources-famous-cockfighting-events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-famous-cockfighting-events__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background: linear-gradient(135deg, #1A2B4C, #0A1B2C);
  padding-top: var(--header-offset, 120px);
}

.page-resources-famous-cockfighting-events__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-famous-cockfighting-events__description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-famous-cockfighting-events__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-famous-cockfighting-events__cta-buttons--center {
  margin-top: 40px;
}

.page-resources-famous-cockfighting-events__btn-primary,
.page-resources-famous-cockfighting-events__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-famous-cockfighting-events__btn-primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-resources-famous-cockfighting-events__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-famous-cockfighting-events__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources-famous-cockfighting-events__btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-famous-cockfighting-events__section {
  padding: 60px 0;
}

.page-resources-famous-cockfighting-events__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-resources-famous-cockfighting-events__subsection-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-famous-cockfighting-events__text-block {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-famous-cockfighting-events__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-famous-cockfighting-events__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #f0f0f0;
  font-size: 17px;
  margin-bottom: 20px;
}

.page-resources-famous-cockfighting-events__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: #f0f0f0;
  font-size: 17px;
  margin-bottom: 20px;
}

.page-resources-famous-cockfighting-events__list-item {
  margin-bottom: 10px;
}

/* Color contrast specific styles */
.page-resources-famous-cockfighting-events__dark-bg {
  background-color: #1A2B4C;
  color: #ffffff;
}

.page-resources-famous-cockfighting-events__light-bg {
  background-color: #0A1B2C; /* Slightly lighter dark for contrast */
  color: #f0f0f0;
}

/* Ensure all text within the main content is light for the dark body background */
.page-resources-famous-cockfighting-events p,
.page-resources-famous-cockfighting-events li,
.page-resources-famous-cockfighting-events h2,
.page-resources-famous-cockfighting-events h3 {
  color: #f0f0f0;
}

.page-resources-famous-cockfighting-events__main-title,
.page-resources-famous-cockfighting-events__section-title,
.page-resources-famous-cockfighting-events__subsection-title {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-famous-cockfighting-events__main-title {
    font-size: 40px;
  }

  .page-resources-famous-cockfighting-events__section-title {
    font-size: 30px;
  }

  .page-resources-famous-cockfighting-events__subsection-title {
    font-size: 24px;
  }

  .page-resources-famous-cockfighting-events__description,
  .page-resources-famous-cockfighting-events__text-block,
  .page-resources-famous-cockfighting-events__list,
  .page-resources-famous-cockfighting-events__ordered-list {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-resources-famous-cockfighting-events__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-famous-cockfighting-events__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-resources-famous-cockfighting-events__description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-resources-famous-cockfighting-events__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-famous-cockfighting-events__btn-primary,
  .page-resources-famous-cockfighting-events__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px;
    padding: 12px 20px;
  }

  .page-resources-famous-cockfighting-events__section {
    padding: 40px 0;
  }

  .page-resources-famous-cockfighting-events__section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-resources-famous-cockfighting-events__subsection-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-famous-cockfighting-events__text-block,
  .page-resources-famous-cockfighting-events__list,
  .page-resources-famous-cockfighting-events__ordered-list {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-resources-famous-cockfighting-events__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-famous-cockfighting-events__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    min-width: 200px;
    min-height: 200px;
  }
  
  .page-resources-famous-cockfighting-events__cta-buttons--center {
    margin-top: 30px;
  }
}