/* style/resources-live-cockfighting-streaming.css */

/* Variables for colors */
:root {
    --page-primary-color: #FFD700; /* Gold */
    --page-secondary-color: #8B0000; /* Dark Red */
    --page-text-dark: #333333; /* For light backgrounds */
    --page-text-light: #FFFFFF; /* For dark backgrounds */
    --page-background-alt: #FFF8E1; /* Light cream for contrast sections */
    --page-button-hover: #b39700;
    --page-button-secondary-hover: #ae4d4d;
}

.page-resources-live-cockfighting-streaming {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
}

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

.page-resources-live-cockfighting-streaming__hero {
    background: linear-gradient(135deg, var(--page-primary-color), var(--page-secondary-color));
    color: var(--page-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-live-cockfighting-streaming__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px; /* Adjust size as needed */
    height: auto;
    opacity: 0.3;
    z-index: 0;
    display: none; /* Hide by default for better mobile experience, show on larger screens */
}

@media (min-width: 768px) {
    .page-resources-live-cockfighting-streaming__hero-image {
        display: block;
        width: 400px;
    }
}

.page-resources-live-cockfighting-streaming__hero .page-resources-live-cockfighting-streaming__container {
    position: relative;
    z-index: 1;
}

.page-resources-live-cockfighting-streaming__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-light);
}

.page-resources-live-cockfighting-streaming__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-live-cockfighting-streaming__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-live-cockfighting-streaming__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-live-cockfighting-streaming__button--primary {
    background-color: var(--page-primary-color);
    color: var(--page-text-dark);
    border: 2px solid var(--page-primary-color);
}

.page-resources-live-cockfighting-streaming__button--primary:hover {
    background-color: var(--page-button-hover);
    border-color: var(--page-button-hover);
    transform: translateY(-2px);
}

.page-resources-live-cockfighting-streaming__button--secondary {
    background-color: transparent;
    color: var(--page-text-light);
    border: 2px solid var(--page-text-light);
}

.page-resources-live-cockfighting-streaming__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-resources-live-cockfighting-streaming__button--inline {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--page-secondary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-live-cockfighting-streaming__button--inline:hover {
    background-color: var(--page-button-secondary-hover);
    border-color: var(--page-button-secondary-hover);
}

.page-resources-live-cockfighting-streaming__button--download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--page-secondary-color);
    color: var(--page-text-light);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-live-cockfighting-streaming__button--download:hover {
    background-color: var(--page-button-secondary-hover);
    border-color: var(--page-button-secondary-hover);
}

.page-resources-live-cockfighting-streaming__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-live-cockfighting-streaming__section {
    padding: 60px 0;
    text-align: left;
}

.page-resources-live-cockfighting-streaming__section--alt-bg {
    background-color: var(--page-background-alt);
}

.page-resources-live-cockfighting-streaming__section-title {
    font-size: 2.5em;
    color: var(--page-secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.page-resources-live-cockfighting-streaming__sub-title {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-live-cockfighting-streaming__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-dark);
}

.page-resources-live-cockfighting-streaming__list,
.page-resources-live-cockfighting-streaming__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--page-text-dark);
}

.page-resources-live-cockfighting-streaming__ordered-list {
    list-style-type: decimal;
}

.page-resources-live-cockfighting-streaming__list li,
.page-resources-live-cockfighting-streaming__ordered-list li {
    margin-bottom: 10px;
}

.page-resources-live-cockfighting-streaming__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-live-cockfighting-streaming__image--left {
    float: left;
    margin-right: 30px;
    width: 40%;
    min-width: 250px;
}

.page-resources-live-cockfighting-streaming__image--right {
    float: right;
    margin-left: 30px;
    width: 40%;
    min-width: 250px;
}

.page-resources-live-cockfighting-streaming__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    min-width: 300px;
}

.page-resources-live-cockfighting-streaming__section:after {
    content: "";
    display: table;
    clear: both;
}

.page-resources-live-cockfighting-streaming__app-download {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-live-cockfighting-streaming__app-download .page-resources-live-cockfighting-streaming__button {
    min-width: 220px;
}

.page-resources-live-cockfighting-streaming__faq {
    padding-bottom: 80px;
}

.page-resources-live-cockfighting-streaming__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-live-cockfighting-streaming__faq-question {
    font-size: 1.3em;
    color: var(--page-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-live-cockfighting-streaming__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-live-cockfighting-streaming__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-live-cockfighting-streaming__faq-answer {
    font-size: 1.1em;
    color: var(--page-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-resources-live-cockfighting-streaming__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
}

.page-resources-live-cockfighting-streaming__call-to-action {
    background: linear-gradient(90deg, var(--page-secondary-color), var(--page-primary-color));
    color: var(--page-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-live-cockfighting-streaming__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-resources-live-cockfighting-streaming__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-live-cockfighting-streaming .highlight {
    color: var(--page-primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-live-cockfighting-streaming__title {
        font-size: 2.5em;
    }
    .page-resources-live-cockfighting-streaming__section-title {
        font-size: 2em;
    }
    .page-resources-live-cockfighting-streaming__sub-title {
        font-size: 1.5em;
    }
    .page-resources-live-cockfighting-streaming__image--left,
    .page-resources-live-cockfighting-streaming__image--right,
    .page-resources-live-cockfighting-streaming__image--center {
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-resources-live-cockfighting-streaming__hero {
        padding: 60px 0;
    }
    .page-resources-live-cockfighting-streaming__title {
        font-size: 2em;
    }
    .page-resources-live-cockfighting-streaming__subtitle {
        font-size: 1em;
    }
    .page-resources-live-cockfighting-streaming__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-live-cockfighting-streaming__button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-resources-live-cockfighting-streaming__section {
        padding: 40px 0;
    }
    .page-resources-live-cockfighting-streaming__section-title {
        font-size: 1.8em;
    }
    .page-resources-live-cockfighting-streaming__text,
    .page-resources-live-cockfighting-streaming__list li,
    .page-resources-live-cockfighting-streaming__ordered-list li,
    .page-resources-live-cockfighting-streaming__faq-question,
    .page-resources-live-cockfighting-streaming__faq-answer {
        font-size: 0.95em;
    }
    .page-resources-live-cockfighting-streaming__cta-title {
        font-size: 2em;
    }
    .page-resources-live-cockfighting-streaming__cta-text {
        font-size: 1em;
    }
    .page-resources-live-cockfighting-streaming__app-download {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-live-cockfighting-streaming__title {
        font-size: 1.8em;
    }
    .page-resources-live-cockfighting-streaming__section-title {
        font-size: 1.5em;
    }
    .page-resources-live-cockfighting-streaming__sub-title {
        font-size: 1.3em;
    }
    .page-resources-live-cockfighting-streaming__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-live-cockfighting-streaming__button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}