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

.page-blog-m666-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--m666-text-main); /* Default text color for dark background */
    background-color: var(--m666-background); /* Default background color */
}

.page-blog-m666-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--m666-deep-green);
    overflow: hidden;
}

.page-blog-m666-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-m666-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-m666-latest-promotions-analysis__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 20px;
}

.page-blog-m666-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--m666-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-m666-latest-promotions-analysis__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--m666-text-secondary);
    margin-bottom: 30px;
}

.page-blog-m666-latest-promotions-analysis__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--m666-button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-m666-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-m666-latest-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--m666-background);
    color: var(--m666-text-main);
}

.page-blog-m666-latest-promotions-analysis__introduction-section {
    background-color: var(--m666-background);
}

.page-blog-m666-latest-promotions-analysis__why-promotions-section {
    background-color: var(--m666-card-bg);
    padding-bottom: 60px;
}

.page-blog-m666-latest-promotions-analysis__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--m666-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
}

.page-blog-m666-latest-promotions-analysis__text-block {
    font-size: 1.05em;
    color: var(--m666-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-m666-latest-promotions-analysis__feature-list {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-blog-m666-latest-promotions-analysis__feature-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--m666-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--m666-border-color);
}

.page-blog-m666-latest-promotions-analysis__feature-title {
    font-size: 1.5em;
    color: var(--m666-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-m666-latest-promotions-analysis__featured-promotions-section {
    background-color: var(--m666-background);
    padding-bottom: 60px;
}

.page-blog-m666-latest-promotions-analysis__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-m666-latest-promotions-analysis__card {
    background-color: var(--m666-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--m666-border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--m666-text-secondary);
}

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

.page-blog-m666-latest-promotions-analysis__sub-title {
    font-size: 1.25em;
    color: var(--m666-text-main);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-blog-m666-latest-promotions-analysis__sub-title a {
    color: var(--m666-gold-color);
    text-decoration: none;
}

.page-blog-m666-latest-promotions-analysis__sub-title a:hover {
    text-decoration: underline;
}

.page-blog-m666-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--m666-primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid var(--m666-primary-color);
    cursor: pointer;
    margin-top: 20px;
    align-self: flex-start;
}

.page-blog-m666-latest-promotions-analysis__btn-secondary:hover {
    background: var(--m666-primary-color);
    color: #ffffff;
}

.page-blog-m666-latest-promotions-analysis__card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
}

.page-blog-m666-latest-promotions-analysis__product-promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-m666-latest-promotions-analysis__product-promo-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--m666-divider-color);
    padding-bottom: 15px;
}

.page-blog-m666-latest-promotions-analysis__product-promo-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-blog-m666-latest-promotions-analysis__how-to-participate-section {
    background-color: var(--m666-card-bg);
    padding-bottom: 60px;
}

.page-blog-m666-latest-promotions-analysis__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-m666-latest-promotions-analysis__step-item {
    background-color: var(--m666-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--m666-border-color);
}

.page-blog-m666-latest-promotions-analysis__step-title {
    font-size: 1.4em;
    color: var(--m666-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-m666-latest-promotions-analysis__step-title a {
    color: var(--m666-gold-color);
    text-decoration: none;
}

.page-blog-m666-latest-promotions-analysis__step-title a:hover {
    text-decoration: underline;
}

.page-blog-m666-latest-promotions-analysis__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-blog-m666-latest-promotions-analysis__optimization-tips-section {
    background-color: var(--m666-deep-green);
    padding-bottom: 60px;
}

.page-blog-m666-latest-promotions-analysis__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-m666-latest-promotions-analysis__tip-item {
    background-color: var(--m666-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--m666-border-color);
}

.page-blog-m666-latest-promotions-analysis__tip-title {
    font-size: 1.4em;
    color: var(--m666-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-m666-latest-promotions-analysis__faq-section {
    background-color: var(--m666-card-bg);
    padding-bottom: 60px;
}

.page-blog-m666-latest-promotions-analysis__faq-list {
    margin-top: 30px;
}

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

.page-blog-m666-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--m666-text-main);
    cursor: pointer;
    background-color: var(--m666-deep-green);
    border-bottom: 1px solid var(--m666-border-color);
    user-select: none;
    list-style: none;
}

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

.page-blog-m666-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

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

.page-blog-m666-latest-promotions-analysis__faq-item[open] .page-blog-m666-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-m666-latest-promotions-analysis__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: var(--m666-text-secondary);
    background-color: var(--m666-background);
}

.page-blog-m666-latest-promotions-analysis__image-centered {
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.page-blog-m666-latest-promotions-analysis__conclusion-section {
    background-color: var(--m666-deep-green);
    text-align: center;
    padding-bottom: 60px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-m666-latest-promotions-analysis__hero-content {
        padding: 0 15px;
    }
    .page-blog-m666-latest-promotions-analysis__promotion-grid,
    .page-blog-m666-latest-promotions-analysis__steps,
    .page-blog-m666-latest-promotions-analysis__tips-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-blog-m666-latest-promotions-analysis__feature-list {
        flex-direction: column;
        align-items: center;
    }
    .page-blog-m666-latest-promotions-analysis__feature-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-m666-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-m666-latest-promotions-analysis__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-blog-m666-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-blog-m666-latest-promotions-analysis__hero-description {
        font-size: 1em;
    }
    .page-blog-m666-latest-promotions-analysis__btn-primary,
    .page-blog-m666-latest-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-m666-latest-promotions-analysis__content-area,
    .page-blog-m666-latest-promotions-analysis__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-m666-latest-promotions-analysis__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-blog-m666-latest-promotions-analysis__card,
    .page-blog-m666-latest-promotions-analysis__step-item,
    .page-blog-m666-latest-promotions-analysis__tip-item {
        padding: 20px;
    }
    .page-blog-m666-latest-promotions-analysis__card-title {
        font-size: 1.4em;
    }
    .page-blog-m666-latest-promotions-analysis__sub-title {
        font-size: 1.1em;
    }
    .page-blog-m666-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-m666-latest-promotions-analysis__hero-image-wrapper,
    .page-blog-m666-latest-promotions-analysis__card-image,
    .page-blog-m666-latest-promotions-analysis__image-full-width,
    .page-blog-m666-latest-promotions-analysis__image-centered {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-m666-latest-promotions-analysis__cta-buttons,
    .page-blog-m666-latest-promotions-analysis__button-group,
    .page-blog-m666-latest-promotions-analysis__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-blog-m666-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
    }
    .page-blog-m666-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-blog-m666-latest-promotions-analysis__faq-answer {
        padding: 10px 20px 15px 20px;
    }
}

/* Dark background text color adjustments for specific sections */
.page-blog-m666-latest-promotions-analysis__dark-bg {
    color: var(--m666-text-main);
    background-color: var(--m666-deep-green);
}

.page-blog-m666-latest-promotions-analysis__light-bg {
    color: var(--m666-text-main);
    background-color: var(--m666-card-bg);
}

.page-blog-m666-latest-promotions-analysis__dark-section {
    background-color: var(--m666-deep-green);
    color: var(--m666-text-main);
}