.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    background-color: var(--background);
}

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

.page-cockfighting__hero-content {
    position: relative;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-cockfighting__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__intro-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-cockfighting__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: var(--glow);
    border: 2px solid var(--glow);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--glow);
    color: var(--deep-green);
}

/* General Section Styling */
.page-cockfighting__section {
    padding: 60px 0;
    background-color: var(--background);
    color: var(--text-main);
}

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

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--glow);
    border-radius: 2px;
}

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

.page-cockfighting__highlight {
    color: var(--glow);
    font-weight: bold;
}

.page-cockfighting__link {
    color: var(--glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting__link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

.page-cockfighting__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Advantages Section */
.page-cockfighting__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-cockfighting__advantage-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__card-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Guide Section */
.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-cockfighting__guide-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__guide-step-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__guide-step-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bet Types Section */
.page-cockfighting__bet-type-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__bet-type-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__bet-type-heading {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: bold;
}

.page-cockfighting__bet-type-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tips Section */
.page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__tip-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__tip-heading {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: bold;
}

.page-cockfighting__tip-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 30px;
}

.page-cockfighting__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-qtext {
    flex-grow: 1;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    content: '−';
}

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-cockfighting__cta-buttons--bottom {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image {
        max-height: 500px;
    }
    .page-cockfighting__hero-content {
        margin-top: 30px;
    }
    .page-cockfighting__section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        margin-bottom: 30px;
    }
    .page-cockfighting__advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-image {
        max-height: 400px;
    }
    .page-cockfighting__hero-content {
        padding: 30px 15px;
        margin-top: 20px;
        transform: none;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-cockfighting__intro-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* All images responsive */
    .page-cockfighting img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    /* All video responsive (though no video is present in this HTML) */
    .page-cockfighting video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    /* Container padding for mobile */
    .page-cockfighting__section,
    .page-cockfighting__container,
    .page-cockfighting__hero-content,
    .page-cockfighting__cta-buttons,
    .page-cockfighting__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__section:nth-of-type(even) {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-cockfighting__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-cockfighting__faq-answer {
        padding: 0 20px 15px;
    }

    /* Ensure images in cards/lists also conform */
    .page-cockfighting__advantage-card img,
    .page-cockfighting__guide-item img,
    .page-cockfighting__bet-type-item img,
    .page-cockfighting__tip-item img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting__introduction-section {
        padding-top: 10px !important;
    }
}

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

/* Ensure all text elements use defined colors for contrast */
.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3, .page-cockfighting h4, .page-cockfighting h5, .page-cockfighting h6 {
    color: var(--text-main);
}
.page-cockfighting p, .page-cockfighting li, .page-cockfighting span {
    color: var(--text-secondary);
}
.page-cockfighting__main-title, .page-cockfighting__section-title, .page-cockfighting__card-title,
.page-cockfighting__guide-step-title, .page-cockfighting__bet-type-heading, .page-cockfighting__tip-heading,
.page-cockfighting__faq-item summary {
    color: var(--text-main);
}

/* Specific background colors for sections/cards to ensure contrast */
.page-cockfighting__hero-content,
.page-cockfighting__advantage-card,
.page-cockfighting__guide-item,
.page-cockfighting__bet-type-item,
.page-cockfighting__tip-item,
.page-cockfighting__faq-item {
    background-color: var(--card-bg);
}

/* Section background alternates */
.page-cockfighting__section:nth-of-type(odd) {
    background-color: var(--background);
}
.page-cockfighting__section:nth-of-type(even) {
    background-color: var(--deep-green);
}
.page-cockfighting__hero-section {
    background-color: var(--background);
}

/* Text colors for different backgrounds */
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__paragraph,
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__card-text,
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__guide-step-text,
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__bet-type-description,
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__tip-description,
.page-cockfighting__section:nth-of-type(even) .page-cockfighting__faq-answer-text {
    color: var(--text-secondary);
}

.page-cockfighting__section:nth-of-type(even) h2,
.page-cockfighting__section:nth-of-type(even) h3 {
    color: var(--text-main);
}

/* Adjust padding for the very first section if needed, depends on shared header offset */
.page-cockfighting__introduction-section {
    padding-top: 10px;
}