:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-on-dark: #ffffff;
    --text-on-light: #333333;
    --background-dark: #000000;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-resources-cockfighting-rules-and-strategies {
    background-color: var(--background-dark); /* Body background is #000 */
    color: var(--text-on-dark); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    padding-top: 120px; /* For fixed header on desktop */
}

@media (max-width: 768px) {
    .page-resources-cockfighting-rules-and-strategies {
        padding-top: 100px; /* For fixed header on mobile */
    }
}

.page-resources-cockfighting-rules-and-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-cockfighting-rules-and-strategies__hero-banner {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-on-dark);
}

.page-resources-cockfighting-rules-and-strategies__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-on-dark);
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-cockfighting-rules-and-strategies__intro-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-resources-cockfighting-rules-and-strategies__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-resources-cockfighting-rules-and-strategies__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-cockfighting-rules-and-strategies__section {
    padding: 60px 0;
}

.page-resources-cockfighting-rules-and-strategies__content-area {
    background-color: var(--background-dark);
    color: var(--text-on-dark);
}

.page-resources-cockfighting-rules-and-strategies__light-bg {
    background-color: var(--background-light);
    color: var(--text-on-light);
}

.page-resources-cockfighting-rules-and-strategies__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-on-dark);
}

.page-resources-cockfighting-rules-and-strategies__section-title {
    font-size: 2.5em;
    color: inherit;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-resources-cockfighting-rules-and-strategies__sub-title {
    font-size: 1.8em;
    color: inherit;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-cockfighting-rules-and-strategies__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-cockfighting-rules-and-strategies__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-cockfighting-rules-and-strategies__list-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter for dark background */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-on-dark);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-resources-cockfighting-rules-and-strategies__list-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-cockfighting-rules-and-strategies__list-item .page-resources-cockfighting-rules-and-strategies__list-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-resources-cockfighting-rules-and-strategies__list-item p {
    margin-bottom: 0;
    font-size: 1em;
    color: var(--text-on-dark);
}

.page-resources-cockfighting-rules-and-strategies__light-bg .page-resources-cockfighting-rules-and-strategies__list-item {
    background-color: #ffffff;
    color: var(--text-on-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-cockfighting-rules-and-strategies__light-bg .page-resources-cockfighting-rules-and-strategies__list-item:hover {
    background-color: #f0f0f0;
}

.page-resources-cockfighting-rules-and-strategies__light-bg .page-resources-cockfighting-rules-and-strategies__list-item .page-resources-cockfighting-rules-and-strategies__list-title {
    color: var(--secondary-color);
}

.page-resources-cockfighting-rules-and-strategies__light-bg .page-resources-cockfighting-rules-and-strategies__list-item p {
    color: var(--text-on-light);
}

.page-resources-cockfighting-rules-and-strategies__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* FAQ Section Styling */
.page-resources-cockfighting-rules-and-strategies__faq-section {
    background-color: var(--background-light);
    color: var(--text-on-light);
    padding: 60px 0;
}

.page-resources-cockfighting-rules-and-strategies__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-cockfighting-rules-and-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-cockfighting-rules-and-strategies__faq-item.active .page-resources-cockfighting-rules-and-strategies__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-cockfighting-rules-and-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-cockfighting-rules-and-strategies__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-cockfighting-rules-and-strategies__faq-question:active {
  background: #eeeeee;
}

.page-resources-cockfighting-rules-and-strategies__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-on-light);
}

.page-resources-cockfighting-rules-and-strategies__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-cockfighting-rules-and-strategies__faq-item.active .page-resources-cockfighting-rules-and-strategies__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg);
}

.page-resources-cockfighting-rules-and-strategies__faq-answer p {
    color: var(--text-on-light);
    font-size: 1em;
}

.page-resources-cockfighting-rules-and-strategies__faq-answer a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-cockfighting-rules-and-strategies__faq-answer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-cockfighting-rules-and-strategies__main-title {
        font-size: 2.5em;
    }
    .page-resources-cockfighting-rules-and-strategies__section-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-rules-and-strategies__sub-title {
        font-size: 1.5em;
    }
    .page-resources-cockfighting-rules-and-strategies__intro-text,
    .page-resources-cockfighting-rules-and-strategies__text-block,
    .page-resources-cockfighting-rules-and-strategies__list-item p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-resources-cockfighting-rules-and-strategies__hero-banner {
        padding: 60px 0;
    }
    .page-resources-cockfighting-rules-and-strategies__main-title {
        font-size: 2em;
    }
    .page-resources-cockfighting-rules-and-strategies__intro-text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-resources-cockfighting-rules-and-strategies__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-resources-cockfighting-rules-and-strategies__section {
        padding: 40px 0;
    }
    .page-resources-cockfighting-rules-and-strategies__section-title {
        font-size: 1.8em;
    }
    .page-resources-cockfighting-rules-and-strategies__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-resources-cockfighting-rules-and-strategies__list-item {
        padding: 15px;
    }
    .page-resources-cockfighting-rules-and-strategies__list-item .page-resources-cockfighting-rules-and-strategies__list-title {
        font-size: 1.1em;
    }
    .page-resources-cockfighting-rules-and-strategies__image {
        margin: 30px auto;
    }

    .page-resources-cockfighting-rules-and-strategies__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-cockfighting-rules-and-strategies__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-cockfighting-rules-and-strategies__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-cockfighting-rules-and-strategies__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-cockfighting-rules-and-strategies__faq-item.active .page-resources-cockfighting-rules-and-strategies__faq-answer {
        padding: 15px !important;
    }
}