/* style/blog-iun88-win-latest-promotions-analysis.css */

/* Biến màu */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-button-color: #EA7C07;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #FFFFFF;
    --background-dark: #26A9E0;
    --border-light: #e0e0e0;
}

/* General page styling */
.page-blog-iun88-win-latest-promotions-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-light);
}

.page-blog-iun88-win-latest-promotions-analysis__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-blog-iun88-win-latest-promotions-analysis__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

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

.page-blog-iun88-win-latest-promotions-analysis__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-iun88-win-latest-promotions-analysis__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
    color: inherit; /* Inherit color from parent section */
}

.page-blog-iun88-win-latest-promotions-analysis__text-block {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Hero Section */
.page-blog-iun88-win-latest-promotions-analysis__hero-section {
    position: relative;
    padding: 0; /* Image will cover */
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-blog-iun88-win-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    order: 1; /* Image appears first */
}

.page-blog-iun88-win-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.page-blog-iun88-win-latest-promotions-analysis__hero-content {
    order: 2; /* Content appears after image */
    padding: 40px 20px;
    position: relative;
    z-index: 10;
    color: var(--text-light);
    background-color: var(--background-dark);
}

.page-blog-iun88-win-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-blog-iun88-win-latest-promotions-analysis__description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

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

.page-blog-iun88-win-latest-promotions-analysis__btn-primary,
.page-blog-iun88-win-latest-promotions-analysis__btn-secondary,
.page-blog-iun88-win-latest-promotions-analysis__btn-step,
.page-blog-iun88-win-latest-promotions-analysis__btn-read-more {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-iun88-win-latest-promotions-analysis__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-blog-iun88-win-latest-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Grid for promotions */
.page-blog-iun88-win-latest-promotions-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-iun88-win-latest-promotions-analysis__card {
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-iun88-win-latest-promotions-analysis__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-blog-iun88-win-latest-promotions-analysis__card-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-iun88-win-latest-promotions-analysis__card-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.page-blog-iun88-win-latest-promotions-analysis__card-link:hover {
    text-decoration: underline;
}

/* Steps Section */
.page-blog-iun88-win-latest-promotions-analysis__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-blog-iun88-win-latest-promotions-analysis__step-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    color: var(--text-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-iun88-win-latest-promotions-analysis__step-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__step-description {
    font-size: 1em;
    margin-bottom: 25px;
    line-height: 1.7;
}

.page-blog-iun88-win-latest-promotions-analysis__btn-step {
    background-color: var(--login-button-color);
    color: var(--text-light);
    border: 2px solid var(--login-button-color);
}

.page-blog-iun88-win-latest-promotions-analysis__btn-step:hover {
    background-color: darken(var(--login-button-color), 10%);
    border-color: darken(var(--login-button-color), 10%);
}

/* Benefits List */
.page-blog-iun88-win-latest-promotions-analysis__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-blog-iun88-win-latest-promotions-analysis__benefit-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-blog-iun88-win-latest-promotions-analysis__benefit-item strong {
    color: var(--primary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Important Notes List */
.page-blog-iun88-win-latest-promotions-analysis__notes-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
    color: var(--text-light);
}

.page-blog-iun88-win-latest-promotions-analysis__note-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-blog-iun88-win-latest-promotions-analysis__note-item strong {
    color: var(--secondary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__btn-centered {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-blog-iun88-win-latest-promotions-analysis__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-blog-iun88-win-latest-promotions-analysis__faq-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-blog-iun88-win-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* For details/summary */
}

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

.page-blog-iun88-win-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    color: var(--primary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-iun88-win-latest-promotions-analysis__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-blog-iun88-win-latest-promotions-analysis__faq-answer p {
    margin: 0;
}

/* Related Articles */
.page-blog-iun88-win-latest-promotions-analysis__related-articles {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-blog-iun88-win-latest-promotions-analysis__article-card {
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-blog-iun88-win-latest-promotions-analysis__article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-iun88-win-latest-promotions-analysis__article-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-blog-iun88-win-latest-promotions-analysis__article-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog-iun88-win-latest-promotions-analysis__article-title a:hover {
    text-decoration: underline;
}

.page-blog-iun88-win-latest-promotions-analysis__article-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.page-blog-iun88-win-latest-promotions-analysis__article-excerpt {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-blog-iun88-win-latest-promotions-analysis__btn-read-more {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    margin-top: auto;
}

.page-blog-iun88-win-latest-promotions-analysis__btn-read-more:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-blog-iun88-win-latest-promotions-analysis__view-all-button {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-iun88-win-latest-promotions-analysis__section-title {
        font-size: 2em;
    }
    .page-blog-iun88-win-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-blog-iun88-win-latest-promotions-analysis__description {
        font-size: 1.1em;
    }
    .page-blog-iun88-win-latest-promotions-analysis__card {
        padding: 25px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__step-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-blog-iun88-win-latest-promotions-analysis__section {
        padding: 40px 0;
    }
    .page-blog-iun88-win-latest-promotions-analysis__hero-content {
        padding: 30px 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__btn-primary,
    .page-blog-iun88-win-latest-promotions-analysis__btn-secondary,
    .page-blog-iun88-win-latest-promotions-analysis__btn-step,
    .page-blog-iun88-win-latest-promotions-analysis__btn-read-more {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__grid,
    .page-blog-iun88-win-latest-promotions-analysis__steps,
    .page-blog-iun88-win-latest-promotions-analysis__article-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__container {
        padding: 0 15px;
    }

    /* Mobile image responsiveness */
    .page-blog-iun88-win-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-iun88-win-latest-promotions-analysis__hero-image-wrapper,
    .page-blog-iun88-win-latest-promotions-analysis__section,
    .page-blog-iun88-win-latest-promotions-analysis__card,
    .page-blog-iun88-win-latest-promotions-analysis__container,
    .page-blog-iun88-win-latest-promotions-analysis__steps,
    .page-blog-iun88-win-latest-promotions-analysis__step-item,
    .page-blog-iun88-win-latest-promotions-analysis__benefits-list,
    .page-blog-iun88-win-latest-promotions-analysis__note-item,
    .page-blog-iun88-win-latest-promotions-analysis__faq-list,
    .page-blog-iun88-win-latest-promotions-analysis__faq-item,
    .page-blog-iun88-win-latest-promotions-analysis__related-articles,
    .page-blog-iun88-win-latest-promotions-analysis__article-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-iun88-win-latest-promotions-analysis__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-blog-iun88-win-latest-promotions-analysis__hero-image {
      min-height: 250px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__card-image,
    .page-blog-iun88-win-latest-promotions-analysis__content-image,
    .page-blog-iun88-win-latest-promotions-analysis__article-image {
      min-width: 200px !important;
      min-height: 200px !important;
    }
}

@media (max-width: 480px) {
    .page-blog-iun88-win-latest-promotions-analysis__section-title {
        font-size: 1.8em;
    }
    .page-blog-iun88-win-latest-promotions-analysis__main-title {
        font-size: clamp(1.4em, 7vw, 2.2em);
    }
    .page-blog-iun88-win-latest-promotions-analysis__card-title,
    .page-blog-iun88-win-latest-promotions-analysis__step-title {
        font-size: 1.3em;
    }
    .page-blog-iun88-win-latest-promotions-analysis__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-blog-iun88-win-latest-promotions-analysis__faq-answer {
        padding: 0 15px 15px 15px;
    }
}

/* Utility to darken color - not standard CSS, assume preprocessor or manual adjustment */
/* @function darken($color, $amount) { @return mix(black, $color, $amount); } */

/* Contrast Fixes (if needed) */
.page-blog-iun88-win-latest-promotions-analysis__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-iun88-win-latest-promotions-analysis__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}