:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy-color: #08162B;
}

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--deep-navy-color); /* Body background is dark, so main text is light */
}

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

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--deep-navy-color);
}

.page-cockfighting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-cockfighting__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-cockfighting__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-cockfighting__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 115, 246, 0.6);
}

.page-cockfighting__btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(17, 59, 122, 0.3);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 59, 122, 0.5);
}

.page-cockfighting__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-cockfighting__section-title--light {
    color: var(--text-main);
    text-shadow: none;
}

.page-cockfighting__paragraph {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-cockfighting__paragraph--light {
    color: var(--text-main);
}

.page-cockfighting__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.page-cockfighting__image-centered {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-cockfighting__features-grid, .page-cockfighting__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__feature-item, .page-cockfighting__promotion-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-item:hover, .page-cockfighting__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-title, .page-cockfighting__promotion-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting__feature-description, .page-cockfighting__promotion-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-cockfighting__list, .page-cockfighting__steps-list, .page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__list-item, .page-cockfighting__step-item, .page-cockfighting__tip-item {
    background-color: var(--card-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}

.page-cockfighting__list-item::before, .page-cockfighting__step-item::before, .page-cockfighting__tip-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: var(--gold-color);
    border-radius: 50%;
}

.page-cockfighting__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--primary-color);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: -12.5px;
    top: 20px;
    border: 2px solid var(--gold-color);
}

.page-cockfighting__list-title, .page-cockfighting__step-title, .page-cockfighting__tip-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 20px;
}

.page-cockfighting__step-title {
    padding-left: 30px;
}

.page-cockfighting__list-description, .page-cockfighting__step-description, .page-cockfighting__tip-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 20px;
}

.page-cockfighting__btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
}

.page-cockfighting__btn-small:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-cockfighting__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-cockfighting__text-content {
    text-align: justify;
}

.page-cockfighting__image-content {
    text-align: center;
}

.page-cockfighting__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: var(--primary-color);
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  background: var(--deep-navy-color);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
}

.page-cockfighting__faq-answer p {
    margin: 0;
    padding-top: 10px;
}

.page-cockfighting__cta-bottom-section {
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting__cta-bottom-section .page-cockfighting__container {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-color);
}

.page-cockfighting__cta-bottom-section .page-cockfighting__section-title {
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-cockfighting__cta-bottom-section .page-cockfighting__paragraph {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.page-cockfighting__dark-bg {
    background-color: var(--deep-navy-color);
    color: var(--text-main);
}

.page-cockfighting__dark-bg .page-cockfighting__section-title {
    color: var(--gold-color);
}

.page-cockfighting__dark-bg .page-cockfighting__paragraph {
    color: var(--text-secondary);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-cockfighting__hero-description {
        font-size: 1.1rem;
    }
    .page-cockfighting__section-title {
        font-size: 2rem;
    }
    .page-cockfighting__paragraph {
        font-size: 1rem;
    }
    .page-cockfighting__feature-title, .page-cockfighting__promotion-title {
        font-size: 1.3rem;
    }
    .page-cockfighting__list-title, .page-cockfighting__step-title, .page-cockfighting__tip-title {
        font-size: 1.2rem;
    }
    .page-cockfighting__feature-description, .page-cockfighting__promotion-description, .page-cockfighting__list-description, .page-cockfighting__step-description, .page-cockfighting__tip-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-image img {
        border-radius: 4px;
    }
    .page-cockfighting__cta-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-cockfighting__cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-cockfighting__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-cockfighting__paragraph {
        font-size: 0.95rem;
    }
    .page-cockfighting__features-grid, .page-cockfighting__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-cockfighting__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-cockfighting__feature-item, .page-cockfighting__promotion-card, .page-cockfighting__list-item, .page-cockfighting__step-item, .page-cockfighting__tip-item {
        padding: 20px;
    }
    .page-cockfighting__list-title, .page-cockfighting__step-title, .page-cockfighting__tip-title {
        font-size: 1.1rem;
    }
    .page-cockfighting__list-description, .page-cockfighting__step-description, .page-cockfighting__tip-description {
        font-size: 0.9rem;
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
    .page-cockfighting__faq-qtext { font-size: 1rem; }
    .page-cockfighting__faq-toggle { font-size: 20px; width: 24px; }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }
    .page-cockfighting__cta-bottom-section .page-cockfighting__container {
        padding: 40px 20px;
    }

    /* Ensure all images are responsive */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-cockfighting__hero-description {
        font-size: 1rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.6rem;
    }
    .page-cockfighting__cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    .page-cockfighting__list-title, .page-cockfighting__step-title, .page-cockfighting__tip-title {
        font-size: 1rem;
    }
    .page-cockfighting__list-description, .page-cockfighting__step-description, .page-cockfighting__tip-description {
        font-size: 0.85rem;
    }
    .page-cockfighting__step-item::before {
        left: -10px;
        top: 18px;
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    .page-cockfighting__list-item::before, .page-cockfighting__tip-item::before {
        top: 22px;
    }
    .page-cockfighting__list-title, .page-cockfighting__step-title, .page-cockfighting__tip-title,
    .page-cockfighting__list-description, .page-cockfighting__step-description, .page-cockfighting__tip-description {
        padding-left: 25px;
    }
    .page-cockfighting__faq-qtext { font-size: 0.95rem; }
}