:root {
    --color-primary: #113B7A;
    --color-secondary: #1D5FD1;
    --color-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --color-card-bg: #10233F;
    --color-text-main: #F3F8FF;
    --color-text-secondary: #AFC4E8;
    --color-border: #244D84;
    --color-glow: #4FA8FF;
    --color-gold: #F2C14E;
    --color-divider: #1B3357;
    --color-deep-navy: #08162B;
}

.page-cockfighting {
    background-color: var(--color-deep-navy);
    color: var(--color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    background-color: var(--color-deep-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-main);
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For 1920x1080 */
    max-width: 100%; /* Ensure responsiveness */
}

.page-cockfighting__hero-content {
    padding: 40px 15px;
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.page-cockfighting__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.page-cockfighting__cta-button {
    display: inline-block;
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-cockfighting__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    text-align: justify;
}

.page-cockfighting__introduction-section, 
.page-cockfighting__how-to-bet-section, 
.page-cockfighting__features-section, 
.page-cockfighting__tips-section, 
.page-cockfighting__cta-bottom-section, 
.page-cockfighting__faq-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-divider);
}

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

.page-cockfighting__content-image--right {
    float: right;
    margin-left: 30px;
    max-width: 45%;
}

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

.page-cockfighting__step-card {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

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

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

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

.page-cockfighting__cta-button--secondary {
    background: var(--color-secondary);
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__feature-list, .page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-cockfighting__feature-item, .page-cockfighting__tip-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__feature-heading, .page-cockfighting__tip-heading {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-cockfighting__feature-description, .page-cockfighting__tip-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.page-cockfighting__cta-bottom-section {
    text-align: center;
    padding: 80px 0;
    background: var(--color-primary);
}

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

.page-cockfighting__cta-bottom-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--color-gold);
    margin-bottom: 20px;
}

.page-cockfighting__cta-bottom-description {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 40px;
}

.page-cockfighting__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-cockfighting__faq-item {
    background-color: var(--color-card-bg);
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.page-cockfighting__faq-answer {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    display: none; /* Initially hidden */
    padding-top: 10px;
    border-top: 1px solid var(--color-divider);
    margin-top: 10px;
}

.page-cockfighting__faq-question.active + .page-cockfighting__faq-answer {
    display: block;
}

@media (max-width: 849px) {
    .page-cockfighting__hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    }
    .page-cockfighting__content-image--right {
        float: none;
        margin: 30px auto;
        max-width: 100%;
    }
    .page-cockfighting__steps, .page-cockfighting__feature-list, .page-cockfighting__tips-list {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__hero-description, .page-cockfighting__paragraph, .page-cockfighting__cta-bottom-description {
        font-size: 1rem;
    }
    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-cockfighting__feature-heading, .page-cockfighting__tip-heading, .page-cockfighting__step-title, .page-cockfighting__faq-question {
        font-size: 1.15rem;
    }
    .page-cockfighting__feature-description, .page-cockfighting__tip-description, .page-cockfighting__step-description, .page-cockfighting__faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-section, .page-cockfighting__introduction-section, .page-cockfighting__how-to-bet-section, .page-cockfighting__features-section, .page-cockfighting__tips-section, .page-cockfighting__cta-bottom-section, .page-cockfighting__faq-section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        padding-top: 40px;
        margin-bottom: 30px;
    }
    .page-cockfighting__hero-content {
        padding: 30px 10px;
    }
    .page-cockfighting__hero-title {
        font-size: clamp(1.1rem, 7vw, 2rem);
    }
    .page-cockfighting__cta-bottom-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-cockfighting__container {
        padding: 0 10px;
    }
    /* Ensure content images are fully responsive on mobile */
    .page-cockfighting__introduction-section img, 
    .page-cockfighting__tips-section img {
        max-width: 100%; 
        height: auto; 
        display: block;
        min-width: 200px;
        min-height: 200px;
    }
    .page-cockfighting__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}