/* style/cockfighting-live-stream-how-to-watch.css */

.page-cockfighting-live-stream-how-to-watch {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for main text on dark background */
    background-color: #0A2342; /* Primary dark blue background */
}

.page-cockfighting-live-stream-how-to-watch__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-cockfighting-live-stream-how-to-watch__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-cockfighting-live-stream-how-to-watch__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-cockfighting-live-stream-how-to-watch__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #D3D3D3;
}

.page-cockfighting-live-stream-how-to-watch__btn {
    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.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-cockfighting-live-stream-how-to-watch__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-cockfighting-live-stream-how-to-watch__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-cockfighting-live-stream-how-to-watch__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-cockfighting-live-stream-how-to-watch__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

.page-cockfighting-live-stream-how-to-watch__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.page-cockfighting-live-stream-how-to-watch__subsection-title {
    font-size: 1.8em;
    color: #D3D3D3; /* Light grey for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-cockfighting-live-stream-how-to-watch__introduction,
.page-cockfighting-live-stream-how-to-watch__guide,
.page-cockfighting-live-stream-how-to-watch__benefits,
.page-cockfighting-live-stream-how-to-watch__beyond-free,
.page-cockfighting-live-stream-how-to-watch__tips,
.page-cockfighting-live-stream-how-to-watch__faq,
.page-cockfighting-live-stream-how-to-watch__cta-bottom {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-live-stream-how-to-watch__introduction p,
.page-cockfighting-live-stream-how-to-watch__guide p,
.page-cockfighting-live-stream-how-to-watch__benefits p,
.page-cockfighting-live-stream-how-to-watch__beyond-free p,
.page-cockfighting-live-stream-how-to-watch__tips p,
.page-cockfighting-live-stream-how-to-watch__faq p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-cockfighting-live-stream-how-to-watch__introduction a,
.page-cockfighting-live-stream-how-to-watch__guide a,
.page-cockfighting-live-stream-how-to-watch__faq a {
    color: #FFD700; /* Gold links */
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting-live-stream-how-to-watch__introduction a:hover,
.page-cockfighting-live-stream-how-to-watch__guide a:hover,
.page-cockfighting-live-stream-how-to-watch__faq a:hover {
    text-decoration: underline;
}

.page-cockfighting-live-stream-how-to-watch__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-cockfighting-live-stream-how-to-watch__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-cockfighting-live-stream-how-to-watch__list li strong {
    color: #FFD700;
}

.page-cockfighting-live-stream-how-to-watch__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-stream-how-to-watch__btn-group {
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting-live-stream-how-to-watch__faq-item {
    background-color: #1A3A60; /* Slightly lighter dark blue for FAQ items */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-stream-how-to-watch__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
}

.page-cockfighting-live-stream-how-to-watch__faq-answer {
    font-size: 1.05em;
    color: #D3D3D3;
}

.page-cockfighting-live-stream-how-to-watch__cta-bottom {
    text-align: center;
    padding: 80px 20px;
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-cockfighting-live-stream-how-to-watch__cta-bottom .page-cockfighting-live-stream-how-to-watch__section-title {
    color: #FFD700;
}

.page-cockfighting-live-stream-how-to-watch__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #D3D3D3;
}

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

    .page-cockfighting-live-stream-how-to-watch__hero-description {
        font-size: 1.1em;
    }

    .page-cockfighting-live-stream-how-to-watch__section-title {
        font-size: 2em;
    }

    .page-cockfighting-live-stream-how-to-watch__subsection-title {
        font-size: 1.5em;
    }

    .page-cockfighting-live-stream-how-to-watch__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-cockfighting-live-stream-how-to-watch__introduction p,
    .page-cockfighting-live-stream-how-to-watch__guide p,
    .page-cockfighting-live-stream-how-to-watch__benefits p,
    .page-cockfighting-live-stream-how-to-watch__beyond-free p,
    .page-cockfighting-live-stream-how-to-watch__tips p,
    .page-cockfighting-live-stream-how-to-watch__faq p,
    .page-cockfighting-live-stream-how-to-watch__list li {
        font-size: 1em;
    }

    .page-cockfighting-live-stream-how-to-watch__faq-question {
        font-size: 1.1em;
    }
}

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

    .page-cockfighting-live-stream-how-to-watch__hero-description {
        font-size: 0.9em;
    }

    .page-cockfighting-live-stream-how-to-watch__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting-live-stream-how-to-watch__subsection-title {
        font-size: 1.3em;
    }

    .page-cockfighting-live-stream-how-to-watch__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        display: block;
        margin: 10px auto;
    }
    .page-cockfighting-live-stream-how-to-watch__btn-group {
        flex-direction: column;
    }
}