.page-sports-live-betting-and-streaming {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is dark (#0a0a0a), so text is light */
    background-color: transparent; /* Inherit from body or shared */
}

.page-sports-live-betting-and-streaming__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-sports-live-betting-and-streaming__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh; /* Adjust as needed */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
    background-color: #017439; /* Use primary brand color for hero background */
}

.page-sports-live-betting-and-streaming__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-sports-live-betting-and-streaming__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly dim the background image */
}

.page-sports-live-betting-and-streaming__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-live-betting-and-streaming__main-title {
    font-size: 3.2em;
    color: #FFFF00; /* Custom color for important titles */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-sports-live-betting-and-streaming__intro-text {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 30px;
}

.page-sports-live-betting-and-streaming__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-sports-live-betting-and-streaming__btn-primary,
.page-sports-live-betting-and-streaming__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-sports-live-betting-and-streaming__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom color for register/login text */
    border: 2px solid #C30808;
}

.page-sports-live-betting-and-streaming__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-sports-live-betting-and-streaming__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-sports-live-betting-and-streaming__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439;
    border-color: #ffffff;
}

/* General Section Styling */
.page-sports-live-betting-and-streaming__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #FFFF00; /* Use custom color for section titles */
}

.page-sports-live-betting-and-streaming__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-sports-live-betting-and-streaming__light-bg {
    background-color: #0a0a0a; /* Dark body background, so use light text. This section is conceptually "light" in contrast to the brand color, but still dark overall. */
    color: #ffffff;
    padding: 60px 0;
}

.page-sports-live-betting-and-streaming__dark-bg {
    background-color: #017439; /* Primary brand color */
    color: #ffffff;
    padding: 60px 0;
}

/* Content Grids & Blocks */
.page-sports-live-betting-and-streaming__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-sports-live-betting-and-streaming__text-block {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    font-size: 1.1em;
}

.page-sports-live-betting-and-streaming__image-block {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
}

.page-sports-live-betting-and-streaming__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto; /* Center image */
    min-width: 200px;
    min-height: 200px;
}

/* Feature Cards */
.page-sports-live-betting-and-streaming__features-grid,
.page-sports-live-betting-and-streaming__promotions-grid,
.page-sports-live-betting-and-streaming__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports-live-betting-and-streaming__feature-card,
.page-sports-live-betting-and-streaming__promo-card,
.page-sports-live-betting-and-streaming__step-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-sports-live-betting-and-streaming__feature-card:hover,
.page-sports-live-betting-and-streaming__promo-card:hover,
.page-sports-live-betting-and-streaming__step-card:hover {
    transform: translateY(-5px);
}

.page-sports-live-betting-and-streaming__card-title {
    font-size: 1.5em;
    color: #FFFF00; /* Custom color for card titles */
    margin-bottom: 15px;
}

.page-sports-live-betting-and-streaming__promo-image,
.page-sports-live-betting-and-streaming__step-card .page-sports-live-betting-and-streaming__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}


/* Live Experience Section */
.page-sports-live-betting-and-streaming__live-experience-section .page-sports-live-betting-and-streaming__content-area {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page-sports-live-betting-and-streaming__video-wrapper {
    flex: 2;
    min-width: 300px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-live-betting-and-streaming__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; /* Make the link cover the video */
    cursor: pointer;
}

.page-sports-live-betting-and-streaming__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.page-sports-live-betting-and-streaming__feature-list {
    flex: 1;
    min-width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffffff; /* Ensure light text on dark background */
}

.page-sports-live-betting-and-streaming__feature-list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    border-left: 5px solid #017439; /* Brand accent */
}

.page-sports-live-betting-and-streaming__feature-list strong {
    color: #FFFF00; /* Highlight key phrases */
}

/* FAQ Section */
.page-sports-live-betting-and-streaming__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-live-betting-and-streaming__faq-item {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-sports-live-betting-and-streaming__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #017439; /* Primary brand color for question background */
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-sports-live-betting-and-streaming__faq-question:hover {
    background-color: #005a2d;
}

.page-sports-live-betting-and-streaming__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFFF00; /* Custom color for toggle icon */
}

.page-sports-live-betting-and-streaming__faq-item.active .page-sports-live-betting-and-streaming__faq-toggle {
    transform: rotate(45deg); /* Change to 'X' or '-' like effect */
}

.page-sports-live-betting-and-streaming__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
    color: #f0f0f0;
}

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

/* Conclusion Section */
.page-sports-live-betting-and-streaming__conclusion-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-sports-live-betting-and-streaming__conclusion-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    border-left: 5px solid #FFFF00; /* Accent with custom color */
    color: #ffffff;
}

.page-sports-live-betting-and-streaming__conclusion-list strong {
    color: #FFFF00;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports-live-betting-and-streaming__main-title {
        font-size: 2.8em;
    }
    .page-sports-live-betting-and-streaming__section-title {
        font-size: 2em;
    }
    .page-sports-live-betting-and-streaming__hero-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-sports-live-betting-and-streaming {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Fixed header padding for mobile */
    .page-sports-live-betting-and-streaming__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-sports-live-betting-and-streaming__hero-content {
        padding: 20px;
        max-width: 90%;
    }

    .page-sports-live-betting-and-streaming__main-title {
        font-size: 2em;
    }

    .page-sports-live-betting-and-streaming__intro-text {
        font-size: 1em;
    }

    .page-sports-live-betting-and-streaming__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports-live-betting-and-streaming__btn-primary,
    .page-sports-live-betting-and-streaming__btn-secondary {
        width: 100% !important; /* Enforce full width for buttons */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-sports-live-betting-and-streaming__content-grid,
    .page-sports-live-betting-and-streaming__live-experience-section .page-sports-live-betting-and-streaming__content-area {
        flex-direction: column;
        gap: 30px;
    }

    .page-sports-live-betting-and-streaming__text-block,
    .page-sports-live-betting-and-streaming__image-block,
    .page-sports-live-betting-and-streaming__video-wrapper,
    .page-sports-live-betting-and-streaming__feature-list {
        min-width: unset;
        width: 100%;
    }
    
    /* Mobile responsive images */
    .page-sports-live-betting-and-streaming img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-sports-live-betting-and-streaming__section,
    .page-sports-live-betting-and-streaming__card,
    .page-sports-live-betting-and-streaming__container,
    .page-sports-live-betting-and-streaming__video-section,
    .page-sports-live-betting-and-streaming__video-container,
    .page-sports-live-betting-and-streaming__video-wrapper,
    .page-sports-live-betting-and-streaming__cta-buttons,
    .page-sports-live-betting-and-streaming__button-group,
    .page-sports-live-betting-and-streaming__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Mobile responsive videos */
    .page-sports-live-betting-and-streaming video,
    .page-sports-live-betting-and-streaming__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports-live-betting-and-streaming__video-wrapper {
        padding-bottom: 56.25% !important; /* Maintain aspect ratio */
        height: 0 !important;
    }
    .page-sports-live-betting-and-streaming__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-sports-live-betting-and-streaming__faq-answer {
        padding: 10px 20px;
    }
    .page-sports-live-betting-and-streaming__conclusion-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-sports-live-betting-and-streaming__main-title {
        font-size: 1.8em;
    }
    .page-sports-live-betting-and-streaming__section-title {
        font-size: 1.8em;
    }
}