.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main on body background #0A0A0A */
    background-color: #0A0A0A; /* Body background */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

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

.page-cockfighting__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD36B; /* Auxiliary color for titles */
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

/* HERO Section */
.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 as per rule */
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    overflow: hidden;
}

.page-cockfighting__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%; /* Ensure width 100% for flex item */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-cockfighting__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-cockfighting__hero-content h1 {
    font-size: clamp(28px, 4vw, 48px); /* Using clamp for H1 */
    font-weight: 900;
    line-height: 1.2;
    color: #FFD36B;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Dark text for button */
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-cockfighting__cta-button:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-cockfighting__intro-section,
.page-cockfighting__advantages-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 80px 0;
    border-top: 1px solid #3A2A12; /* Border color */
}

.page-cockfighting__content-block {
    text-align: justify;
    font-size: 17px;
    line-height: 1.8;
}

.page-cockfighting__content-block p {
    margin-bottom: 20px;
    color: #FFF6D6;
}

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

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

.page-cockfighting__card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-cockfighting__card-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-cockfighting__card p {
    font-size: 16px;
    color: #FFF6D6;
}

/* How-to-Play Steps */
.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: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-icon {
    width: 60px;
    height: 60px;
    background: #F2C14E; /* Main color */
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-cockfighting__step-item p {
    font-size: 16px;
    color: #FFF6D6;
}

.page-cockfighting__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__promo-button,
.page-cockfighting__faq-app-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111;
}

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

.page-cockfighting__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B;
    border: 2px solid #F2C14E; /* Main color */
}

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

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

.page-cockfighting__promo-card {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-cockfighting__promo-card img {
    width: 100%;
    height: 200px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #3A2A12;
}

.page-cockfighting__promo-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__promo-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-cockfighting__promo-card p {
    font-size: 16px;
    color: #FFF6D6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-cockfighting__promo-button {
    background: #F2C14E; /* Main color */
    color: #111111;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    margin-top: auto;
}

.page-cockfighting__promo-button:hover {
    background: #FFD36B;
    transform: translateY(-2px);
}

.page-cockfighting__promo-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
    color: #FFF6D6;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
}

details.page-cockfighting__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border color */
    overflow: hidden;
    background: #111111; /* Card BG */
    box-shadow: 0 4px 15px 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: #FFD36B;
    font-weight: bold;
}
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: rgba(242, 193, 78, 0.1); /* Light hover effect */
}
.page-cockfighting__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #FFD36B;
}
.page-cockfighting__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #F2C14E; /* Main color */
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}
details.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 25px 25px;
    background: #0A0A0A; /* Background color */
    border-top: 1px solid #3A2A12; /* Border color */
    border-radius: 0 0 10px 10px;
    color: #FFF6D6;
    font-size: 16px;
    line-height: 1.7;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 10px;
}

.page-cockfighting__faq-app-button {
    background: #F2C14E; /* Main color */
    color: #111111;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: inline-block;
}

.page-cockfighting__faq-app-button:hover {
    background: #FFD36B;
    transform: translateY(-2px);
}

/* Text alignment for CTA section */
.page-cockfighting__text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-content h1 {
        font-size: clamp(26px, 5vw, 42px);
    }
    .page-cockfighting__hero-content p {
        font-size: clamp(15px, 2.5vw, 18px);
    }
    .page-cockfighting__section-title {
        font-size: 30px;
    }
    .page-cockfighting__grid,
    .page-cockfighting__steps-grid,
    .page-cockfighting__promos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-image img {
        border-radius: 8px;
    }
    .page-cockfighting__hero-content h1 {
        font-size: clamp(24px, 6vw, 36px);
    }
    .page-cockfighting__hero-content p {
        font-size: clamp(14px, 3vw, 16px);
    }
    .page-cockfighting__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-cockfighting__intro-section,
    .page-cockfighting__advantages-section,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-section {
        padding: 50px 0;
    }
    .page-cockfighting__container {
        padding: 0 15px;
    }
    .page-cockfighting__content-block {
        font-size: 15px;
    }
    .page-cockfighting__card,
    .page-cockfighting__step-item,
    .page-cockfighting__promo-card {
        padding: 20px;
    }
    .page-cockfighting__card img,
    .page-cockfighting__content-block img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__promo-card img {
        
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px;
    }
    .page-cockfighting__faq-qtext {
        font-size: 16px;
    }
    .page-cockfighting__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }
    .page-cockfighting__faq-app-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-content h1 {
        font-size: clamp(22px, 8vw, 32px);
    }
    .page-cockfighting__hero-content p {
        font-size: clamp(13px, 4vw, 15px);
    }
    .page-cockfighting__section-title {
        font-size: 24px;
    }
    .page-cockfighting__cta-button {
        font-size: 15px;
    }
    .page-cockfighting__card-title,
    .page-cockfighting__promo-title {
        font-size: 20px;
    }
    .page-cockfighting__step-title {
        font-size: 18px;
    }
    .page-cockfighting__promo-card img {
        
    }
}