/* General Styling for blog-understanding-jili100-bonuses page */
.page-blog-understanding-jili100-bonuses {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Hero Section */
.page-blog-understanding-jili100-bonuses__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Minimal top padding, relying on body for header offset */
}

.page-blog-understanding-jili100-bonuses__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-understanding-jili100-bonuses__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-understanding-jili100-bonuses__main-title {
    font-size: clamp(2em, 4vw, 3em);
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-understanding-jili100-bonuses__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E5E5E5;
}

.page-blog-understanding-jili100-bonuses__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-understanding-jili100-bonuses__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    text-align: center;
}

.page-blog-understanding-jili100-bonuses__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.page-blog-understanding-jili100-bonuses__cta-button--secondary {
    background: none;
    border: 2px solid #F2C14E;
    color: #F2C14E;
    box-shadow: none;
}

.page-blog-understanding-jili100-bonuses__cta-button--secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    color: #FFD36B;
}

/* Content Section */
.page-blog-understanding-jili100-bonuses__content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-blog-understanding-jili100-bonuses__section-title {
    font-size: 2.2em;
    color: #F2C14E;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.page-blog-understanding-jili100-bonuses__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD36B;
    margin: 10px auto 0;
}

.page-blog-understanding-jili100-bonuses__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #E5E5E5;
}

/* Grid Container for Bonus Types */
.page-blog-understanding-jili100-bonuses__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-understanding-jili100-bonuses__card {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-understanding-jili100-bonuses__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-blog-understanding-jili100-bonuses__card-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-understanding-jili100-bonuses__card-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-blog-understanding-jili100-bonuses__card-text {
    font-size: 0.95em;
    color: #CCC;
}

/* Lists */
.page-blog-understanding-jili100-bonuses__ordered-list,
.page-blog-understanding-jili100-bonuses__unordered-list {
    margin: 20px 0;
    padding-left: 25px;
    color: #E5E5E5;
}

.page-blog-understanding-jili100-bonuses__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-blog-understanding-jili100-bonuses__list-item strong {
    color: #F2C14E;
}

/* Tips Grid */
.page-blog-understanding-jili100-bonuses__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-understanding-jili100-bonuses__tip-item {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease;
}

.page-blog-understanding-jili100-bonuses__tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-understanding-jili100-bonuses__tip-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #F2C14E;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-understanding-jili100-bonuses__tip-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-blog-understanding-jili100-bonuses__tip-text {
    font-size: 0.95em;
    color: #CCC;
}

/* Final CTA */
.page-blog-understanding-jili100-bonuses__final-cta {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-blog-understanding-jili100-bonuses__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* FAQ Section */
.page-blog-understanding-jili100-bonuses__faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-blog-understanding-jili100-bonuses__faq-item {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
}

.page-blog-understanding-jili100-bonuses__faq-question {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-blog-understanding-jili100-bonuses__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
    padding-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-understanding-jili100-bonuses__hero-content {
        padding: 15px;
    }

    .page-blog-understanding-jili100-bonuses__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-understanding-jili100-bonuses__intro-text {
        font-size: 1em;
    }

    .page-blog-understanding-jili100-bonuses__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-understanding-jili100-bonuses__cta-button {
        width: 100%;
        max-width: 250px;
    }

    .page-blog-understanding-jili100-bonuses__section-title {
        font-size: 1.8em;
    }

    .page-blog-understanding-jili100-bonuses__grid-container,
    .page-blog-understanding-jili100-bonuses__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-understanding-jili100-bonuses__card-image,
    .page-blog-understanding-jili100-bonuses__tip-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-blog-understanding-jili100-bonuses__content-section,
    .page-blog-understanding-jili100-bonuses__faq-section {
        padding: 0 15px;
    }

    .page-blog-understanding-jili100-bonuses__faq-question {
        font-size: 1.1em;
    }

    /* Mobile content images safety net */
    .page-blog-understanding-jili100-bonuses img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule to ensure content images are not shrunk below 200px in content area */
    .page-blog-understanding-jili100-bonuses__content-section img,
    .page-blog-understanding-jili100-bonuses__faq-section img {
        min-width: 200px;
        min-height: 200px;
    }
    /* Override for images that might be smaller by design but are in content */
    .page-blog-understanding-jili100-bonuses__tip-image {
        width: 200px; /* Explicitly set to min allowed size for small images */
        height: 150px;
    }
}

/* Ensure content images are not below 200px on larger screens either */
.page-blog-understanding-jili100-bonuses__card-image,
.page-blog-understanding-jili100-bonuses__tip-image {
    min-width: 200px;
    min-height: 200px;
}