.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light background */
    background-color: #f8f8f8; /* Light background */
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* For fixed header */
    padding-bottom: 80px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-cockfighting__hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 57, 0.7); /* Overlay for text readability */
    z-index: 1;
}

.page-cockfighting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E0B400;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background-color: #E0B400;
    color: #0A2239;
    border: 2px solid #E0B400;
}

.page-cockfighting__btn-primary:hover {
    background-color: #f0c530;
    color: #0A2239;
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #E0B400;
    color: #0A2239;
}

/* General Section Styles */
.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__dark-bg {
    background-color: #0A2239;
    color: #ffffff;
}

.page-cockfighting__dark-bg .page-cockfighting__section-title {
    color: #E0B400;
}

.page-cockfighting__dark-bg .page-cockfighting__section-description,
.page-cockfighting__dark-bg .page-cockfighting__card-text {
    color: #f0f0f0;
}

.page-cockfighting__light-bg {
    background-color: #f8f8f8;
    color: #333333;
}

/* Video Section */
.page-cockfighting__intro-video-section {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__video-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.page-cockfighting__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-cockfighting__video-caption {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

/* Features Section */
.page-cockfighting__features-section {
    padding: 80px 0;
}

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

.page-cockfighting__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-10px);
}

.page-cockfighting__feature-card .page-cockfighting__card-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__feature-card .page-cockfighting__card-text {
    color: #f0f0f0;
}

/* How to Play Section */
.page-cockfighting__how-to-play-section {
    padding: 80px 0;
    text-align: center;
}

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

.page-cockfighting__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-cockfighting__step-number {
    font-size: 2.5em;
    color: #E0B400;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #0A2239;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: #0A2239;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.page-cockfighting__step-text {
    color: #555555;
    text-align: center;
}

.page-cockfighting__cta-center {
    margin-top: 60px;
    text-align: center;
}

.page-cockfighting__how-to-play-image {
    margin-top: 60px;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Strategies Section */
.page-cockfighting__strategies-section {
    padding: 80px 0;
}

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

.page-cockfighting__strategy-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__strategy-card .page-cockfighting__card-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__strategy-card .page-cockfighting__card-text {
    color: #f0f0f0;
}

/* Live Section */
.page-cockfighting__live-section {
    padding: 80px 0;
}

.page-cockfighting__live-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__live-text {
    flex: 1;
}

.page-cockfighting__live-text .page-cockfighting__sub-title {
    font-size: 1.8em;
    color: #0A2239;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__live-text .page-cockfighting__text-block {
    margin-bottom: 20px;
    color: #555555;
}

.page-cockfighting__live-image {
    flex: 1;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Promotions Section */
.page-cockfighting__promotions-section {
    padding: 80px 0;
}

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

.page-cockfighting__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__promo-card .page-cockfighting__card-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__promo-card .page-cockfighting__card-text {
    color: #f0f0f0;
}

.page-cockfighting__promotions-image {
    margin-top: 60px;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 80px 0;
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-cockfighting__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #0A2239;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #e0e0e0;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #E0B400;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
}

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

.page-cockfighting__faq-image {
    margin-top: 40px;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Call to Action Bottom Section */
.page-cockfighting__cta-bottom-section {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__cta-bottom-title {
    font-size: 2.5em;
    color: #E0B400;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__cta-bottom-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: 3em;
    }

    .page-cockfighting__section-title {
        font-size: 2em;
    }

    .page-cockfighting__live-content {
        flex-direction: column;
    }

    .page-cockfighting__live-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-cockfighting__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
    }

    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }

    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-cockfighting__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting__section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-cockfighting__container {
        padding: 0 15px;
    }

    /* Images, Videos, Buttons must be responsive */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting video,
    .page-cockfighting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting__video-section,
    .page-cockfighting__video-container,
    .page-cockfighting__video-wrapper,
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__live-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-bottom-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-cockfighting__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top for video */
    }

    .page-cockfighting__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-cockfighting__faq-answer {
        padding: 0 15px;
    }

    .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
        padding: 15px !important;
    }

    .page-cockfighting__cta-bottom-title {
        font-size: 1.8em;
    }

    .page-cockfighting__cta-bottom-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting__step-number {
        font-size: 2em;
        width: 50px;
        height: 50px;
    }
    .page-cockfighting__step-title {
        font-size: 1.2em;
    }
    .page-cockfighting__feature-card .page-cockfighting__card-title,
    .page-cockfighting__strategy-card .page-cockfighting__card-title,
    .page-cockfighting__promo-card .page-cockfighting__card-title {
        font-size: 1.3em;
    }
}