/* style/resources-live-cockfighting-tips.css */
.page-resources-live-cockfighting-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for body text on dark background */
    background-color: #1A1A1A; /* Dark background */
}

.page-resources-live-cockfighting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-live-cockfighting-tips__hero {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%); /* Main color gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-resources-live-cockfighting-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-resources-live-cockfighting-tips__hero-title .highlight {
    color: #FFFFFF;
}

.page-resources-live-cockfighting-tips__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-resources-live-cockfighting-tips__content-section {
    padding: 60px 0;
}

.page-resources-live-cockfighting-tips__article {
    background-color: #222222; /* Slightly lighter dark background for article */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-live-cockfighting-tips__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for H2 headings */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #B22222;
    padding-bottom: 10px;
}

.page-resources-live-cockfighting-tips__sub-heading {
    font-size: 1.6em;
    color: #B22222; /* Main red for H3 headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-live-cockfighting-tips__article p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-live-cockfighting-tips__article p .keyword {
    font-weight: bold;
    color: #FFD700;
}

.page-resources-live-cockfighting-tips__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    color: #E0E0E0;
}

.page-resources-live-cockfighting-tips__article ul li {
    margin-bottom: 0.8em;
    font-size: 1.05em;
}

.page-resources-live-cockfighting-tips__article ul li strong {
    color: #FFD700;
}

.page-resources-live-cockfighting-tips__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-live-cockfighting-tips__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-resources-live-cockfighting-tips__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #B22222; /* Red text on gold */
    border: 2px solid #FFD700;
}

.page-resources-live-cockfighting-tips__btn--primary:hover {
    background-color: #FFE033;
    transform: translateY(-2px);
}

.page-resources-live-cockfighting-tips__btn--secondary {
    background-color: #B22222; /* Red button */
    color: #FFFFFF; /* White text on red */
    border: 2px solid #B22222;
}

.page-resources-live-cockfighting-tips__btn--secondary:hover {
    background-color: #8B0000;
    transform: translateY(-2px);
}

.page-resources-live-cockfighting-tips__cta-block {
    background-color: #1A1A1A; /* Darker background for CTA */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    border: 1px dashed #B22222;
}

.page-resources-live-cockfighting-tips__cta-block p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #F0F0F0;
}

.page-resources-live-cockfighting-tips__article a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-live-cockfighting-tips__article a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-live-cockfighting-tips__hero-title {
        font-size: 2.5em;
    }

    .page-resources-live-cockfighting-tips__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-live-cockfighting-tips__heading {
        font-size: 1.8em;
    }

    .page-resources-live-cockfighting-tips__sub-heading {
        font-size: 1.4em;
    }

    .page-resources-live-cockfighting-tips__article {
        padding: 25px;
    }

    .page-resources-live-cockfighting-tips__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-live-cockfighting-tips__hero-title {
        font-size: 2em;
    }

    .page-resources-live-cockfighting-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-live-cockfighting-tips__heading {
        font-size: 1.5em;
    }

    .page-resources-live-cockfighting-tips__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-live-cockfighting-tips__article {
        padding: 15px;
    }

    .page-resources-live-cockfighting-tips__article p,
    .page-resources-live-cockfighting-tips__article ul li {
        font-size: 0.95em;
    }

    .page-resources-live-cockfighting-tips__cta-block {
        padding: 20px;
    }
}