/* style/cockfighting-betting-live-streams.css */
.page-cockfighting-betting-live-streams {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for general content */
}

.page-cockfighting-betting-live-streams__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.page-cockfighting-betting-live-streams__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,blue_gold_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-cockfighting-betting-live-streams__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffc107; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-live-streams__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting-betting-live-streams__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-cockfighting-betting-live-streams__btn--primary {
    background-color: #ffc107; /* Secondary color for primary action */
    color: #0056b3; /* Darker blue for contrast on gold */
    border: 2px solid #ffc107;
}

.page-cockfighting-betting-live-streams__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting-betting-live-streams__btn--secondary:hover {
    background-color: #ffc107;
    color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-live-streams__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
}

.page-cockfighting-betting-live-streams__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-live-streams__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-cockfighting-betting-live-streams__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary blue for section titles */
    margin-bottom: 30px;
    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: #ffc107; /* Gold accent */
    border-radius: 2px;
}

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

.page-cockfighting-betting-live-streams__section--features {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.page-cockfighting-betting-live-streams__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-cockfighting-betting-live-streams__feature-item {
    background-color: #f0f8ff; /* Light blue background for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting-betting-live-streams__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-cockfighting-betting-live-streams__feature-heading {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-cockfighting-betting-live-streams__feature-description {
    color: #666;
    font-size: 0.95em;
}

.page-cockfighting-betting-live-streams__section--guide {
    background-color: #f0f8ff;
    border-radius: 15px;
    padding: 60px 20px;
}

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

.page-cockfighting-betting-live-streams__step-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    text-align: left;
    position: relative;
}

.page-cockfighting-betting-live-streams__step-item::before {
    content: attr(data-step-number);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-live-streams__step-item:nth-child(1)::before { content: '1'; }
.page-cockfighting-betting-live-streams__step-item:nth-child(2)::before { content: '2'; }
.page-cockfighting-betting-live-streams__step-item:nth-child(3)::before { content: '3'; }

.page-cockfighting-betting-live-streams__step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.page-cockfighting-betting-live-streams__step-heading {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-cockfighting-betting-live-streams__step-description {
    color: #666;
}

.page-cockfighting-betting-live-streams__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting-betting-live-streams__link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.page-cockfighting-betting-live-streams__cta-bottom {
    margin-top: 50px;
}

.page-cockfighting-betting-live-streams__section--events {
    background-color: #f8f9fa;
}

.page-cockfighting-betting-live-streams__event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting-betting-live-streams__event-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-cockfighting-betting-live-streams__event-card:hover {
    transform: translateY(-7px);
}

.page-cockfighting-betting-live-streams__event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-cockfighting-betting-live-streams__event-title {
    font-size: 1.6em;
    color: #007bff;
    padding: 20px 20px 10px;
}

.page-cockfighting-betting-live-streams__event-text {
    color: #666;
    padding: 0 20px 20px;
    font-size: 0.95em;
}

.page-cockfighting-betting-live-streams__section--app-promo {
    background: linear-gradient(90deg, #007bff, #0056b3); /* Blue gradient background */
    color: #ffffff;
    padding: 80px 20px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: left;
}

.page-cockfighting-betting-live-streams__app-content {
    max-width: 550px;
    margin-right: 30px;
}

.page-cockfighting-betting-live-streams__app-image-wrapper {
    flex-shrink: 0;
}

.page-cockfighting-betting-live-streams__app-image {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-live-streams__app-benefits {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    margin-bottom: 30px;
}

.page-cockfighting-betting-live-streams__app-benefits li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.page-cockfighting-betting-live-streams__icon-check {
    color: #ffc107; /* Gold checkmark */
    margin-right: 10px;
    font-size: 1.3em;
}

.page-cockfighting-betting-live-streams__icon-check::before {
    content: '✔';
}

.page-cockfighting-betting-live-streams__section--responsible-gambling {
    background-color: #fff3cd; /* Light gold/yellow background */
    border-left: 5px solid #ffc107;
    text-align: left;
    padding: 40px 30px;
    border-radius: 8px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.page-cockfighting-betting-live-streams__section--responsible-gambling .page-cockfighting-betting-live-streams__section-title {
    color: #b38705; /* Darker gold for contrast */
    text-align: left;
}

.page-cockfighting-betting-live-streams__section--responsible-gambling .page-cockfighting-betting-live-streams__section-title::after {
    left: 0;
    transform: translateX(0);
    background-color: #b38705;
}

.page-cockfighting-betting-live-streams__responsible-list {
    list-style: disc;
    padding-left: 25px;
    color: #666;
}

.page-cockfighting-betting-live-streams__responsible-list li {
    margin-bottom: 8px;
}

.page-cockfighting-betting-live-streams__section--faq {
    background-color: #f8f9fa;
}

.page-cockfighting-betting-live-streams__faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-cockfighting-betting-live-streams__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-cockfighting-betting-live-streams__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-cockfighting-betting-live-streams__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-cockfighting-betting-live-streams__faq-item.active .page-cockfighting-betting-live-streams__faq-question::after {
    transform: rotate(45deg);
}

.page-cockfighting-betting-live-streams__faq-answer {
    color: #555;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-cockfighting-betting-live-streams__faq-item.active .page-cockfighting-betting-live-streams__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-cockfighting-betting-live-streams__cta-final {
    background: linear-gradient(135deg, #0056b3, #007bff); /* Darker blue to primary blue */
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: 60px;
}

.page-cockfighting-betting-live-streams__cta-title {
    font-size: 2.8em;
    color: #ffc107; /* Gold for CTA title */
    margin-bottom: 20px;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-betting-live-streams__hero {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-cockfighting-betting-live-streams__hero-content {
        margin-right: 0;
    }

    .page-cockfighting-betting-live-streams__app-promo {
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting-betting-live-streams__app-content {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .page-cockfighting-betting-live-streams__app-image-wrapper {
        margin-top: 30px;
    }

    .page-cockfighting-betting-live-streams__app-image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-live-streams__hero-title {
        font-size: 2.5em;
    }

    .page-cockfighting-betting-live-streams__hero-description {
        font-size: 1.1em;
    }

    .page-cockfighting-betting-live-streams__section-title {
        font-size: 2em;
    }

    .page-cockfighting-betting-live-streams__feature-item,
    .page-cockfighting-betting-live-streams__step-item,
    .page-cockfighting-betting-live-streams__event-card {
        padding: 25px;
    }

    .page-cockfighting-betting-live-streams__cta-title {
        font-size: 2.2em;
    }

    .page-cockfighting-betting-live-streams__cta-description {
        font-size: 1em;
    }
}

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

    .page-cockfighting-betting-live-streams__hero-description {
        font-size: 1em;
    }

    .page-cockfighting-betting-live-streams__hero-actions,
    .page-cockfighting-betting-live-streams__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting-betting-live-streams__btn {
        width: 100%;
        padding: 12px 20px;
    }

    .page-cockfighting-betting-live-streams__section-title {
        font-size: 1.8em;
    }
}