/* style/sports-basketball-betting.css */

:root {
    --happyluke-primary-color: #11A84E;
    --happyluke-secondary-color: #22C768;
    --happyluke-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --happyluke-card-bg: #11271B;
    --happyluke-background: #08160F;
    --happyluke-text-main: #F2FFF6;
    --happyluke-text-secondary: #A7D9B8;
    --happyluke-border-color: #2E7A4E;
    --happyluke-glow-color: #57E38D;
    --happyluke-gold-color: #F2C14E;
    --happyluke-divider-color: #1E3A2A;
    --happyluke-deep-green: #0A4B2C;
}

.page-sports-basketball-betting {
    background-color: var(--happyluke-background);
    color: var(--happyluke-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-sports-basketball-betting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--happyluke-deep-green);
}

.page-sports-basketball-betting__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-sports-basketball-betting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-sports-basketball-betting__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-sports-basketball-betting__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--happyluke-text-main);
    margin-bottom: 20px;
    max-width: 100%;
    /* Using clamp for responsive font size, avoiding fixed large values */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-sports-basketball-betting__description {
    font-size: 1.1em;
    color: var(--happyluke-text-secondary);
    margin-bottom: 30px;
}

.page-sports-basketball-betting__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-sports-basketball-betting__btn-primary,
.page-sports-basketball-betting__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports-basketball-betting__btn-primary {
    background: var(--happyluke-button-gradient);
    color: var(--happyluke-text-main);
    border: 2px solid transparent;
}

.page-sports-basketball-betting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-sports-basketball-betting__btn-secondary {
    background-color: transparent;
    color: var(--happyluke-glow-color);
    border: 2px solid var(--happyluke-glow-color);
}

.page-sports-basketball-betting__btn-secondary:hover {
    background-color: var(--happyluke-glow-color);
    color: var(--happyluke-background);
}

.page-sports-basketball-betting__btn-full-width {
    width: 100%;
}

.page-sports-basketball-betting__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--happyluke-background);
    color: var(--happyluke-text-main);
}

.page-sports-basketball-betting__section-title {
    font-size: 2.2em;
    color: var(--happyluke-text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-sports-basketball-betting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--happyluke-gold-color);
    border-radius: 2px;
}

.page-sports-basketball-betting__sub-title {
    font-size: 1.6em;
    color: var(--happyluke-glow-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-sports-basketball-betting__text-block {
    margin-bottom: 40px;
}

.page-sports-basketball-betting__text-block p {
    margin-bottom: 1em;
    font-size: 1.05em;
    color: var(--happyluke-text-secondary);
}

.page-sports-basketball-betting__text-block strong {
    color: var(--happyluke-text-main);
}

.page-sports-basketball-betting__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--happyluke-text-secondary);
}

.page-sports-basketball-betting__list li {
    margin-bottom: 0.8em;
    font-size: 1.05em;
}

.page-sports-basketball-betting__list strong {
    color: var(--happyluke-gold-color);
}

.page-sports-basketball-betting__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-sports-basketball-betting__image-centered {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-sports-basketball-betting__faq-list {
    background-color: var(--happyluke-card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports-basketball-betting__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--happyluke-divider-color);
    padding-bottom: 15px;
}

.page-sports-basketball-betting__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-sports-basketball-betting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--happyluke-text-main);
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.page-sports-basketball-betting__faq-question:hover {
    color: var(--happyluke-glow-color);
}

.page-sports-basketball-betting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--happyluke-glow-color);
    transition: transform 0.3s ease;
}

.page-sports-basketball-betting__faq-item[open] .page-sports-basketball-betting__faq-toggle {
    transform: rotate(45deg);
}

.page-sports-basketball-betting__faq-answer {
    font-size: 1.05em;
    color: var(--happyluke-text-secondary);
    padding-top: 10px;
    padding-left: 10px;
}

.page-sports-basketball-betting__conclusion-section {
    background-color: var(--happyluke-deep-green);
    color: var(--happyluke-text-main);
    text-align: center;
    padding: 60px 20px;
}

.page-sports-basketball-betting__conclusion-section .page-sports-basketball-betting__section-title {
    color: var(--happyluke-text-main);
}

.page-sports-basketball-betting__conclusion-section .page-sports-basketball-betting__description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: var(--happyluke-text-secondary);
}


/* --- Responsive Styles --- */

/* Global image/video/container responsiveness for mobile */
.page-sports-basketball-betting img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-sports-basketball-betting video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-sports-basketball-betting__video-section,
.page-sports-basketball-betting__video-container,
.page-sports-basketball-betting__video-wrapper,
.page-sports-basketball-betting__section,
.page-sports-basketball-betting__card,
.page-sports-basketball-betting__container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile specific overrides */
@media (max-width: 768px) {
    .page-sports-basketball-betting__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-sports-basketball-betting__description,
    .page-sports-basketball-betting__text-block p,
    .page-sports-basketball-betting__list li,
    .page-sports-basketball-betting__faq-answer p {
        font-size: 1em;
    }

    .page-sports-basketball-betting__section-title {
        font-size: 1.8em;
    }

    .page-sports-basketball-betting__sub-title {
        font-size: 1.4em;
    }

    .page-sports-basketball-betting__cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .page-sports-basketball-betting__btn-primary,
    .page-sports-basketball-betting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        text-align: center;
    }

    /* Ensure all images are responsive */
    .page-sports-basketball-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure all videos are responsive */
    .page-sports-basketball-betting video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure containers for images/videos/content do not overflow */
    .page-sports-basketball-betting__hero-section,
    .page-sports-basketball-betting__content-area,
    .page-sports-basketball-betting__conclusion-section,
    .page-sports-basketball-betting__faq-list {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-sports-basketball-betting__hero-image-wrapper {
        margin-bottom: 20px;
    }
    
    .page-sports-basketball-betting__hero-content {
        padding: 0 15px;
    }

    .page-sports-basketball-betting__faq-question {
        font-size: 1.1em;
    }
    
    .page-sports-basketball-betting__faq-answer {
        padding-left: 5px;
    }
}