.page-cockfighting {
    background-color: var(--Deep-Navy);
    color: var(--Text-Main);
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--Primary-Color) 0%, var(--Deep-Navy) 100%);
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-visual {
    width: 100%;
    margin-bottom: 20px;
}

.page-cockfighting__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
}

.page-cockfighting__hero-title {
    color: var(--Gold);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* Using clamp for responsive font size, min: 2.2rem, preferred: 5vw, max: 3.5rem */
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-cockfighting__hero-description {
    color: var(--Text-Secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-cockfighting__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--Button-Color);
    color: var(--Text-Main);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__hero-cta-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

/* General Section Styles */
.page-cockfighting__section-title {
    color: var(--Text-Main);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--Gold);
    border-radius: 2px;
}

.page-cockfighting__section-text {
    color: var(--Text-Secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Introduction Section */
.page-cockfighting__introduction-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__features-section,
.page-cockfighting__why-choose-us-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 60px 0;
}

.page-cockfighting__introduction-section .page-cockfighting__container,
.page-cockfighting__how-to-play-section .page-cockfighting__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

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

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

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

/* How to Play Section */
.page-cockfighting__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    gap: 30px;
    width: 100%;
}

.page-cockfighting__step-item {
    background-color: var(--Card-B-G);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--Border-Color);
}

.page-cockfighting__step-title {
    color: var(--Gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-cockfighting__step-description {
    color: var(--Text-Secondary);
    line-height: 1.6;
}

.page-cockfighting__step-description a {
    color: var(--Glow);
    text-decoration: none;
    font-weight: 500;
}

.page-cockfighting__step-description a:hover {
    text-decoration: underline;
}

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

.page-cockfighting__feature-card {
    background-color: var(--Card-B-G);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--Border-Color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images are not too wide */
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    color: var(--Gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-cockfighting__feature-description {
    color: var(--Text-Secondary);
    line-height: 1.6;
}

/* Why Choose Us Section */
.page-cockfighting__reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__reason-card {
    background-color: var(--Card-B-G);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--Border-Color);
}

.page-cockfighting__reason-title {
    color: var(--Glow);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-cockfighting__reason-description {
    color: var(--Text-Secondary);
    line-height: 1.6;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-cockfighting__faq-item {
    background-color: var(--Card-B-G);
    border: 1px solid var(--Border-Color);
    border-radius: 10px;
    overflow: hidden;
}

.page-cockfighting__faq-question {
    color: var(--Text-Main);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: #1a3a6a;
}

.page-cockfighting__faq-question::marker {
    content: ''; /* Hide default marker */
}

.page-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-cockfighting__faq-answer {
    color: var(--Text-Secondary);
    padding: 0 25px 20px;
    line-height: 1.6;
    border-top: 1px solid var(--Divider);
    margin-top: -1px; /* Overlap border for clean look */
}

/* CTA Section */
.page-cockfighting__cta-section {
    background: linear-gradient(90deg, var(--Primary-Color) 0%, var(--Secondary-Color) 100%);
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
}

.page-cockfighting__cta-content {
    max-width: 800px;
}

.page-cockfighting__section-title--cta {
    color: var(--Text-Main);
    margin-bottom: 20px;
}

.page-cockfighting__section-title--cta::after {
    background-color: var(--Gold);
}

.page-cockfighting__section-text--cta {
    color: var(--Text-Main);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 10px;
    background: var(--Button-Color);
    color: var(--Text-Main);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-button:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    transform: translateY(-3px);
}

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

    .page-cockfighting__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

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

    .page-cockfighting__introduction-section .page-cockfighting__container,
    .page-cockfighting__how-to-play-section .page-cockfighting__container {
        flex-direction: column;
    }

    .page-cockfighting__image {
        order: -1; /* Image appears above text on mobile */
        margin-bottom: 20px;
        margin-top: 0;
    }

    .page-cockfighting__steps-list,
    .page-cockfighting__features-grid,
    .page-cockfighting__reasons-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__feature-icon {
        max-width: 100%;
    }

    .page-cockfighting__feature-card,
    .page-cockfighting__reason-card,
    .page-cockfighting__step-item {
        padding: 20px;
    }

    .page-cockfighting__faq-question,
    .page-cockfighting__faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-cockfighting__faq-question::after {
        right: 20px;
    }

    .page-cockfighting__cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 15px;
    }
    .page-cockfighting__hero-section {
        padding-bottom: 20px;
    }
    .page-cockfighting__hero-content {
        padding: 0 15px;
    }
    .page-cockfighting__hero-visual img {
        max-width: 100%;
        height: auto;
    }
    .page-cockfighting__image {
        max-width: 100%;
        height: auto;
    }
    .page-cockfighting__feature-icon {
        max-width: 100%;
        height: auto;
    }
    .page-cockfighting__cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    .page-cockfighting__section-title {
        font-size: 1.8rem;
    }
    .page-cockfighting__hero-description, .page-cockfighting__section-text, .page-cockfighting__faq-answer {
        font-size: 0.95rem;
    }
    .page-cockfighting__step-title, .page-cockfighting__feature-title, .page-cockfighting__reason-title, .page-cockfighting__faq-question {
        font-size: 1.15rem;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-visual img {
        aspect-ratio: 16/9;
    }
    .page-cockfighting__hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    .page-cockfighting__section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .page-cockfighting__introduction-section, .page-cockfighting__how-to-play-section, .page-cockfighting__features-section, .page-cockfighting__why-choose-us-section, .page-cockfighting__faq-section, .page-cockfighting__cta-section {
        padding: 40px 0;
    }
    .page-cockfighting__hero-cta-button, .page-cockfighting__cta-button {
        width: 100%;
        max-width: 300px;
    }
    .page-cockfighting__hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .page-cockfighting__hero-title {
        font-size: 1.5rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.4rem;
    }
    .page-cockfighting__hero-description, .page-cockfighting__section-text, .page-cockfighting__faq-answer {
        font-size: 0.9rem;
    }
    .page-cockfighting__step-title, .page-cockfighting__feature-title, .page-cockfighting__reason-title, .page-cockfighting__faq-question {
        font-size: 1.1rem;
    }
    .page-cockfighting__hero-cta-button, .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}