body {
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

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

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

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-cockfighting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-cockfighting__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary, #A7D9B8);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-cockfighting__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-button--secondary {
    background: var(--card-bg, #11271B);
    border: 2px solid var(--border-color, #2E7A4E);
    color: var(--text-main, #F2FFF6);
}

.page-cockfighting__cta-button--secondary:hover {
    background: var(--deep-green, #0A4B2C);
    border-color: var(--glow, #57E38D);
}

.page-cockfighting__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold, #F2C14E);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

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

.page-cockfighting__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    object-fit: cover;
    max-width: 100%;
}

.page-cockfighting__introduction-section,
.page-cockfighting__types-of-betting-section,
.page-cockfighting__safety-section,
.page-cockfighting__mobile-experience-section {
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-cockfighting__dark-bg {
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
}

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

.page-cockfighting__step-card,
.page-cockfighting__card,
.page-cockfighting__promo-card {
    background-color: var(--card-bg, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-main, #F2FFF6);
}

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

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

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

.page-cockfighting__card-description {
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    flex-grow: 1;
    text-align: justify;
}

.page-cockfighting__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.page-cockfighting__tips-list li,
.page-cockfighting__safety-features li {
    background-color: var(--deep-green, #0A4B2C);
    margin-bottom: 15px;
    padding: 18px 25px;
    border-radius: 8px;
    color: var(--text-main, #F2FFF6);
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: justify;
}

.page-cockfighting__list-strong {
    color: var(--gold, #F2C14E);
}

.page-cockfighting__button-group {
    margin-top: 40px;
    text-align: center;
}

.page-cockfighting__faq-section {
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
}

details.page-cockfighting__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color, #2E7A4E);
    overflow: hidden;
    background: var(--deep-green, #0A4B2C);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main, #F2FFF6);
}

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

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
    background: var(--divider, #1E3A2A);
}

.page-cockfighting__faq-qtext {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main, #F2FFF6);
}

.page-cockfighting__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold, #F2C14E);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    line-height: 1;
}

details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 25px 25px;
    background: var(--card-bg, #11271B);
    border-radius: 0 0 10px 10px;
    color: var(--text-secondary, #A7D9B8);
    font-size: 1rem;
    text-align: justify;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-cockfighting__hero-image img,
    .page-cockfighting__image-content,
    .page-cockfighting__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-cockfighting__container,
    .page-cockfighting__hero-container,
    .page-cockfighting__hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-cockfighting__cta-button,
    .page-cockfighting__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 16px;
    }

    .page-cockfighting__main-title {
        font-size: 2rem;
    }

    .page-cockfighting__hero-description {
        font-size: 1rem;
    }

    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-cockfighting__text-block,
    .page-cockfighting__card-description,
    .page-cockfighting__tips-list li,
    .page-cockfighting__safety-features li {
        font-size: 0.95rem;
    }

    .page-cockfighting__card-title {
        font-size: 1.4rem;
    }

    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px;
    }

    .page-cockfighting__faq-qtext {
        font-size: 1rem;
    }

    .page-cockfighting__faq-toggle {
        font-size: 24px;
        width: 24px;
    }

    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 15px 15px;
    }
    
    .page-cockfighting__faq-item {
        border-radius: 8px;
    }
}