:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button: 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;
}

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

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

.page-cockfighting__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    line-height: 1.2;
}

.page-cockfighting__text-block {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-cockfighting a:hover {
    color: var(--gold);
}

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

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

.page-cockfighting__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cockfighting__main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1.1;
}

.page-cockfighting__lead-text {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

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

.page-cockfighting__btn-primary {
    background: var(--button);
    color: var(--text-main);
    border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.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);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-cockfighting__introduction-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__bet-types-section,
.page-cockfighting__tips-section,
.page-cockfighting__why-choose-ww8-section,
.page-cockfighting__video-section,
.page-cockfighting__responsible-gambling-section,
.page-cockfighting__faq-section,
.page-cockfighting__call-to-action-section {
    padding: 60px 0;
    box-sizing: border-box;
}

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

.page-cockfighting__light-bg {
    background-color: var(--background);
    color: var(--text-main);
}

.page-cockfighting__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    object-fit: cover;
    max-width: 1000px;
}

.page-cockfighting__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
}

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

.page-cockfighting__step-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.page-cockfighting__bet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__bet-item {
    background-color: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--divider);
}

.page-cockfighting__bet-title {
    font-size: 22px;
    color: var(--glow);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting__bet-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.page-cockfighting__tip-list,
.page-cockfighting__advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__tip-item,
.page-cockfighting__advantage-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
}

.page-cockfighting__tip-title,
.page-cockfighting__advantage-title {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting__tip-description,
.page-cockfighting__advantage-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.page-cockfighting__video-section {
    background-color: var(--background);
    text-align: center;
    padding-top: 10px;
}

.page-cockfighting__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--deep-green);
    border-radius: 12px;
    margin: 40px auto 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 1000px;
}

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

.page-cockfighting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    object-fit: cover;
}

.page-cockfighting__responsible-gambling-section {
    text-align: center;
    background-color: var(--card-bg);
}

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

.page-cockfighting__faq-item {
    background-color: var(--background);
    border: 1px solid var(--divider);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider);
}

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

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

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

.page-cockfighting__faq-item[open] > .page-cockfighting__faq-question .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}
.page-cockfighting__faq-item > summary {
    list-style: none;
}
.page-cockfighting__faq-item > summary::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-answer {
    padding: 20px;
    font-size: 16px;
    color: var(--text-secondary);
    background-color: var(--card-bg);
    border-top: none;
}
.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
    border-bottom: none;
}

.page-cockfighting__call-to-action-section {
    text-align: center;
    background-color: var(--deep-green);
    color: var(--text-main);
}
.page-cockfighting__call-to-action-section .page-cockfighting__section-title {
    color: var(--gold);
}
.page-cockfighting__call-to-action-section .page-cockfighting__text-block {
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .page-cockfighting__hero-section {
        padding-bottom: 40px;
    }
    .page-cockfighting__hero-image {
        max-height: 500px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }
    .page-cockfighting__lead-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-bottom: 30px;
    }
    .page-cockfighting__hero-image {
        max-height: 400px;
        margin-bottom: 20px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    .page-cockfighting__lead-text {
        font-size: 16px;
    }
    .page-cockfighting__section-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 20px;
    }
    .page-cockfighting__text-block {
        font-size: 16px;
    }
    .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;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-cockfighting__container,
    .page-cockfighting__hero-content,
    .page-cockfighting__video-section,
    .page-cockfighting__video-container,
    .page-cockfighting__video-wrapper,
    .page-cockfighting__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    .page-cockfighting__video-section {
        padding-top: 10px !important;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting__content-image {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .page-cockfighting__step-item,
    .page-cockfighting__bet-item,
    .page-cockfighting__tip-item,
    .page-cockfighting__advantage-item {
        padding: 20px;
    }

    .page-cockfighting__step-title,
    .page-cockfighting__bet-title,
    .page-cockfighting__tip-title,
    .page-cockfighting__advantage-title {
        font-size: 20px;
    }

    .page-cockfighting__faq-question {
        font-size: 16px;
        padding: 15px;
    }
    .page-cockfighting__faq-answer {
        font-size: 15px;
        padding: 15px;
    }
}