/* style/blog-niceph-sports-betting-strategy.css */

:root {
    --niceph-primary-color: #F2C14E;
    --niceph-secondary-color: #FFD36B;
    --niceph-card-bg: #111111;
    --niceph-background: #0A0A0A;
    --niceph-text-main: #FFF6D6;
    --niceph-border-color: #3A2A12;
    --niceph-glow-color: #FFD36B;
    --niceph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --header-offset: 120px; /* Default for desktop */
}

/* Base styles for the page content */
.page-blog-niceph-sports-betting-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--niceph-text-main);
    background-color: var(--niceph-background);
    line-height: 1.6;
    padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */
}

.page-blog-niceph-sports-betting-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-niceph-sports-betting-strategy__hero-section {
    position: relative;
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--niceph-background);
}

.page-blog-niceph-sports-betting-strategy__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
}

.page-blog-niceph-sports-betting-strategy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-niceph-sports-betting-strategy__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-blog-niceph-sports-betting-strategy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--niceph-primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-niceph-sports-betting-strategy__hero-description {
    font-size: 1.1rem;
    color: var(--niceph-text-main);
    max-width: 800px;
    margin: 0 auto;
}

/* Content Area */
.page-blog-niceph-sports-betting-strategy__content-area {
    padding: 60px 0;
}

.page-blog-niceph-sports-betting-strategy__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--niceph-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-blog-niceph-sports-betting-strategy__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--niceph-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-niceph-sports-betting-strategy__paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--niceph-text-main);
}

.page-blog-niceph-sports-betting-strategy__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--niceph-text-main);
}

.page-blog-niceph-sports-betting-strategy__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-blog-niceph-sports-betting-strategy__image-center {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.page-blog-niceph-sports-betting-strategy__cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--niceph-card-bg);
}

.page-blog-niceph-sports-betting-strategy__cta-content {
    max-width: 900px;
}

.page-blog-niceph-sports-betting-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-blog-niceph-sports-betting-strategy__btn-primary,
.page-blog-niceph-sports-betting-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-niceph-sports-betting-strategy__btn-primary {
    background: var(--niceph-button-gradient);
    color: #ffffff; /* Button text always white */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-niceph-sports-betting-strategy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-niceph-sports-betting-strategy__btn-secondary {
    background: transparent;
    color: var(--niceph-primary-color);
    border: 2px solid var(--niceph-primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-niceph-sports-betting-strategy__btn-secondary:hover {
    background: var(--niceph-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* FAQ Section */
.page-blog-niceph-sports-betting-strategy__faq-section {
    padding: 60px 0;
}

.page-blog-niceph-sports-betting-strategy__faq-item {
    background: var(--niceph-card-bg);
    border: 1px solid var(--niceph-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-niceph-sports-betting-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--niceph-card-bg);
    color: var(--niceph-text-main);
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-niceph-sports-betting-strategy__faq-question:hover {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-blog-niceph-sports-betting-strategy__faq-title {
    margin: 0;
    color: var(--niceph-text-main);
}

.page-blog-niceph-sports-betting-strategy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--niceph-secondary-color);
}

.page-blog-niceph-sports-betting-strategy__faq-item.active .page-blog-niceph-sports-betting-strategy__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-niceph-sports-betting-strategy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--niceph-card-bg);
    color: var(--niceph-text-main);
}

.page-blog-niceph-sports-betting-strategy__faq-item.active .page-blog-niceph-sports-betting-strategy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 15px 20px;
}

/* Color Contrast Fixes (as per requirements) */
.page-blog-niceph-sports-betting-strategy__dark-bg {
    background-color: var(--niceph-background);
    color: var(--niceph-text-main);
}

.page-blog-niceph-sports-betting-strategy__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-blog-niceph-sports-betting-strategy__contrast-fix .page-blog-niceph-sports-betting-strategy__section-title,
.page-blog-niceph-sports-betting-strategy__contrast-fix .page-blog-niceph-sports-betting-strategy__sub-title,
.page-blog-niceph-sports-betting-strategy__contrast-fix .page-blog-niceph-sports-betting-strategy__paragraph,
.page-blog-niceph-sports-betting-strategy__contrast-fix .page-blog-niceph-sports-betting-strategy__list-item,
.page-blog-niceph-sports-betting-strategy__contrast-fix .page-blog-niceph-sports-betting-strategy__faq-title {
    color: #333333; /* Ensure dark text on light background */
}

.page-blog-niceph-sports-betting-strategy__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-niceph-sports-betting-strategy__hero-content {
        padding: 15px;
    }
    .page-blog-niceph-sports-betting-strategy__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-niceph-sports-betting-strategy__hero-description {
        font-size: 1rem;
    }
    .page-blog-niceph-sports-betting-strategy__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-blog-niceph-sports-betting-strategy__sub-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    :root {
        --header-offset: 100px; /* Adjust for mobile header height */
    }

    .page-blog-niceph-sports-betting-strategy {
        padding-top: var(--header-offset) !important;
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-niceph-sports-betting-strategy__container {
        padding: 0 15px !important;
    }

    .page-blog-niceph-sports-betting-strategy__hero-section {
        padding-top: var(--header-offset, 100px) !important; /* Mobile: controlled by shared's media */
        padding-bottom: 20px;
    }

    .page-blog-niceph-sports-betting-strategy__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-niceph-sports-betting-strategy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-blog-niceph-sports-betting-strategy__hero-description {
        font-size: 0.95rem;
    }

    .page-blog-niceph-sports-betting-strategy__content-area {
        padding: 40px 0;
    }

    .page-blog-niceph-sports-betting-strategy__section-title {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-blog-niceph-sports-betting-strategy__sub-title {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-niceph-sports-betting-strategy__paragraph,
    .page-blog-niceph-sports-betting-strategy__list-item {
        font-size: 0.95rem;
    }

    /* Mobile image responsiveness */
    .page-blog-niceph-sports-betting-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-blog-niceph-sports-betting-strategy__section,
    .page-blog-niceph-sports-betting-strategy__card,
    .page-blog-niceph-sports-betting-strategy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Mobile button responsiveness */
    .page-blog-niceph-sports-betting-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-niceph-sports-betting-strategy__btn-primary,
    .page-blog-niceph-sports-betting-strategy__btn-secondary {
        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: 1rem;
    }

    .page-blog-niceph-sports-betting-strategy__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-blog-niceph-sports-betting-strategy__faq-answer {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .page-blog-niceph-sports-betting-strategy__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-niceph-sports-betting-strategy__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-blog-niceph-sports-betting-strategy__sub-title {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
}