/* style/blog-n188-win-latest-promotions-analysis.css */

/* Custom Colors */
:root {
    --n188-win-primary: #11A84E;
    --n188-win-secondary: #22C768;
    --n188-win-button-gradient-start: #2AD16F;
    --n188-win-button-gradient-end: #13994A;
    --n188-win-card-bg: #11271B;
    --n188-win-page-bg: #08160F;
    --n188-win-text-main: #F2FFF6;
    --n188-win-text-secondary: #A7D9B8;
    --n188-win-border: #2E7A4E;
    --n188-win-glow: #57E38D;
    --n188-win-gold: #F2C14E;
    --n188-win-deep-green: #0A4B2C;
    --n188-win-divider: #1E3A2A;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-n188-win-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--n188-win-text-main); /* Light text for dark background */
    background-color: var(--n188-win-page-bg); /* Explicitly set page background to match custom color */
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-n188-win-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-n188-win-latest-promotions-analysis__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--n188-win-deep-green);
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-blog-n188-win-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure full width on desktop */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and text */
}

.page-blog-n188-win-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-blog-n188-win-latest-promotions-analysis__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: var(--n188-win-text-main);
}

.page-blog-n188-win-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* H1 font size with clamp */
    font-weight: 700;
    color: var(--n188-win-gold);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-n188-win-latest-promotions-analysis__subtitle {
    font-size: 1.1em;
    color: var(--n188-win-text-secondary);
    margin-bottom: 30px;
}

.page-blog-n188-win-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%; /* Ensure container takes full width for responsive buttons */
    max-width: 600px; /* Limit button group width */
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-blog-n188-win-latest-promotions-analysis__btn-primary,
.page-blog-n188-win-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-blog-n188-win-latest-promotions-analysis__btn-primary {
    background: var(--n188-win-button-gradient-start); /* Fallback for gradient */
    background: linear-gradient(180deg, var(--n188-win-button-gradient-start) 0%, var(--n188-win-button-gradient-end) 100%);
    color: #ffffff; /* White text for dark button */
    border: 2px solid var(--n188-win-primary);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-n188-win-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    opacity: 0.9;
}

.page-blog-n188-win-latest-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--n188-win-primary);
    border: 2px solid var(--n188-win-primary);
}

.page-blog-n188-win-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--n188-win-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Content Sections */
.page-blog-n188-win-latest-promotions-analysis__content-section {
    padding: 60px 0;
    background-color: var(--n188-win-page-bg);
}

.page-blog-n188-win-latest-promotions-analysis__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--n188-win-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 6px rgba(242, 193, 78, 0.4);
}

.page-blog-n188-win-latest-promotions-analysis__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--n188-win-text-main);
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-blog-n188-win-latest-promotions-analysis p {
    margin-bottom: 1em;
    color: var(--n188-win-text-secondary);
}

.page-blog-n188-win-latest-promotions-analysis ul,
.page-blog-n188-win-latest-promotions-analysis ol {
    margin-bottom: 1em;
    padding-left: 25px;
    color: var(--n188-win-text-secondary);
}

.page-blog-n188-win-latest-promotions-analysis ul li,
.page-blog-n188-win-latest-promotions-analysis ol li {
    margin-bottom: 0.5em;
    color: var(--n188-win-text-secondary);
}

.page-blog-n188-win-latest-promotions-analysis ul li b {
    color: var(--n188-win-text-main); /* Highlight important text */
}

/* Article Images */
.page-blog-n188-win-latest-promotions-analysis__article-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-n188-win-latest-promotions-analysis__faq-list {
    margin-top: 40px;
}

.page-blog-n188-win-latest-promotions-analysis__faq-item {
    background-color: var(--n188-win-card-bg); /* Card BG color */
    border: 1px solid var(--n188-win-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-n188-win-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--n188-win-text-main);
    background-color: var(--n188-win-deep-green);
    border-bottom: 1px solid var(--n188-win-divider);
    list-style: none; /* For details/summary */
}

.page-blog-n188-win-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-n188-win-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    font-size: 1.1em;
}

.page-blog-n188-win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--n188-win-gold);
    transition: transform 0.3s ease;
}

.page-blog-n188-win-latest-promotions-analysis__faq-item[open] .page-blog-n188-win-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-blog-n188-win-latest-promotions-analysis__faq-answer {
    padding: 15px 25px 20px;
    color: var(--n188-win-text-secondary);
    font-size: 0.95em;
    background-color: var(--n188-win-card-bg);
}

.page-blog-n188-win-latest-promotions-analysis__faq-answer p:last-child {
    margin-bottom: 0;
}

/* Final CTA */
.page-blog-n188-win-latest-promotions-analysis__cta-final {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-n188-win-latest-promotions-analysis__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
}

@media (max-width: 768px) {
    .page-blog-n188-win-latest-promotions-analysis {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-blog-n188-win-latest-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 30px;
    }

    .page-blog-n188-win-latest-promotions-analysis__hero-content {
        padding: 0 15px;
    }

    .page-blog-n188-win-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-n188-win-latest-promotions-analysis__subtitle {
        font-size: 1em;
    }

    .page-blog-n188-win-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-n188-win-latest-promotions-analysis__btn-primary,
    .page-blog-n188-win-latest-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }
    
    .page-blog-n188-win-latest-promotions-analysis__content-section {
        padding: 40px 0;
    }

    .page-blog-n188-win-latest-promotions-analysis__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-n188-win-latest-promotions-analysis__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-n188-win-latest-promotions-analysis__sub-title {
        font-size: 1.4em;
    }

    .page-blog-n188-win-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .page-blog-n188-win-latest-promotions-analysis__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-n188-win-latest-promotions-analysis__article-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-blog-n188-win-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-n188-win-latest-promotions-analysis__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.9em;
    }
}