/* style/blog-cwin99-app-latest-promotions-analysis.css */

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

.page-blog-cwin99-app-latest-promotions-analysis {
    background-color: var(--cwin99-background);
    color: var(--cwin99-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-blog-cwin99-app-latest-promotions-analysis__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-blog-cwin99-app-latest-promotions-analysis__section-title {
    font-size: 2.8em;
    color: var(--cwin99-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-cwin99-app-latest-promotions-analysis__sub-title {
    font-size: 1.8em;
    color: var(--cwin99-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-cwin99-app-latest-promotions-analysis__paragraph {
    font-size: 1.1em;
    color: var(--cwin99-text-secondary);
    margin-bottom: 20px;
}

/* Hero Section */
.page-blog-cwin99-app-latest-promotions-analysis__hero-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--cwin99-background);
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-cwin99-app-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-cwin99-app-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-cwin99-app-latest-promotions-analysis__hero-content-wrapper {
    width: 100%;
    padding: 40px 0;
    background-color: var(--cwin99-background);
}

.page-blog-cwin99-app-latest-promotions-analysis__main-title {
    color: var(--cwin99-gold);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px; /* Max width for H1 */
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2em, 4vw, 3.2em);
}

.page-blog-cwin99-app-latest-promotions-analysis__hero-description {
    font-size: 1.2em;
    color: var(--cwin99-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-cwin99-app-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-cwin99-app-latest-promotions-analysis__btn-primary,
.page-blog-cwin99-app-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-cwin99-app-latest-promotions-analysis__btn-primary {
    background: var(--cwin99-button-gradient);
    color: var(--cwin99-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-cwin99-app-latest-promotions-analysis__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-blog-cwin99-app-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--cwin99-primary);
    color: var(--cwin99-text-main);
    transform: translateY(-2px);
}

.page-blog-cwin99-app-latest-promotions-analysis__btn-block {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0 auto;
}

/* Intro Section */
.page-blog-cwin99-app-latest-promotions-analysis__intro-section .page-blog-cwin99-app-latest-promotions-analysis__paragraph strong {
    color: var(--cwin99-primary);
}

/* Promotion Types Section */
.page-blog-cwin99-app-latest-promotions-analysis__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-cwin99-app-latest-promotions-analysis__card {
    background-color: var(--cwin99-card-bg);
    border: 1px solid var(--cwin99-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--cwin99-text-secondary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-cwin99-app-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-cwin99-app-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

.page-blog-cwin99-app-latest-promotions-analysis__card-title {
    font-size: 1.6em;
    color: var(--cwin99-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-cwin99-app-latest-promotions-analysis__card-description {
    font-size: 1em;
    color: var(--cwin99-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-cwin99-app-latest-promotions-analysis__card-link {
    display: inline-block;
    color: var(--cwin99-primary);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--cwin99-primary);
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-cwin99-app-latest-promotions-analysis__card-link:hover {
    background-color: var(--cwin99-primary);
    color: var(--cwin99-text-main);
}

/* Guide Section */
.page-blog-cwin99-app-latest-promotions-analysis__content-block {
    background-color: var(--cwin99-card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--cwin99-border);
}

.page-blog-cwin99-app-latest-promotions-analysis__ordered-list,
.page-blog-cwin99-app-latest-promotions-analysis__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-blog-cwin99-app-latest-promotions-analysis__ordered-list li,
.page-blog-cwin99-app-latest-promotions-analysis__unordered-list li {
    color: var(--cwin99-text-secondary);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-cwin99-app-latest-promotions-analysis__ordered-list li strong {
    color: var(--cwin99-text-main);
}

/* Benefits Section */
.page-blog-cwin99-app-latest-promotions-analysis__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-blog-cwin99-app-latest-promotions-analysis__benefit-item {
    background-color: var(--cwin99-card-bg);
    border: 1px solid var(--cwin99-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-cwin99-app-latest-promotions-analysis__benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px;
}

.page-blog-cwin99-app-latest-promotions-analysis__benefit-title {
    font-size: 1.5em;
    color: var(--cwin99-text-main);
    margin-bottom: 10px;
}

.page-blog-cwin99-app-latest-promotions-analysis__benefit-description {
    color: var(--cwin99-text-secondary);
}

/* FAQ Section */
.page-blog-cwin99-app-latest-promotions-analysis__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-item {
    background-color: var(--cwin99-card-bg);
    border: 1px solid var(--cwin99-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    color: var(--cwin99-text-main);
    cursor: pointer;
    background-color: var(--cwin99-card-bg);
    border-bottom: 1px solid var(--cwin99-divider);
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-item[open] .page-blog-cwin99-app-latest-promotions-analysis__faq-question {
    border-bottom: 1px solid var(--cwin99-divider);
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-qtext {
    font-weight: bold;
    color: var(--cwin99-text-main);
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--cwin99-primary);
    margin-left: 15px;
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-answer {
    padding: 0 25px 18px 25px;
    font-size: 1.05em;
    color: var(--cwin99-text-secondary);
}

.page-blog-cwin99-app-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-cwin99-app-latest-promotions-analysis__faq-item summary {
    list-style: none;
}

/* Final CTA Section */
.page-blog-cwin99-app-latest-promotions-analysis__cta-final-section .page-blog-cwin99-app-latest-promotions-analysis__container {
    background-color: var(--cwin99-deep-green);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-cwin99-app-latest-promotions-analysis__cta-final-section .page-blog-cwin99-app-latest-promotions-analysis__section-title {
    color: var(--cwin99-gold);
    margin-bottom: 25px;
}

.page-blog-cwin99-app-latest-promotions-analysis__cta-final-section .page-blog-cwin99-app-latest-promotions-analysis__paragraph {
    color: var(--cwin99-text-main);
    margin-bottom: 40px;
    font-size: 1.15em;
}

/* General image responsiveness */
.page-blog-cwin99-app-latest-promotions-analysis img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure images fill their space nicely */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-cwin99-app-latest-promotions-analysis__container,
    .page-blog-cwin99-app-latest-promotions-analysis__section,
    .page-blog-cwin99-app-latest-promotions-analysis__card,
    .page-blog-cwin99-app-latest-promotions-analysis__content-block,
    .page-blog-cwin99-app-latest-promotions-analysis__faq-list,
    .page-blog-cwin99-app-latest-promotions-analysis__cta-final-section .page-blog-cwin99-app-latest-promotions-analysis__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__hero-section {
        padding-top: 10px !important;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__sub-title {
        font-size: 1.5em;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__hero-description,
    .page-blog-cwin99-app-latest-promotions-analysis__paragraph,
    .page-blog-cwin99-app-latest-promotions-analysis__ordered-list li,
    .page-blog-cwin99-app-latest-promotions-analysis__unordered-list li,
    .page-blog-cwin99-app-latest-promotions-analysis__card-description,
    .page-blog-cwin99-app-latest-promotions-analysis__benefit-description,
    .page-blog-cwin99-app-latest-promotions-analysis__faq-answer {
        font-size: 1em;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog-cwin99-app-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__btn-primary,
    .page-blog-cwin99-app-latest-promotions-analysis__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__cards-grid,
    .page-blog-cwin99-app-latest-promotions-analysis__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__card-image,
    .page-blog-cwin99-app-latest-promotions-analysis__benefit-icon {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        min-width: 200px !important; /* Ensure content images are not too small */
        min-height: 150px !important;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-blog-cwin99-app-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .page-blog-cwin99-app-latest-promotions-analysis__cta-final-section .page-blog-cwin99-app-latest-promotions-analysis__container {
        padding: 30px 20px !important;
    }
}

/* Ensure images don't use filter */
.page-blog-cwin99-app-latest-promotions-analysis img {
    filter: none; /* Explicitly ensure no filters are applied */
}