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

.page-blog-s88-win-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Main text color for the page */
    background-color: var(--background-color); /* Page background */
}

.page-blog-s88-win-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-s88-win-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px;
}

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

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

.page-blog-s88-win-latest-promotions-analysis__main-title {
    color: var(--text-main-color);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-s88-win-latest-promotions-analysis__lead-text {
    color: var(--text-secondary-color);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog-s88-win-latest-promotions-analysis__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button adapts to mobile */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-s88-win-latest-promotions-analysis__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-s88-win-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

.page-blog-s88-win-latest-promotions-analysis__btn-secondary {
    background: var(--card-bg);
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-blog-s88-win-latest-promotions-analysis__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--card-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-s88-win-latest-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-main-color); /* Ensure content text is readable on dark background */
    background-color: var(--background-color);
}

.page-blog-s88-win-latest-promotions-analysis__section-wrapper {
    margin-bottom: 60px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-s88-win-latest-promotions-analysis__section-title {
    color: var(--text-main-color);
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-blog-s88-win-latest-promotions-analysis__paragraph {
    color: var(--text-secondary-color);
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.page-blog-s88-win-latest-promotions-analysis__promo-card {
    background-color: var(--deep-green-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-s88-win-latest-promotions-analysis__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

.page-blog-s88-win-latest-promotions-analysis__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-s88-win-latest-promotions-analysis__card-title {
    color: var(--gold-color);
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-blog-s88-win-latest-promotions-analysis__card-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 100px; /* Ensure consistent card height */
}

.page-blog-s88-win-latest-promotions-analysis__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-s88-win-latest-promotions-analysis__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-s88-win-latest-promotions-analysis__list-item {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-blog-s88-win-latest-promotions-analysis__list-title {
    color: var(--gold-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-blog-s88-win-latest-promotions-analysis__list-description {
    color: var(--text-secondary-color);
    font-size: 1em;
    line-height: 1.6;
}

.page-blog-s88-win-latest-promotions-analysis__bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-blog-s88-win-latest-promotions-analysis__bullet-list .page-blog-s88-win-latest-promotions-analysis__list-item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 10px 0;
    margin-bottom: 10px;
    color: var(--text-secondary-color);
    position: relative;
    padding-left: 30px;
}

.page-blog-s88-win-latest-promotions-analysis__bullet-list .page-blog-s88-win-latest-promotions-analysis__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--glow-color);
    font-size: 1.2em;
    top: 8px;
}

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

.page-blog-s88-win-latest-promotions-analysis__feature-item {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.page-blog-s88-win-latest-promotions-analysis__feature-title {
    color: var(--gold-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-blog-s88-win-latest-promotions-analysis__feature-description {
    color: var(--text-secondary-color);
    font-size: 0.95em;
    line-height: 1.6;
}

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

.page-blog-s88-win-latest-promotions-analysis__faq-item {
    background-color: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-blog-s88-win-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    color: var(--gold-color);
    font-size: 1.1em;
    font-weight: 600;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-s88-win-latest-promotions-analysis__faq-question:hover {
    background-color: rgba(var(--card-bg), 0.8);
}

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

.page-blog-s88-win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

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

.page-blog-s88-win-latest-promotions-analysis__faq-answer {
    padding: 15px 25px 20px;
    color: var(--text-secondary-color);
    font-size: 1em;
    line-height: 1.6;
    background-color: var(--deep-green-color);
}

.page-blog-s88-win-latest-promotions-analysis__dark-section {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.page-blog-s88-win-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-s88-win-latest-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

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

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

    .page-blog-s88-win-latest-promotions-analysis__lead-text {
        font-size: 1em;
    }

    .page-blog-s88-win-latest-promotions-analysis__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-s88-win-latest-promotions-analysis__content-area,
    .page-blog-s88-win-latest-promotions-analysis__section-wrapper,
    .page-blog-s88-win-latest-promotions-analysis__dark-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-s88-win-latest-promotions-analysis__section-title {
        font-size: 1.8em;
    }

    .page-blog-s88-win-latest-promotions-analysis__promo-grid,
    .page-blog-s88-win-latest-promotions-analysis__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-s88-win-latest-promotions-analysis__card-image {
        height: auto;
        min-height: 200px;
    }

    .page-blog-s88-win-latest-promotions-analysis__promo-card,
    .page-blog-s88-win-latest-promotions-analysis__feature-item,
    .page-blog-s88-win-latest-promotions-analysis__list-item,
    .page-blog-s88-win-latest-promotions-analysis__faq-item {
        padding: 15px;
    }

    .page-blog-s88-win-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .page-blog-s88-win-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-s88-win-latest-promotions-analysis video,
    .page-blog-s88-win-latest-promotions-analysis__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-s88-win-latest-promotions-analysis__video-section,
    .page-blog-s88-win-latest-promotions-analysis__video-container,
    .page-blog-s88-win-latest-promotions-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}