:root {
    --primary-color: #E44D26;
    --secondary-color: #FFB800;
    --dark-text: #333333;
    --light-text: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
}

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

.page-cockfighting-live-events__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cockfighting-live-events__section {
    padding: 60px 0;
    text-align: center;
}

.page-cockfighting-live-events__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting-live-events__section-title--light {
    color: var(--light-text);
}

.page-cockfighting-live-events__text-block {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-text);
}

.page-cockfighting-live-events__text-block--light {
    color: var(--light-text);
}

.page-cockfighting-live-events__card {
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-text);
    border: 1px solid var(--border-color);
}

.page-cockfighting-live-events__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting-live-events__card--light {
    background: var(--light-text);
    color: var(--dark-text);
}

.page-cockfighting-live-events__card--transparent {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

.page-cockfighting-live-events__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting-live-events__card-title--light {
    color: var(--light-text);
}

.page-cockfighting-live-events__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-cockfighting-live-events__btn-primary:hover {
    background: #c23e1f;
    border-color: #c23e1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting-live-events__btn-secondary:hover {
    background: #e6a700;
    border-color: #e6a700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-live-events__cta-center {
    margin-top: 40px;
}

.page-cockfighting-live-events__dark-section {
    background: var(--primary-color);
    color: var(--light-text);
}

.page-cockfighting-live-events__light-bg {
    background: var(--background-light);
    color: var(--dark-text);
}

.page-cockfighting-live-events img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-cockfighting-live-events__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.page-cockfighting-live-events__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-cockfighting-live-events__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-cockfighting-live-events__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-live-events__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-cockfighting-live-events__main-title {
    font-size: 48px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-live-events__description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting-live-events__introduction .page-cockfighting-live-events__image-wrapper {
    margin-top: 30px;
}
.page-cockfighting-live-events__introduction .page-cockfighting-live-events__image-wrapper img {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-cockfighting-live-events__how-to-join {
    background: var(--primary-color);
    color: var(--light-text);
}

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

.page-cockfighting-live-events__step-item {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-cockfighting-live-events__step-item .page-cockfighting-live-events__btn-primary,
.page-cockfighting-live-events__step-item .page-cockfighting-live-events__btn-secondary {
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
}

.page-cockfighting-live-events__step-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}
.page-cockfighting-live-events__step-item p {
    color: var(--dark-text);
    flex-grow: 1;
}

.page-cockfighting-live-events__betting-types .page-cockfighting-live-events__card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

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

.page-cockfighting-live-events__schedule {
    background-color: var(--background-light);
}

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

.page-cockfighting-live-events__list-item {
    background: var(--light-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.page-cockfighting-live-events__list-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting-live-events__schedule .page-cockfighting-live-events__image-wrapper {
    margin-top: 50px;
}
.page-cockfighting-live-events__schedule .page-cockfighting-live-events__image-wrapper img {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.page-cockfighting-live-events__tips-strategies {
    background-color: #f0f0f0;
}

.page-cockfighting-live-events__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-live-events__security {
    background: var(--primary-color);
    color: var(--light-text);
}

.page-cockfighting-live-events__grid-3-cols--light-text .page-cockfighting-live-events__card-title {
    color: var(--light-text);
}

.page-cockfighting-live-events__security .page-cockfighting-live-events__card img {
    
    
    object-fit: contain;
    margin: 0 auto 15px auto;
}

.page-cockfighting-live-events__faq {
    background-color: var(--background-light);
}

.page-cockfighting-live-events__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-cockfighting-live-events__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting-live-events__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: var(--light-text);
    color: var(--dark-text);
}

.page-cockfighting-live-events__faq-item.active .page-cockfighting-live-events__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #fdfdfd;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid var(--border-color);
}

.page-cockfighting-live-events__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--dark-text);
}

.page-cockfighting-live-events__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-cockfighting-live-events__faq-question:active {
    background: #eeeeee;
}

.page-cockfighting-live-events__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--dark-text);
}

.page-cockfighting-live-events__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(var(--primary-color), 0.1);
    border-radius: 50%;
}

.page-cockfighting-live-events__faq-item.active .page-cockfighting-live-events__faq-toggle {
    color: var(--light-text);
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.page-cockfighting-live-events__cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--light-text);
}

.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__section-title {
    color: var(--light-text);
    font-size: 40px;
}

.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__text-block {
    color: rgba(255, 255, 255, 0.9);
}

.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__cta-button {
    border: 2px solid var(--light-text);
}

.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__btn-primary {
    background: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}
.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__btn-primary:hover {
    background: var(--primary-color);
    color: var(--light-text);
    border-color: var(--light-text);
}

.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__btn-secondary {
    background: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}
.page-cockfighting-live-events__cta-final .page-cockfighting-live-events__btn-secondary:hover {
    background: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}

@media (max-width: 1024px) {
    .page-cockfighting-live-events__main-title {
        font-size: 40px;
    }
    .page-cockfighting-live-events__section-title {
        font-size: 30px;
    }
    .page-cockfighting-live-events__description,
    .page-cockfighting-live-events__text-block {
        font-size: 16px;
    }
    .page-cockfighting-live-events__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-cockfighting-live-events__grid-2-cols,
    .page-cockfighting-live-events__grid-3-cols,
    .page-cockfighting-live-events__steps-grid,
    .page-cockfighting-live-events__feature-list {
        gap: 20px;
    }
    .page-cockfighting-live-events__card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live-events__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-cockfighting-live-events__main-title {
        font-size: 32px;
    }
    .page-cockfighting-live-events__section-title {
        font-size: 26px;
    }
    .page-cockfighting-live-events__description,
    .page-cockfighting-live-events__text-block,
    .page-cockfighting-live-events p,
    .page-cockfighting-live-events li {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-cockfighting-live-events__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting-live-events__cta-button,
    .page-cockfighting-live-events__btn-primary,
    .page-cockfighting-live-events__btn-secondary,
    .page-cockfighting-live-events a[class*="button"],
    .page-cockfighting-live-events a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-cockfighting-live-events__cta-buttons,
    .page-cockfighting-live-events__button-group,
    .page-cockfighting-live-events__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-cockfighting-live-events__section {
        padding: 40px 0;
    }

    .page-cockfighting-live-events img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
    }

    .page-cockfighting-live-events__section,
    .page-cockfighting-live-events__card,
    .page-cockfighting-live-events__container,
    .page-cockfighting-live-events__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-cockfighting-live-events__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-cockfighting-live-events__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-cockfighting-live-events__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-cockfighting-live-events__faq-answer {
        padding: 0 15px;
    }
    
    .page-cockfighting-live-events__faq-item.active .page-cockfighting-live-events__faq-answer {
        padding: 15px !important;
    }
}