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

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

.page-cockfighting__section-spacing {
    padding: 60px 0;
}

.page-cockfighting__image-spacing {
    margin-top: 30px;
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-cockfighting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block; /* Ensure it's not inline */
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 15px;
    margin: 50px 20px;
    box-shadow: 0 0 30px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-cockfighting__main-title {
    color: var(--gold-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure H1 responsive */
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.page-cockfighting__subtitle {
    color: var(--text-main-color);
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-cockfighting__cta-buttons--center {
    margin-top: 40px;
    justify-content: center;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--deep-green-color);
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
}

.page-cockfighting__video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-cockfighting__video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%; /* Ensure desktop width is 100% */
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.page-cockfighting__video-description {
    color: var(--text-secondary-color);
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 800px;
}

.page-cockfighting__content-area,
.page-cockfighting__features-section,
.page-cockfighting__getting-started,
.page-cockfighting__betting-types,
.page-cockfighting__tips-strategies,
.page-cockfighting__promotions,
.page-cockfighting__faq-section,
.page-cockfighting__cta-final {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.page-cockfighting__section-title {
    color: var(--gold-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.page-cockfighting__sub-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.page-cockfighting__text-block p {
    color: var(--text-main-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-cockfighting__text-block strong {
    color: var(--gold-color);
}

.page-cockfighting__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-cockfighting__card-title {
    color: var(--gold-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.page-cockfighting__ordered-list,
.page-cockfighting__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-cockfighting__ordered-list li,
.page-cockfighting__unordered-list li {
    margin-bottom: 10px;
}

.page-cockfighting__unordered-list li strong {
    color: var(--gold-color);
}

.page-cockfighting__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-cockfighting__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main-color);
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-cockfighting__faq-question:hover {
    background-color: rgba(10, 75, 44, 0.8);
}

.page-cockfighting__faq-qtext {
    flex-grow: 1;
    color: var(--gold-color);
}

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

.page-cockfighting__faq-answer {
    padding: 20px 25px;
    font-size: 1.05rem;
    color: var(--text-secondary-color);
    line-height: 1.7;
    background-color: var(--card-bg-color);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
    border-bottom: none;
}

.page-cockfighting__text-block a {
    color: var(--gold-color);
    text-decoration: none;
}

.page-cockfighting__text-block a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: 2.8rem;
    }
    .page-cockfighting__section-title {
        font-size: 2rem;
    }
    .page-cockfighting__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__main-title {
        font-size: 2.2rem;
    }
    .page-cockfighting__subtitle {
        font-size: 1rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.8rem;
    }
    .page-cockfighting__sub-title {
        font-size: 1.4rem;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-cockfighting__hero-content {
        padding: 60px 15px;
        margin: 30px 15px;
    }
    .page-cockfighting__content-area,
    .page-cockfighting__features-section,
    .page-cockfighting__getting-started,
    .page-cockfighting__betting-types,
    .page-cockfighting__tips-strategies,
    .page-cockfighting__promotions,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-final {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__section-spacing {
        padding: 40px 0;
    }
    .page-cockfighting__image-responsive {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__video-section {
        padding-top: 10px !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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Ensure all images in content area are at least 200px if possible, but responsive */
    .page-cockfighting img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-cockfighting__content-area img,
    .page-cockfighting__features-section img,
    .page-cockfighting__getting-started img,
    .page-cockfighting__betting-types img,
    .page-cockfighting__tips-strategies img,
    .page-cockfighting__promotions img {
      min-width: 200px; /* Enforce minimum size for content images */
      min-height: 200px;
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: 1.8rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.5rem;
    }
    .page-cockfighting__sub-title {
        font-size: 1.2rem;
    }
    .page-cockfighting__hero-content {
        padding: 40px 10px;
        margin: 20px 10px;
    }
    .page-cockfighting__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-cockfighting__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}