/* style/live-events-cockfighting-schedule.css */
.page-live-events-cockfighting-schedule {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

.page-live-events-cockfighting-schedule__hero {
    background: linear-gradient(135deg, #B80000 0%, #FFD700 100%); /* Deep Red to Gold */
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF; /* White text on dark background */
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-live-events-cockfighting-schedule__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    filter: grayscale(100%);
}

.page-live-events-cockfighting-schedule__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-live-events-cockfighting-schedule__hero-content {
    max-width: 900px;
    z-index: 2;
}

.page-live-events-cockfighting-schedule__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White on red/gold gradient */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-events-cockfighting-schedule__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.6;
}

.page-live-events-cockfighting-schedule__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #B80000; /* Deep Red text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live-events-cockfighting-schedule__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-live-events-cockfighting-schedule__section {
    padding: 60px 20px;
    text-align: center;
}

.page-live-events-cockfighting-schedule__section:nth-of-type(even) {
    background-color: #eeeeee;
}

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

.page-live-events-cockfighting-schedule__section-title {
    font-size: 2.5em;
    color: #B80000; /* Deep Red for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-live-events-cockfighting-schedule__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-live-events-cockfighting-schedule__section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.page-live-events-cockfighting-schedule__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.page-live-events-cockfighting-schedule__grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-live-events-cockfighting-schedule__grid-item:hover {
    transform: translateY(-10px);
}

.page-live-events-cockfighting-schedule__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-live-events-cockfighting-schedule__item-title {
    font-size: 1.5em;
    color: #B80000; /* Deep Red for sub-titles */
    margin-bottom: 15px;
}

.page-live-events-cockfighting-schedule__item-title + p {
    color: #666;
}

.page-live-events-cockfighting-schedule__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-live-events-cockfighting-schedule__steps li {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-live-events-cockfighting-schedule__steps li:last-child {
    margin-bottom: 0;
}

.page-live-events-cockfighting-schedule__step-title {
    font-size: 1.6em;
    color: #B80000;
    margin-bottom: 10px;
}

.page-live-events-cockfighting-schedule__step-title + p {
    color: #666;
    margin-bottom: 15px;
}

.page-live-events-cockfighting-schedule__inline-cta {
    background-color: #B80000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-live-events-cockfighting-schedule__inline-cta:hover {
    background-color: #a00000;
}

.page-live-events-cockfighting-schedule__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-live-events-cockfighting-schedule__tournament-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.page-live-events-cockfighting-schedule__tournament-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-live-events-cockfighting-schedule__tournament-card:hover {
    transform: translateY(-10px);
}

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

.page-live-events-cockfighting-schedule__card-title {
    font-size: 1.4em;
    color: #B80000;
    margin: 20px 20px 10px 20px;
}

.page-live-events-cockfighting-schedule__tournament-card p {
    font-size: 1em;
    color: #666;
    padding: 0 20px 20px 20px;
    margin-bottom: 0;
}

.page-live-events-cockfighting-schedule__betting-tips .page-live-events-cockfighting-schedule__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-live-events-cockfighting-schedule__betting-tips .page-live-events-cockfighting-schedule__tips-list li {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.page-live-events-cockfighting-schedule__tip-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-live-events-cockfighting-schedule__feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-live-events-cockfighting-schedule__feature-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-live-events-cockfighting-schedule__app-download {
    background-color: #B80000;
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-live-events-cockfighting-schedule__app-download .page-live-events-cockfighting-schedule__section-title,
.page-live-events-cockfighting-schedule__app-download p {
    color: #FFFFFF; /* White text on red background */
}

.page-live-events-cockfighting-schedule__app-download .page-live-events-cockfighting-schedule__section-title::after {
    background-color: #FFD700;
}

.page-live-events-cockfighting-schedule__app-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-live-events-cockfighting-schedule__app-qr {
    width: 150px;
    height: 150px;
    border: 5px solid #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-live-events-cockfighting-schedule__app-buttons .page-live-events-cockfighting-schedule__cta-button {
    background-color: #FFD700;
    color: #B80000;
}

.page-live-events-cockfighting-schedule__faq {
    background-color: #f8f8f8;
}

.page-live-events-cockfighting-schedule__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-events-cockfighting-schedule__faq-question {
    font-size: 1.3em;
    color: #B80000; /* Deep Red for questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-live-events-cockfighting-schedule__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-live-events-cockfighting-schedule__faq-item.active .page-live-events-cockfighting-schedule__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(45deg);
}

.page-live-events-cockfighting-schedule__faq-answer {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-live-events-cockfighting-schedule__faq-item.active .page-live-events-cockfighting-schedule__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-live-events-cockfighting-schedule__final-cta {
    background-color: #B80000;
    padding: 80px 20px;
    color: #FFFFFF;
}

.page-live-events-cockfighting-schedule__final-cta .page-live-events-cockfighting-schedule__section-title,
.page-live-events-cockfighting-schedule__final-cta p {
    color: #FFFFFF; /* White text on red background */
}

.page-live-events-cockfighting-schedule__final-cta .page-live-events-cockfighting-schedule__section-title::after {
    background-color: #FFD700;
}

.page-live-events-cockfighting-schedule__final-cta-content {
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-events-cockfighting-schedule__title {
        font-size: 2.8em;
    }
    .page-live-events-cockfighting-schedule__section-title {
        font-size: 2em;
    }
    .page-live-events-cockfighting-schedule__grid,
    .page-live-events-cockfighting-schedule__tournament-grid,
    .page-live-events-cockfighting-schedule__safety-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-live-events-cockfighting-schedule__hero {
        padding: 80px 15px;
    }
    .page-live-events-cockfighting-schedule__title {
        font-size: 2.2em;
    }
    .page-live-events-cockfighting-schedule__subtitle {
        font-size: 1.1em;
    }
    .page-live-events-cockfighting-schedule__section {
        padding: 40px 15px;
    }
    .page-live-events-cockfighting-schedule__section-title {
        font-size: 1.8em;
    }
    .page-live-events-cockfighting-schedule__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-events-cockfighting-schedule__app-cta {
        flex-direction: column;
        gap: 20px;
    }
    .page-live-events-cockfighting-schedule__app-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .page-live-events-cockfighting-schedule__app-buttons .page-live-events-cockfighting-schedule__cta-button {
        flex: 1 1 auto;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .page-live-events-cockfighting-schedule__title {
        font-size: 1.8em;
    }
    .page-live-events-cockfighting-schedule__section-title {
        font-size: 1.5em;
    }
    .page-live-events-cockfighting-schedule__grid,
    .page-live-events-cockfighting-schedule__tournament-grid,
    .page-live-events-cockfighting-schedule__safety-features {
        grid-template-columns: 1fr;
    }
    .page-live-events-cockfighting-schedule__steps li {
        padding: 20px;
    }
    .page-live-events-cockfighting-schedule__item-title,
    .page-live-events-cockfighting-schedule__step-title,
    .page-live-events-cockfighting-schedule__card-title,
    .page-live-events-cockfighting-schedule__faq-question {
        font-size: 1.2em;
    }
    .page-live-events-cockfighting-schedule__section p,
    .page-live-events-cockfighting-schedule__tournament-card p,
    .page-live-events-cockfighting-schedule__faq-answer {
        font-size: 0.95em;
    }
}