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

.page-blog-w88yes-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Light text for dark body background */
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-blog-w88yes-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-w88yes-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic */
}

.page-blog-w88yes-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background: rgba(17, 40, 27, 0.8); /* Semi-transparent dark green */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%); /* Pull up over the image */
    margin-bottom: -50%; /* Adjust margin to prevent extra space */
}

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

.page-blog-w88yes-latest-promotions-analysis__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-w88yes-latest-promotions-analysis__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-w88yes-latest-promotions-analysis__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-blog-w88yes-latest-promotions-analysis__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-w88yes-latest-promotions-analysis__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

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

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

.page-blog-w88yes-latest-promotions-analysis__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

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

.page-blog-w88yes-latest-promotions-analysis__card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-blog-w88yes-latest-promotions-analysis__card-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-w88yes-latest-promotions-analysis__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-w88yes-latest-promotions-analysis__promo-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-w88yes-latest-promotions-analysis__item-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-blog-w88yes-latest-promotions-analysis__item-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--deep-green);
}

.page-blog-w88yes-latest-promotions-analysis__item-description {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-blog-w88yes-latest-promotions-analysis__item-subtitle {
    font-size: 1.3rem;
    color: var(--gold-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-blog-w88yes-latest-promotions-analysis__item-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-blog-w88yes-latest-promotions-analysis__item-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.page-blog-w88yes-latest-promotions-analysis__step-list {
    list-style-type: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-blog-w88yes-latest-promotions-analysis__step-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 1rem;
    color: var(--text-main);
}

.page-blog-w88yes-latest-promotions-analysis__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--text-main);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.page-blog-w88yes-latest-promotions-analysis__step-title {
    color: var(--gold-color);
    margin-bottom: 5px;
    display: block;
}

.page-blog-w88yes-latest-promotions-analysis__how-to-claim-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    border: 1px solid var(--deep-green);
}

.page-blog-w88yes-latest-promotions-analysis__last-updated {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

.page-blog-w88yes-latest-promotions-analysis__tips-list {
    list-style-type: none;
    padding: 0;
}

.page-blog-w88yes-latest-promotions-analysis__tips-list li {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-w88yes-latest-promotions-analysis__tip-item-title {
    color: var(--gold-color);
    margin-bottom: 5px;
    display: inline;
}

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

.page-blog-w88yes-latest-promotions-analysis__faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-blog-w88yes-latest-promotions-analysis__faq-item[open] > .page-blog-w88yes-latest-promotions-analysis__faq-question {
    background: var(--primary-color);
    color: var(--text-main);
}

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

.page-blog-w88yes-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
}

.page-blog-w88yes-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-w88yes-latest-promotions-analysis__faq-item[open] .page-blog-w88yes-latest-promotions-analysis__faq-toggle {
    color: var(--text-main);
}

.page-blog-w88yes-latest-promotions-analysis__faq-answer {
    padding: 15px 25px 20px;
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid var(--divider-color);
}

.page-blog-w88yes-latest-promotions-analysis__faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

.page-blog-w88yes-latest-promotions-analysis__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

.page-blog-w88yes-latest-promotions-analysis__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-w88yes-latest-promotions-analysis__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-w88yes-latest-promotions-analysis__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-blog-w88yes-latest-promotions-analysis__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.4);
}

.page-blog-w88yes-latest-promotions-analysis a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-w88yes-latest-promotions-analysis a:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

/* --- Responsive Design --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .page-blog-w88yes-latest-promotions-analysis__hero-content {
        max-width: 700px;
        transform: translateY(-30%);
        margin-bottom: -30%;
    }

    .page-blog-w88yes-latest-promotions-analysis__main-title {
        font-size: 2.8rem;
    }

    .page-blog-w88yes-latest-promotions-analysis__hero-description {
        font-size: 1rem;
    }

    .page-blog-w88yes-latest-promotions-analysis__section {
        margin: 30px auto;
        padding: 15px;
    }

    .page-blog-w88yes-latest-promotions-analysis__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-blog-w88yes-latest-promotions-analysis__card-title {
        font-size: 1.3rem;
    }

    .page-blog-w88yes-latest-promotions-analysis__item-title {
        font-size: 1.5rem;
    }

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

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

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

    .page-blog-w88yes-latest-promotions-analysis__hero-content {
        max-width: 95%;
        padding: 15px;
        transform: translateY(-20%);
        margin-bottom: -20%;
    }

    .page-blog-w88yes-latest-promotions-analysis__main-title {
        font-size: 2rem !important;
    }

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

    .page-blog-w88yes-latest-promotions-analysis__cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100% !important; /* Ensure buttons adapt to screen width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-w88yes-latest-promotions-analysis__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent overflow */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-w88yes-latest-promotions-analysis__section {
        padding: 15px;
        margin: 20px auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-w88yes-latest-promotions-analysis__section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .page-blog-w88yes-latest-promotions-analysis__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-w88yes-latest-promotions-analysis__promo-card {
        padding: 20px;
    }

    .page-blog-w88yes-latest-promotions-analysis__card-image {
        height: 180px;
    }

    .page-blog-w88yes-latest-promotions-analysis__item-title {
        font-size: 1.3rem;
    }

    .page-blog-w88yes-latest-promotions-analysis__item-image,
    .page-blog-w88yes-latest-promotions-analysis__how-to-claim-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

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

    .page-blog-w88yes-latest-promotions-analysis__faq-question {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    .page-blog-w88yes-latest-promotions-analysis__faq-answer {
        padding: 10px 15px 12px;
    }

    .page-blog-w88yes-latest-promotions-analysis__faq-toggle {
        font-size: 1.3rem;
    }

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

/* General image responsiveness for all images in content area */
.page-blog-w88yes-latest-promotions-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-w88yes-latest-promotions-analysis__video-section,
.page-blog-w88yes-latest-promotions-analysis__video-container,
.page-blog-w88yes-latest-promotions-analysis__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-w88yes-latest-promotions-analysis__cta-button,
.page-blog-w88yes-latest-promotions-analysis__btn-primary,
.page-blog-w88yes-latest-promotions-analysis__btn-secondary,
.page-blog-w88yes-latest-promotions-analysis a[class*="button"],
.page-blog-w88yes-latest-promotions-analysis a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-w88yes-latest-promotions-analysis__cta-buttons,
.page-blog-w88yes-latest-promotions-analysis__button-group,
.page-blog-w88yes-latest-promotions-analysis__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}