.page-cockfighting {
    background-color: var(--background-color, #08160F);
    color: var(--text-main-color, #F2FFF6);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    padding-top: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 20px;
}

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

.page-cockfighting__hero-content {
    max-width: 900px;
    padding: 0 15px;
    z-index: 1;
    color: var(--text-main-color, #F2FFF6);
}

.page-cockfighting__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--gold-color, #F2C14E);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-cockfighting__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    margin-bottom: 30px;
    color: var(--text-secondary-color, #A7D9B8);
}

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

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    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: #ffffff;
    border: none;
}

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

.page-cockfighting__btn-secondary {
    background: var(--deep-green-color, #0A4B2C);
    color: var(--text-main-color, #F2FFF6);
    border: 2px solid var(--border-color, #2E7A4E);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--border-color, #2E7A4E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--gold-color, #F2C14E);
    text-align: center;
    margin: 60px 0 30px;
    font-weight: bold;
}

.page-cockfighting__text-block {
    font-size: 1.1em;
    color: var(--text-secondary-color, #A7D9B8);
    text-align: justify;
    margin-bottom: 20px;
}

.page-cockfighting__about-section,
.page-cockfighting__game-types,
.page-cockfighting__advantages-section,
.page-cockfighting__registration-guide,
.page-cockfighting__betting-tips,
.page-cockfighting__promotions,
.page-cockfighting__faq-section,
.page-cockfighting__contact-cta {
    padding: 40px 0;
}

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

.page-cockfighting__card {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--divider-color, #1E3A2A);
    color: var(--text-main-color, #F2FFF6);
}

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

.page-cockfighting__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-cockfighting__card-title {
    font-size: 1.5em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 10px;
}

.page-cockfighting__card-description {
    font-size: 1em;
    color: var(--text-secondary-color, #A7D9B8);
}

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

.page-cockfighting__feature-item,
.page-cockfighting__step-item,
.page-cockfighting__tip-item {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color, #11A84E);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__feature-title,
.page-cockfighting__step-title,
.page-cockfighting__tip-title {
    font-size: 1.4em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 10px;
}

.page-cockfighting__feature-item p,
.page-cockfighting__step-item p,
.page-cockfighting__tip-item p {
    color: var(--text-secondary-color, #A7D9B8);
    font-size: 1em;
}

.page-cockfighting__guide-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promotion-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__inline-link {
    color: var(--primary-color, #11A84E);
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__inline-link:hover {
    text-decoration: underline;
    color: var(--secondary-color, #22C768);
}

.page-cockfighting__faq-list {
    margin-top: 30px;
}

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

.page-cockfighting__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--gold-color, #F2C14E);
    list-style: none;
}

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

.page-cockfighting__faq-question {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
    padding: 0 25px 18px;
    font-size: 1em;
    color: var(--text-secondary-color, #A7D9B8);
}

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

@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 4vw, 3em);
    }
    .page-cockfighting__hero-description {
        font-size: clamp(0.9em, 1.5vw, 1.1em);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.6em, 3vw, 2.5em);
    }
    .page-cockfighting__card-title {
        font-size: 1.3em;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__tip-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 10px;
        padding-top: 10px !important;
    }

    .page-cockfighting__hero-content {
        padding: 0 10px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }

    .page-cockfighting__hero-description {
        font-size: clamp(0.9em, 2.5vw, 1em);
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
        overflow: hidden;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin: 40px 0 20px;
    }

    .page-cockfighting__text-block {
        font-size: 0.95em;
        padding: 0 10px;
    }

    .page-cockfighting__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-cockfighting__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__card {
        padding: 20px;
    }

    .page-cockfighting__card-image {
        height: 200px;
    }

    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__tip-item {
        padding: 15px 20px;
        margin-bottom: 10px;
    }

    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__tip-title {
        font-size: 1.1em;
    }

    .page-cockfighting__guide-image,
    .page-cockfighting__promotion-banner {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0 0px;
    }

    .page-cockfighting__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1em;
    }

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

    .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 {
      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: 10px !important;
    }
}