.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #100224; /* Deep purple-black background */
    line-height: 1.6;
}

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

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 20px;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-cockfighting__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.page-cockfighting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-cockfighting__btn--primary {
    background: linear-gradient(to right, #ff9500, #ff5e3a); /* Orange-red gradient CTA */
    color: #FFFFFF;
}

.page-cockfighting__btn--primary:hover {
    background: linear-gradient(to left, #ff9500, #ff5e3a);
    transform: translateY(-2px);
}

.page-cockfighting__btn--secondary {
    background-color: #83a1f2; /* Blue pill button */
    color: #FFFFFF;
}

.page-cockfighting__btn--secondary:hover {
    background-color: #688cec;
    transform: translateY(-2px);
}

.page-cockfighting__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* HERO Section */
.page-cockfighting__hero-section {
    background-color: #100224;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-cockfighting__hero-visual {
    width: 100%;
    max-width: 1920px;
}

.page-cockfighting__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5;
    border-radius: 0;
    margin: 0;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__hero-content {
    padding: 40px 20px;
    max-width: 900px;
}

.page-cockfighting__main-title {
    font-size: clamp(2.2rem, 5vw, 3rem); /* Responsive H1 font size */
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-cockfighting__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

/* Introduction Section */
.page-cockfighting__introduction-section {
    padding: 60px 0;
    background-color: #1a0333; /* Slightly lighter dark background */
}

/* How to Play Section */
.page-cockfighting__how-to-play-section {
    padding: 60px 0;
    background-color: #100224;
}

.page-cockfighting__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.page-cockfighting__content-grid .page-cockfighting__text-content {
    flex: 1;
}

.page-cockfighting__content-grid .page-cockfighting__image-wrapper {
    flex: 1;
    min-width: 200px;
}

.page-cockfighting__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-cockfighting__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.page-cockfighting__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Betting Options Section */
.page-cockfighting__betting-options-section {
    padding: 60px 0;
    background-color: #1a0333;
    text-align: center;
}

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

.page-cockfighting__card {
    background-color: #26A9E0; /* Primary color for cards */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFFFFF;
    text-align: left;
    min-width: 200px;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-cockfighting__card-description {
    font-size: 1rem;
    color: #EEEEEE;
}

/* Tips Section */
.page-cockfighting__tips-section {
    padding: 60px 0;
    background-color: #100224;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us-section {
    padding: 60px 0;
    background-color: #1a0333;
    text-align: center;
}

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

.page-cockfighting__feature-card {
    background-color: #26A9E0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFFFFF;
    min-width: 200px;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__feature-card img {
    
    
    margin-bottom: 20px;
    min-width: 200px; /* Overriding to ensure min size */
    min-height: 200px; /* Overriding to ensure min size */
}

.page-cockfighting__feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-cockfighting__feature-description {
    font-size: 0.95rem;
    color: #EEEEEE;
}

/* Related Games Section */
.page-cockfighting__related-games-section {
    padding: 60px 0;
    background-color: #100224;
    text-align: center;
}

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

.page-cockfighting__game-card {
    background-color: #26A9E0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFFFFF;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.page-cockfighting__game-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__game-card img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__game-title {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px;
    color: #FFFFFF;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 60px 0;
    background-color: #1a0333;
}

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

.page-cockfighting__faq-item {
    background-color: #26A9E0; /* Primary color for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-cockfighting__faq-answer {
    font-size: 1.05rem;
    color: #EEEEEE;
    display: none;
    padding-top: 10px;
}

.page-cockfighting__faq-answer a {
    color: #ff9500;
    text-decoration: none;
}

.page-cockfighting__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 849px) {
    .page-cockfighting__hero-visual img {
        aspect-ratio: 4/3;
    }

    .page-cockfighting__content-grid {
        flex-direction: column;
    }

    .page-cockfighting__content-grid .page-cockfighting__text-content,
    .page-cockfighting__content-grid .page-cockfighting__image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-cockfighting__image-wrapper img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-visual img,
    .page-cockfighting__introduction-section img,
    .page-cockfighting__how-to-play-section img,
    .page-cockfighting__betting-options-section img,
    .page-cockfighting__tips-section img,
    .page-cockfighting__why-choose-us-section img,
    .page-cockfighting__related-games-section img,
    .page-cockfighting__game-card img,
    .page-cockfighting__card img,
    .page-cockfighting__feature-card img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-cockfighting__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__betting-cards,
    .page-cockfighting__features-grid,
    .page-cockfighting__game-grid {
        grid-template-columns: 1fr; /* Stack cards on small screens */
    }
}

@media (max-width: 549px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

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

    .page-cockfighting__btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Ensure color contrast for text on primary color background */
.page-cockfighting__card,
.page-cockfighting__feature-card,
.page-cockfighting__game-card,
.page-cockfighting__faq-item {
    color: #FFFFFF; /* Text color on #26A9E0 background */
}

.page-cockfighting__card-title,
.page-cockfighting__feature-title,
.page-cockfighting__game-title,
.page-cockfighting__faq-question {
    color: #FFFFFF; /* Text color on #26A9E0 background */
}

.page-cockfighting__card-description,
.page-cockfighting__feature-description,
.page-cockfighting__faq-answer {
    color: #EEEEEE; /* Slightly lighter text for readability */
}

/* Specific color rules */
.page-cockfighting__btn--primary {
    background: linear-gradient(to right, #ff9500, #ff5e3a);
}

.page-cockfighting__btn--secondary {
    background-color: #83a1f2;
}

.page-cockfighting__faq-answer a {
    color: #ff9500; /* Link color within FAQ answer */
}