/* style/cockfighting-how-to-analyze-cockfighting-strength.css */
.page-cockfighting-how-to-analyze-cockfighting-strength {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A1A2E; /* Dark blue/near black background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-section {
    background: linear-gradient(135deg, #FFD700, #DC143C); /* Gold to Crimson gradient */
    padding: 80px 0;
    text-align: center;
    color: #1A1A2E; /* Dark text on bright background */
    position: relative;
    overflow: hidden;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/subtle-pattern.png') repeat; /* Placeholder for a subtle pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A2E;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Darker gray for better contrast on gradient */
    position: relative;
    z-index: 1;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-subtitle a {
    color: #1A1A2E;
    font-weight: bold;
    text-decoration: underline;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__content-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #DC143C; /* Crimson underline */
    padding-bottom: 15px;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__sub-section-title {
    font-size: 1.8em;
    color: #DC143C; /* Crimson for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__content-section p {
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.1em;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__content-section p a {
    color: #FFD700; /* Gold for links in content */
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__content-section p a:hover {
    text-decoration: underline;
    color: #DC143C;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__list,
.page-cockfighting-how-to-analyze-cockfighting-strength__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__ordered-list {
    list-style-type: decimal;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__list li,
.page-cockfighting-how-to-analyze-cockfighting-strength__ordered-list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 25px auto;
    display: block; /* Center images */
}

.page-cockfighting-how-to-analyze-cockfighting-strength__call-to-action {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD700;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__button {
    display: inline-block;
    background-color: #DC143C; /* Crimson button */
    color: #FFFFFF; /* White text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.page-cockfighting-how-to-analyze-cockfighting-strength__button:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #1A1A2E; /* Dark text on gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-cockfighting-how-to-analyze-cockfighting-strength__hero-title {
        font-size: 2.5em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__hero-subtitle {
        font-size: 1.1em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__section-title {
        font-size: 2em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__sub-section-title {
        font-size: 1.5em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__content-section p {
        font-size: 1em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-how-to-analyze-cockfighting-strength__hero-title {
        font-size: 2em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__hero-subtitle {
        font-size: 0.9em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__sub-section-title {
        font-size: 1.3em;
    }

    .page-cockfighting-how-to-analyze-cockfighting-strength__hero-image {
        max-width: 95%;
    }
}