/* style/blog-win678-latest-promotions-analysis.css */
:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg-color: #D32F2F;
    --background-color: #B71C1C;
    --text-main-color: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
}

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

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

.page-blog-win678-latest-promotions-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-blog-win678-latest-promotions-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7);
}

.page-blog-win678-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-main-color);
}

.page-blog-win678-latest-promotions-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.7);
}

.page-blog-win678-latest-promotions-analysis__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-main-color);
    opacity: 0.9;
}

.page-blog-win678-latest-promotions-analysis__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-win678-latest-promotions-analysis__btn-primary,
.page-blog-win678-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    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-win678-latest-promotions-analysis__btn-primary {
    background: var(--button-gradient);
    color: var(--deep-red-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-blog-win678-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-blog-win678-latest-promotions-analysis__btn-secondary {
    background-color: var(--deep-red-color);
    color: var(--text-main-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(122, 14, 14, 0.4);
}

.page-blog-win678-latest-promotions-analysis__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(122, 14, 14, 0.6);
}

.page-blog-win678-latest-promotions-analysis__content-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

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

.page-blog-win678-latest-promotions-analysis__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-win678-latest-promotions-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.page-blog-win678-latest-promotions-analysis__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-win678-latest-promotions-analysis__paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main-color);
    opacity: 0.9;
}

.page-blog-win678-latest-promotions-analysis__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

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

.page-blog-win678-latest-promotions-analysis__list-item {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main-color);
}

.page-blog-win678-latest-promotions-analysis__list-item strong {
    color: var(--gold-color);
}

.page-blog-win678-latest-promotions-analysis__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-win678-latest-promotions-analysis__cta-wrapper--final {
    margin-top: 60px;
}

.page-blog-win678-latest-promotions-analysis__faq-list {
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.page-blog-win678-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-main-color);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-win678-latest-promotions-analysis__faq-item[open] > .page-blog-win678-latest-promotions-analysis__faq-question {
    background-color: var(--deep-red-color);
}

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

.page-blog-win678-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-left: 15px;
}

.page-blog-win678-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-main-color);
    opacity: 0.8;
}

.page-blog-win678-latest-promotions-analysis__faq-answer p {
    margin-bottom: 0;
    padding-top: 15px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-blog-win678-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog-win678-latest-promotions-analysis__hero-description {
        font-size: 1.1rem;
    }

    .page-blog-win678-latest-promotions-analysis__section-title {
        font-size: 2rem;
    }

    .page-blog-win678-latest-promotions-analysis__sub-title {
        font-size: 1.6rem;
    }

    .page-blog-win678-latest-promotions-analysis__paragraph,
    .page-blog-win678-latest-promotions-analysis__list-item,
    .page-blog-win678-latest-promotions-analysis__faq-question,
    .page-blog-win678-latest-promotions-analysis__faq-answer {
        font-size: 1rem;
    }

    .page-blog-win678-latest-promotions-analysis__btn-primary,
    .page-blog-win678-latest-promotions-analysis__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-blog-win678-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-win678-latest-promotions-analysis__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-blog-win678-latest-promotions-analysis__hero-content {
        padding: 20px 15px;
    }

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

    .page-blog-win678-latest-promotions-analysis__hero-description {
        font-size: 0.95rem;
    }

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

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

    .page-blog-win678-latest-promotions-analysis__content-section {
        padding: 40px 0;
    }

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

    .page-blog-win678-latest-promotions-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .page-blog-win678-latest-promotions-analysis__sub-title {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .page-blog-win678-latest-promotions-analysis__paragraph,
    .page-blog-win678-latest-promotions-analysis__list-item,
    .page-blog-win678-latest-promotions-analysis__faq-answer p {
        font-size: 0.95rem;
    }

    .page-blog-win678-latest-promotions-analysis__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-win678-latest-promotions-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-win678-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-win678-latest-promotions-analysis__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .page-blog-win678-latest-promotions-analysis__section-title {
        font-size: 1.6rem;
    }

    .page-blog-win678-latest-promotions-analysis__sub-title {
        font-size: 1.2rem;
    }
}