/* style/cockfighting-betting-live-streams.css */
.page-cockfighting-betting-live-streams {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1A2B; /* A slightly lighter dark background than primary for content sections */
    line-height: 1.6;
}

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

.page-cockfighting-betting-live-streams__hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2B 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-betting-live-streams__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting-betting-live-streams__hero-title {
    font-size: 3.5em;
    color: #F0B90B; /* Auxiliary color for highlight */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-live-streams__hero-description {
    font-size: 1.3em;
    color: #D3D3D3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-betting-live-streams__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-cockfighting-betting-live-streams__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    overflow: hidden;
}

.page-cockfighting-betting-live-streams__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

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

.page-cockfighting-betting-live-streams__btn--primary {
    background-color: #F0B90B; /* Auxiliary color */
    color: #1A2B4C; /* Primary color for text on auxiliary background */
}

.page-cockfighting-betting-live-streams__btn--primary:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-cockfighting-betting-live-streams__btn--secondary {
    background-color: transparent;
    color: #F0B90B;
    border: 2px solid #F0B90B;
}

.page-cockfighting-betting-live-streams__btn--secondary:hover {
    background-color: rgba(240, 185, 11, 0.1);
    transform: translateY(-3px);
}

.page-cockfighting-betting-live-streams__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-cockfighting-betting-live-streams__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-cockfighting-betting-live-streams__section-title {
    font-size: 2.5em;
    color: #F0B90B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting-betting-live-streams__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F0B90B;
    border-radius: 2px;
}

.page-cockfighting-betting-live-streams__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #D3D3D3;
}

.page-cockfighting-betting-live-streams__introduction-section,
.page-cockfighting-betting-live-streams__how-to-join-section,
.page-cockfighting-betting-live-streams__why-choose-us-section,
.page-cockfighting-betting-live-streams__responsible-gambling-section,
.page-cockfighting-betting-live-streams__faq-section,
.page-cockfighting-betting-live-streams__cta-section {
    padding: 60px 0;
    background-color: #12213A; /* Slightly different dark background for section separation */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-cockfighting-betting-live-streams__introduction-section {
    background-color: #0F1A2B;
}

.page-cockfighting-betting-live-streams__how-to-join-section {
    background-color: #1A2B4C;
}

.page-cockfighting-betting-live-streams__why-choose-us-section {
    background-color: #0F1A2B;
}

.page-cockfighting-betting-live-streams__responsible-gambling-section {
    background-color: #1A2B4C;
}

.page-cockfighting-betting-live-streams__cta-section {
    background: linear-gradient(90deg, #1A2B4C, #2E4A78);
    text-align: center;
    padding: 80px 0;
}

.page-cockfighting-betting-live-streams__features-grid,
.page-cockfighting-betting-live-streams__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-betting-live-streams__feature-item,
.page-cockfighting-betting-live-streams__benefit-item {
    background-color: #1A2B4C; /* Primary color for card backgrounds */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-live-streams__feature-item:hover,
.page-cockfighting-betting-live-streams__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-live-streams__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(240, 185, 11, 0.7));
}

.page-cockfighting-betting-live-streams__feature-title,
.page-cockfighting-betting-live-streams__benefit-title {
    font-size: 1.5em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-cockfighting-betting-live-streams__feature-description,
.page-cockfighting-betting-live-streams__benefit-description {
    font-size: 1em;
    color: #D3D3D3;
}

.page-cockfighting-betting-live-streams__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting-betting-live-streams__steps-list li {
    background-color: #0F1A2B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    counter-increment: step-counter;
    position: relative;
    padding-top: 60px;
}

.page-cockfighting-betting-live-streams__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #F0B90B;
    color: #1A2B4C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-live-streams__step-title {
    font-size: 1.3em;
    color: #F0B90B;
    margin-bottom: 10px;
    text-align: left;
}

.page-cockfighting-betting-live-streams__step-description {
    font-size: 1em;
    color: #D3D3D3;
    text-align: justify;
}

.page-cockfighting-betting-live-streams__process-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-live-streams__responsible-gambling-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-live-streams__faq-accordion {
    margin-top: 40px;
}

.page-cockfighting-betting-live-streams__faq-item {
    background-color: #1A2B4C;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-live-streams__faq-question {
    font-size: 1.2em;
    color: #F0B90B;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A2B4C;
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
    transition: background-color 0.3s ease;
}

.page-cockfighting-betting-live-streams__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-cockfighting-betting-live-streams__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #0F1A2B;
}

.page-cockfighting-betting-live-streams__faq-answer.open {
    max-height: 300px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-cockfighting-betting-live-streams__faq-answer p {
    margin: 0;
    color: #D3D3D3;
    text-align: justify;
}

.page-cockfighting-betting-live-streams__cta-title {
    font-size: 3em;
    color: #F0B90B;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-live-streams__cta-description {
    font-size: 1.2em;
    color: #D3D3D3;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-betting-live-streams__cta-section .page-cockfighting-betting-live-streams__hero-actions {
    gap: 30px;
}

.page-cockfighting-betting-live-streams .highlight-text {
    color: #F0B90B;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-betting-live-streams__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-betting-live-streams__section-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-live-streams__cta-title {
        font-size: 2.5em;
    }
    .page-cockfighting-betting-live-streams__features-grid,
    .page-cockfighting-betting-live-streams__benefits-grid,
    .page-cockfighting-betting-live-streams__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-live-streams__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-live-streams__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting-betting-live-streams__hero-actions {
        flex-direction: column;
    }
    .page-cockfighting-betting-live-streams__btn {
        width: 80%;
        margin: 0 auto 15px auto;
    }
    .page-cockfighting-betting-live-streams__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-live-streams__cta-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-live-streams__introduction-section,
    .page-cockfighting-betting-live-streams__how-to-join-section,
    .page-cockfighting-betting-live-streams__why-choose-us-section,
    .page-cockfighting-betting-live-streams__responsible-gambling-section,
    .page-cockfighting-betting-live-streams__faq-section,
    .page-cockfighting-betting-live-streams__cta-section {
        padding: 40px 0;
    }
    .page-cockfighting-betting-live-streams__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-cockfighting-betting-live-streams__faq-answer.open {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-live-streams__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-live-streams__hero-description {
        font-size: 1em;
    }
    .page-cockfighting-betting-live-streams__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-cockfighting-betting-live-streams__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-betting-live-streams__cta-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-live-streams__feature-item,
    .page-cockfighting-betting-live-streams__benefit-item,
    .page-cockfighting-betting-live-streams__steps-list li {
        padding: 20px;
    }
    .page-cockfighting-betting-live-streams__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        top: 15px;
        left: 15px;
    }
    .page-cockfighting-betting-live-streams__step-title {
        font-size: 1.2em;
    }
}