.page-blog-latest-promotions-guide {
    color: var(--text-main-color, #F2FFF6); /* Default text color for the page */
    background-color: var(--background-color, #08160F); /* Assume dark background from shared */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-blog-latest-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 60px; /* Spacing below content */
    padding-top: 10px; /* Small top padding */
    background-color: var(--background-color, #08160F); /* Ensure consistent background */
}

.page-blog-latest-promotions-guide__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-blog-latest-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure hero image is not too small */
}

.page-blog-latest-promotions-guide__hero-content {
    max-width: 900px;
    padding: 30px 20px;
    box-sizing: border-box;
    color: var(--text-main-color, #F2FFF6); /* Light text on dark hero */
}

.page-blog-latest-promotions-guide__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main-color, #F2FFF6);
    letter-spacing: 0.05em;
}

.page-blog-latest-promotions-guide__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-latest-promotions-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
}

.page-blog-latest-promotions-guide__btn-primary,
.page-blog-latest-promotions-guide__btn-secondary,
.page-blog-latest-promotions-guide__promo-btn,
.page-blog-latest-promotions-guide__game-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
    text-align: center;
}

.page-blog-latest-promotions-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

.page-blog-latest-promotions-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-guide__btn-secondary {
    background: transparent;
    color: var(--primary-color, #11A84E);
    border: 2px solid var(--primary-color, #11A84E);
}

.page-blog-latest-promotions-guide__btn-secondary:hover {
    background-color: var(--primary-color, #11A84E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-guide__section {
    padding: 60px 0;
    background-color: var(--background-color, #08160F); /* Default dark background */
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-latest-promotions-guide__introduction,
.page-blog-latest-promotions-guide__registration-guide,
.page-blog-latest-promotions-guide__payment-methods,
.page-blog-latest-promotions-guide__customer-support,
.page-blog-latest-promotions-guide__overall-review,
.page-blog-latest-promotions-guide__conclusion {
    background-color: var(--background-color, #08160F);
}

.page-blog-latest-promotions-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main-color, #F2FFF6);
    position: relative;
    padding-bottom: 15px;
}

.page-blog-latest-promotions-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
    border-radius: 2px;
}

.page-blog-latest-promotions-guide__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-latest-promotions-guide__text-block {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-latest-promotions-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Promotions Section */
.page-blog-latest-promotions-guide__promotions-grid,
.page-blog-latest-promotions-guide__guide-steps,
.page-blog-latest-promotions-guide__game-grid,
.page-blog-latest-promotions-guide__payment-grid,
.page-blog-latest-promotions-guide__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-latest-promotions-guide__promo-card,
.page-blog-latest-promotions-guide__step-card,
.page-blog-latest-promotions-guide__game-card,
.page-blog-latest-promotions-guide__payment-card,
.page-blog-latest-promotions-guide__support-card {
    background-color: var(--card-bg-color, #11271B); /* Card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: var(--text-main-color, #F2FFF6);
    border: 1px solid var(--border-color, #2E7A4E);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-guide__promo-card:hover,
.page-blog-latest-promotions-guide__step-card:hover,
.page-blog-latest-promotions-guide__game-card:hover,
.page-blog-latest-promotions-guide__payment-card:hover,
.page-blog-latest-promotions-guide__support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-guide__promo-image,
.page-blog-latest-promotions-guide__step-image,
.page-blog-latest-promotions-guide__game-image,
.page-blog-latest-promotions-guide__payment-image,
.page-blog-latest-promotions-guide__support-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-latest-promotions-guide__promo-title,
.page-blog-latest-promotions-guide__step-title,
.page-blog-latest-promotions-guide__game-title,
.page-blog-latest-promotions-guide__payment-title,
.page-blog-latest-promotions-guide__support-title {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 20px 10px;
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-latest-promotions-guide__promo-description,
.page-blog-latest-promotions-guide__step-description,
.page-blog-latest-promotions-guide__game-description,
.page-blog-latest-promotions-guide__payment-description,
.page-blog-latest-promotions-guide__support-description {
    font-size: 0.95rem;
    padding: 0 20px 15px;
    flex-grow: 1; /* Make description take available space */
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-latest-promotions-guide__promo-btn,
.page-blog-latest-promotions-guide__game-btn {
    margin: 0 20px 20px;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    align-self: center; /* Center button in flex column */
    width: calc(100% - 40px); /* Adjust width for padding */
}

.page-blog-latest-promotions-guide__promo-btn:hover,
.page-blog-latest-promotions-guide__game-btn:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-1px);
}

/* Feature List */
.page-blog-latest-promotions-guide__feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.page-blog-latest-promotions-guide__feature-list li {
    background-color: var(--card-bg-color, #11271B);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--border-color, #2E7A4E);
    color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-latest-promotions-guide__feature-list li strong {
    color: var(--text-main-color, #F2FFF6);
    margin-right: 10px;
}

/* FAQ Section */
.page-blog-latest-promotions-guide__faq-section {
    background-color: var(--background-color, #08160F);
}

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

.page-blog-latest-promotions-guide__faq-item {
    background-color: var(--card-bg-color, #11271B);
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color, #F2FFF6);
}

.page-blog-latest-promotions-guide__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main-color, #F2FFF6);
    background-color: var(--deep-green-color, #0A4B2C); /* Slightly darker for summary */
    transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-guide__faq-item summary:hover {
    background-color: var(--primary-color, #11A84E);
}

.page-blog-latest-promotions-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

.page-blog-latest-promotions-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 10px;
    color: var(--gold-color, #F2C14E);
}

.page-blog-latest-promotions-guide__faq-answer {
    padding: 15px 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color, #A7D9B8);
    border-top: 1px solid var(--divider-color, #1E3A2A);
}
.page-blog-latest-promotions-guide__faq-answer p {
    margin: 0;
}


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

    .page-blog-latest-promotions-guide__container {
        padding: 15px;
    }

    .page-blog-latest-promotions-guide__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* Small top padding */
    }

    .page-blog-latest-promotions-guide__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-latest-promotions-guide__subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
    }

    .page-blog-latest-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-latest-promotions-guide__btn-primary,
    .page-blog-latest-promotions-guide__btn-secondary,
    .page-blog-latest-promotions-guide a[class*="button"],
    .page-blog-latest-promotions-guide a[class*="btn"] {
        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-latest-promotions-guide__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .page-blog-latest-promotions-guide__promotions-grid,
    .page-blog-latest-promotions-guide__guide-steps,
    .page-blog-latest-promotions-guide__game-grid,
    .page-blog-latest-promotions-guide__payment-grid,
    .page-blog-latest-promotions-guide__support-channels {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-blog-latest-promotions-guide__promo-image,
    .page-blog-latest-promotions-guide__step-image,
    .page-blog-latest-promotions-guide__game-image,
    .page-blog-latest-promotions-guide__payment-image,
    .page-blog-latest-promotions-guide__support-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 180px; /* Adjust min height for mobile */
    }

    .page-blog-latest-promotions-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-latest-promotions-guide__section,
    .page-blog-latest-promotions-guide__card,
    .page-blog-latest-promotions-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-latest-promotions-guide__promo-card,
    .page-blog-latest-promotions-guide__step-card,
    .page-blog-latest-promotions-guide__game-card,
    .page-blog-latest-promotions-guide__payment-card,
    .page-blog-latest-promotions-guide__support-card {
        padding-bottom: 15px;
    }
    
    .page-blog-latest-promotions-guide__promo-btn,
    .page-blog-latest-promotions-guide__game-btn {
        width: calc(100% - 40px) !important;
        margin: 0 20px 15px;
    }

    .page-blog-latest-promotions-guide__feature-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }

    .page-blog-latest-promotions-guide__feature-list li strong {
        margin-bottom: 5px;
    }

    .page-blog-latest-promotions-guide__faq-item summary {
        padding: 15px 18px;
        font-size: 1rem;
    }

    .page-blog-latest-promotions-guide__faq-answer {
        padding: 12px 18px 15px;
    }
}

/* Color Contrast Enforcement - Based on assumed dark body background */
/* Assuming --background-color is dark like #08160F */
.page-blog-latest-promotions-guide {
  color: var(--text-main-color, #F2FFF6); /* Light text on dark background */
}

.page-blog-latest-promotions-guide__card,
.page-blog-latest-promotions-guide__promo-card,
.page-blog-latest-promotions-guide__step-card,
.page-blog-latest-promotions-guide__game-card,
.page-blog-latest-promotions-guide__payment-card,
.page-blog-latest-promotions-guide__support-card,
.page-blog-latest-promotions-guide__faq-item {
  background-color: var(--card-bg-color, #11271B); /* Darker card background */
  color: var(--text-main-color, #F2FFF6); /* Light text on card */
}

.page-blog-latest-promotions-guide p,
.page-blog-latest-promotions-guide li {
  color: var(--text-secondary-color, #A7D9B8); /* Secondary text color for paragraphs and lists */
}

.page-blog-latest-promotions-guide__main-title,
.page-blog-latest-promotions-guide__section-title,
.page-blog-latest-promotions-guide__sub-title,
.page-blog-latest-promotions-guide__promo-title,
.page-blog-latest-promotions-guide__step-title,
.page-blog-latest-promotions-guide__game-title,
.page-blog-latest-promotions-guide__payment-title,
.page-blog-latest-promotions-guide__support-title,
.page-blog-latest-promotions-guide__faq-item summary {
    color: var(--text-main-color, #F2FFF6); /* Ensure titles are light */
}

.page-blog-latest-promotions-guide__faq-item summary {
    background-color: var(--deep-green-color, #0A4B2C); /* Dark green for summary */
}

.page-blog-latest-promotions-guide__faq-toggle {
    color: var(--gold-color, #F2C14E); /* Gold for toggle icon */
}

.page-blog-latest-promotions-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff; /* White text on green button */
}

.page-blog-latest-promotions-guide__btn-secondary {
    background: transparent;
    color: var(--primary-color, #11A84E); /* Green text on transparent/dark background */
    border: 2px solid var(--primary-color, #11A84E);
}

/* Ensure no CSS filter is used for images */
.page-blog-latest-promotions-guide img {
    filter: none !important; /* Explicitly remove any potential filters */
}