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

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --accent-color-register: #C30808;
    --accent-color-login: #C30808;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --button-text-color-register-login: #FFFF00;
    --card-bg: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
    --light-card-bg: #FFFFFF;
    --light-border-color: #e0e0e0;
}

.page-cockfighting-live-betting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    background-color: var(--neon-dark-bg); /* Inherited from shared.css */
}

/* Hero Section */
.page-cockfighting-live-betting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below sticky header */
    overflow: hidden;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-cockfighting-live-betting__hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
    display: block;
}

.page-cockfighting-live-betting__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.page-cockfighting-live-betting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting-live-betting__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Section Styling */
.page-cockfighting-live-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting-live-betting__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-cockfighting-live-betting__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-live-betting__content-text {
    font-size: 1.1em;
    margin-top: 30px;
    text-align: justify;
}

.page-cockfighting-live-betting__content-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Colors for sections */
.page-cockfighting-live-betting__dark-bg {
    background-color: var(--neon-dark-bg); /* Assuming this is dark from shared.css */
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__dark-bg .page-cockfighting-live-betting__section-title {
    color: var(--secondary-color);
}

.page-cockfighting-live-betting__dark-bg .page-cockfighting-live-betting__content-text a {
    color: var(--secondary-color);
}

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

.page-cockfighting-live-betting__light-bg .page-cockfighting-live-betting__section-title {
    color: var(--primary-color);
}

.page-cockfighting-live-betting__light-bg .page-cockfighting-live-betting__content-text a {
    color: var(--primary-color);
}

/* Buttons */
.page-cockfighting-live-betting__btn-primary,
.page-cockfighting-live-betting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-cockfighting-live-betting__btn-primary {
    background-color: var(--accent-color-register);
    color: var(--button-text-color-register-login);
}

.page-cockfighting-live-betting__btn-primary:hover {
    background-color: darken(var(--accent-color-register), 10%);
    transform: translateY(-2px);
}

.page-cockfighting-live-betting__btn-secondary {
    background-color: transparent;
    color: var(--accent-color-login);
    border: 2px solid var(--accent-color-login);
}

.page-cockfighting-live-betting__btn-secondary:hover {
    background-color: var(--accent-color-login);
    color: var(--text-color-dark-bg);
    transform: translateY(-2px);
}

/* Cards */
.page-cockfighting-live-betting__card {
    background-color: var(--light-card-bg);
    color: var(--text-color-light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* About Section */
.page-cockfighting-live-betting__about-section {
    padding: 80px 0;
}

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

.page-cockfighting-live-betting__feature-card {
    text-align: center;
}

.page-cockfighting-live-betting__feature-icon {
    width: 100%; /* Ensure images fill card width */
    height: auto;
    max-height: 200px; /* Adjust as needed */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-cockfighting-live-betting__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-cockfighting-live-betting__feature-description {
    font-size: 1em;
    color: var(--text-color-light-bg);
}

/* Betting Types Section */
.page-cockfighting-live-betting__betting-types-section {
    padding: 80px 0;
}

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

.page-cockfighting-live-betting__list-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__list-item-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-cockfighting-live-betting__list-item-description {
    font-size: 1em;
    color: var(--text-color-dark-bg);
}

/* Guide Section */
.page-cockfighting-live-betting__guide-section {
    padding: 80px 0;
}

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

.page-cockfighting-live-betting__guide-step {
    text-align: center;
}

.page-cockfighting-live-betting__guide-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-cockfighting-live-betting__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-cockfighting-live-betting__step-description {
    font-size: 1em;
    color: var(--text-color-light-bg);
    margin-bottom: 25px;
}

/* Schedule Section */
.page-cockfighting-live-betting__schedule-section {
    padding: 80px 0;
}

.page-cockfighting-live-betting__schedule-table {
    width: 100%;
    margin-top: 40px;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-cockfighting-live-betting__table-header,
.page-cockfighting-live-betting__table-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 2fr 1.5fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.page-cockfighting-live-betting__table-header {
    background-color: var(--primary-color);
    font-weight: bold;
    padding: 15px 20px;
    color: var(--secondary-color);
}

.page-cockfighting-live-betting__table-row {
    padding: 15px 20px;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__table-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-cockfighting-live-betting__table-row:last-child {
    border-bottom: none;
}

.page-cockfighting-live-betting__table-cell {
    display: flex;
    align-items: center;
    word-break: break-word;
}

.page-cockfighting-live-betting__status-live {
    color: #ff0000; /* Red for live */
    font-weight: bold;
}

.page-cockfighting-live-betting__status-upcoming {
    color: #00ff00; /* Green for upcoming */
}

/* Promotions Section */
.page-cockfighting-live-betting__promotions-section {
    padding: 80px 0;
}

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

.page-cockfighting-live-betting__promo-card {
    text-align: center;
}

.page-cockfighting-live-betting__promo-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-cockfighting-live-betting__promo-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-cockfighting-live-betting__promo-description {
    font-size: 1em;
    color: var(--text-color-light-bg);
    margin-bottom: 25px;
}

/* FAQ Section */
.page-cockfighting-live-betting__faq-section {
    padding: 80px 0;
}

.page-cockfighting-live-betting__faq-list {
    margin-top: 40px;
}

.page-cockfighting-live-betting__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    color: var(--secondary-color);
}

.page-cockfighting-live-betting__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-cockfighting-live-betting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-cockfighting-live-betting__faq-item.active .page-cockfighting-live-betting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting-live-betting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-color-dark-bg);
}

.page-cockfighting-live-betting__faq-item.active .page-cockfighting-live-betting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-cockfighting-live-betting__faq-answer p {
    margin-bottom: 15px;
    font-size: 1em;
}

.page-cockfighting-live-betting__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

    .page-cockfighting-live-betting__table-header,
    .page-cockfighting-live-betting__table-row {
        grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
    }

    .page-cockfighting-live-betting__table-cell:nth-child(4) { /* Hide Kèo Cược on smaller screens */
        display: none;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-live-betting__hero-section {
        min-height: 500px;
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

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

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

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

    .page-cockfighting-live-betting__btn-primary,
    .page-cockfighting-live-betting__btn-secondary,
    .page-cockfighting-live-betting a[class*="button"],
    .page-cockfighting-live-betting a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-cockfighting-live-betting__section-description,
    .page-cockfighting-live-betting__content-text {
        font-size: 0.95em;
    }

    .page-cockfighting-live-betting__features-grid,
    .page-cockfighting-live-betting__list,
    .page-cockfighting-live-betting__guide-steps,
    .page-cockfighting-live-betting__promo-grid {
        grid-template-columns: 1fr;
    }

    /* Images responsive */
    .page-cockfighting-live-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Image/Video containers responsive */
    .page-cockfighting-live-betting__section,
    .page-cockfighting-live-betting__card,
    .page-cockfighting-live-betting__container,
    .page-cockfighting-live-betting__hero-video-wrapper,
    .page-cockfighting-live-betting__schedule-table {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    /* Video responsive */
    .page-cockfighting-live-betting video,
    .page-cockfighting-live-betting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting-live-betting__table-header,
    .page-cockfighting-live-betting__table-row {
        grid-template-columns: 1fr 1.2fr 1.5fr;
        font-size: 0.9em;
        padding: 10px 15px;
    }

    .page-cockfighting-live-betting__table-cell:nth-child(4) { /* Hide Kèo Cược on mobile */
        display: none;
    }

    .page-cockfighting-live-betting__table-cell:nth-child(2) { /* Hide Trường Gà on mobile */
        display: none;
    }

    .page-cockfighting-live-betting__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-cockfighting-live-betting__faq-answer {
        padding: 10px 20px;
    }
}

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

    .page-cockfighting-live-betting__section-title {
        font-size: 1.6em;
    }

    .page-cockfighting-live-betting__table-header,
    .page-cockfighting-live-betting__table-row {
        grid-template-columns: 1fr 2fr;
    }

    .page-cockfighting-live-betting__table-cell:nth-child(5) { /* Hide Trạng Thái on smallest mobile */
        display: none;
    }
}