/* style/cockfighting-betting-history.css */

.page-cockfighting-betting-history {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #0F1D36; /* Darker background for content sections */
}

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

.page-cockfighting-betting-history__hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1D36 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-cockfighting-betting-history__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.page-cockfighting-betting-history__subtitle {
    font-size: 1.4em;
    color: #B0B0B0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-cockfighting-betting-history__cta-button {
    display: inline-block;
    background-color: #F0B90B; /* Auxiliary color for CTA */
    color: #1A2B4C; /* Dark text on auxiliary background */
    padding: 15px 30px;
    border-radius: 5px;
    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-cockfighting-betting-history__cta-button:hover {
    background-color: #FFD700; /* Slightly brighter gold on hover */
    transform: translateY(-3px);
}

.page-cockfighting-betting-history__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-cockfighting-betting-history__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-cockfighting-betting-history__section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Primary color for section background */
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.page-cockfighting-betting-history__section:nth-of-type(even) {
    background-color: #0F1D36; /* Alternating background for visual separation */
}

.page-cockfighting-betting-history__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Auxiliary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-cockfighting-betting-history__image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.page-cockfighting-betting-history__image-text-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-cockfighting-betting-history__image-text-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-history__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-cockfighting-betting-history__list li {
    background-color: rgba(240, 185, 11, 0.1);
    padding: 15px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #F0B90B;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-cockfighting-betting-history__list li strong {
    color: #F0B90B;
}

.page-cockfighting-betting-history__sub-section-title {
    font-size: 2em;
    color: #F0B90B;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-cockfighting-betting-history__cta-button--bottom {
    margin-top: 50px;
    text-align: center;
}

.page-cockfighting-betting-history__accordion {
    margin-top: 40px;
}

.page-cockfighting-betting-history__accordion-item {
    background-color: #0F1D36;
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-cockfighting-betting-history__accordion-header {
    background-color: #1A2B4C;
    color: #F0B90B;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-cockfighting-betting-history__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-cockfighting-betting-history__accordion-header:hover {
    background-color: #253D66;
}

.page-cockfighting-betting-history__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting-betting-history__accordion-content.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 15px 25px 25px;
}

.page-cockfighting-betting-history__accordion-content p {
    color: #B0B0B0;
    font-size: 1.05em;
}

.page-cockfighting-betting-history__link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-cockfighting-betting-history__related-link {
    background-color: #1A2B4C;
    border: 1px solid #F0B90B;
    color: #F0B90B;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting-betting-history__related-link:hover {
    background-color: #F0B90B;
    color: #1A2B4C;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting-betting-history__main-title {
        font-size: 2.8em;
    }

    .page-cockfighting-betting-history__subtitle {
        font-size: 1.2em;
    }

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

    .page-cockfighting-betting-history__image-text-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting-betting-history__image-text-grid--reverse {
        grid-template-columns: 1fr;
    }

    .page-cockfighting-betting-history__image-text-grid img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-history__hero-section {
        padding: 80px 15px;
    }

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

    .page-cockfighting-betting-history__subtitle {
        font-size: 1.1em;
    }

    .page-cockfighting-betting-history__section {
        padding: 40px 0;
    }

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

    p, .page-cockfighting-betting-history__list li {
        font-size: 1em;
    }

    .page-cockfighting-betting-history__image-text-grid {
        gap: 20px;
    }

    .page-cockfighting-betting-history__image-text-grid img {
        height: 250px;
    }

    .page-cockfighting-betting-history__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-cockfighting-betting-history__accordion-content {
        padding: 0 20px;
    }

    .page-cockfighting-betting-history__accordion-content.active {
        padding: 10px 20px 20px;
    }

    .page-cockfighting-betting-history__link-grid {
        grid-template-columns: 1fr;
    }
}

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

    .page-cockfighting-betting-history__subtitle {
        font-size: 0.95em;
    }

    .page-cockfighting-betting-history__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-cockfighting-betting-history__section-title {
        font-size: 1.5em;
    }
}