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

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

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

.page-blog-kk777x-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--kk777x-background);
}

.page-blog-kk777x-latest-promotions-analysis__hero-image {
    width: 100%;
    max-height: 675px;
    object-fit: cover;
    display: block;
}

.page-blog-kk777x-latest-promotions-analysis__hero-content {
    position: relative; /* Not absolute, to ensure image-above-text */
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly with image for visual flow */
    background: var(--kk777x-card-bg);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    box-sizing: border-box;
    border: 1px solid var(--kk777x-border);
}

.page-blog-kk777x-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--kk777x-gold);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-blog-kk777x-latest-promotions-analysis__btn-primary {
    background: var(--kk777x-button-gradient);
    color: var(--kk777x-text-main);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog-kk777x-latest-promotions-analysis__section {
    padding: 60px 0;
    background-color: var(--kk777x-background);
}

.page-blog-kk777x-latest-promotions-analysis__section-title {
    font-size: 2.5em;
    color: var(--kk777x-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-blog-kk777x-latest-promotions-analysis__sub-title {
    font-size: 1.8em;
    color: var(--kk777x-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--kk777x-gold);
    padding-left: 15px;
}

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

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

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

.page-blog-kk777x-latest-promotions-analysis__card:hover {
    transform: translateY(-5px);
}

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

.page-blog-kk777x-latest-promotions-analysis__card-title {
    font-size: 1.4em;
    color: var(--kk777x-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-blog-kk777x-latest-promotions-analysis__btn-secondary {
    background: none;
    color: var(--kk777x-primary-color);
    padding: 10px 20px;
    border: 2px solid var(--kk777x-primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Push button to bottom */
}

.page-blog-kk777x-latest-promotions-analysis__btn-secondary:hover {
    background-color: var(--kk777x-primary-color);
    color: var(--kk777x-text-main);
}

.page-blog-kk777x-latest-promotions-analysis__faq-section {
    background-color: var(--kk777x-deep-green);
    padding: 60px 0;
}

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

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

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

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

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

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

.page-blog-kk777x-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: var(--kk777x-text-secondary);
    line-height: 1.6;
}

.page-blog-kk777x-latest-promotions-analysis__conclusion .page-blog-kk777x-latest-promotions-analysis__cta-button {
    margin-top: 30px;
    font-size: 1.2em;
    padding: 18px 35px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-kk777x-latest-promotions-analysis__hero-content {
        margin-top: -60px;
        padding: 30px 15px;
    }

    .page-blog-kk777x-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }

    .page-blog-kk777x-latest-promotions-analysis__section-title {
        font-size: 2em;
    }

    .page-blog-kk777x-latest-promotions-analysis__sub-title {
        font-size: 1.6em;
    }

    .page-blog-kk777x-latest-promotions-analysis__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    .page-blog-kk777x-latest-promotions-analysis__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
    }

    .page-blog-kk777x-latest-promotions-analysis__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }

    .page-blog-kk777x-latest-promotions-analysis__description {
        font-size: 1em;
    }

    .page-blog-kk777x-latest-promotions-analysis__btn-primary,
    .page-blog-kk777x-latest-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        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-kk777x-latest-promotions-analysis__hero-section,
    .page-blog-kk777x-latest-promotions-analysis__section,
    .page-blog-kk777x-latest-promotions-analysis__container,
    .page-blog-kk777x-latest-promotions-analysis__card,
    .page-blog-kk777x-latest-promotions-analysis__cta-buttons,
    .page-blog-kk777x-latest-promotions-analysis__button-group,
    .page-blog-kk777x-latest-promotions-analysis__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-kk777x-latest-promotions-analysis__hero-image,
    .page-blog-kk777x-latest-promotions-analysis__card-image,
    .page-blog-kk777x-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-kk777x-latest-promotions-analysis__card-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-blog-kk777x-latest-promotions-analysis__faq-answer {
        font-size: 1em;
        padding: 0 20px 15px;
    }

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

/* Ensure minimum image size for content area */
.page-blog-kk777x-latest-promotions-analysis__section img {
    min-width: 200px;
    min-height: 200px;
}

/* No filter on images */
.page-blog-kk777x-latest-promotions-analysis img {
    filter: none;
}