.page-blog-13win21-win-popular-games-guide {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the main content */
}

.page-blog-13win21-win-popular-games-guide__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Primary color as fallback */
    padding-bottom: 40px; /* Space below content */
}

.page-blog-13win21-win-popular-games-guide__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-13win21-win-popular-games-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-13win21-win-popular-games-guide__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #FFFFFF; /* White text on blue background */
}

.page-blog-13win21-win-popular-games-guide__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-13win21-win-popular-games-guide__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-13win21-win-popular-games-guide__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure buttons are not small */
    min-height: 48px; /* Ensure buttons are not small */
}

.page-blog-13win21-win-popular-games-guide__cta-button:hover {
    opacity: 0.9;
}

.page-blog-13win21-win-popular-games-guide__content-section {
    padding: 40px 0;
}

.page-blog-13win21-win-popular-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-13win21-win-popular-games-guide__section-title {
    font-size: 2em;
    color: #1F2D3D; /* Text Main */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-13win21-win-popular-games-guide__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    color: #1F2D3D; /* Text Main */
}

.page-blog-13win21-win-popular-games-guide__guide-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-13win21-win-popular-games-guide__guide-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #D6E2FF; /* Border */
}

.page-blog-13win21-win-popular-games-guide__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-blog-13win21-win-popular-games-guide__guide-card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-13win21-win-popular-games-guide__guide-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-13win21-win-popular-games-guide__guide-card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-13win21-win-popular-games-guide__guide-card-title a {
    color: #1F2D3D; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-13win21-win-popular-games-guide__guide-card-title a:hover {
    color: #2F6BFF; /* Primary color on hover */
}

.page-blog-13win21-win-popular-games-guide__guide-card-text {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog-13win21-win-popular-games-guide__guide-card-link {
    display: inline-block;
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom */
}

.page-blog-13win21-win-popular-games-guide__guide-card-link:hover {
    text-decoration: underline;
}

.page-blog-13win21-win-popular-games-guide__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-13win21-win-popular-games-guide__benefits-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-blog-13win21-win-popular-games-guide__benefits-item-title {
    font-size: 1.25em;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-13win21-win-popular-games-guide__benefits-item-text {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

.page-blog-13win21-win-popular-games-guide__faq-list {
    margin-top: 30px;
}

.page-blog-13win21-win-popular-games-guide__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-blog-13win21-win-popular-games-guide__faq-question {
    font-size: 1.15em;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-blog-13win21-win-popular-games-guide__faq-answer {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    display: block; /* Ensure it's visible by default for now, can be toggled by JS later */
}

.page-blog-13win21-win-popular-games-guide__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #6FA3FF; /* Auxiliary color */
    border-radius: 12px;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-13win21-win-popular-games-guide__cta-text {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-13win21-win-popular-games-guide__hero-content {
        padding: 15px;
    }

    .page-blog-13win21-win-popular-games-guide__main-title {
        font-size: 1.8em; /* Adjusted for mobile, still avoiding fixed rem/em */
    }

    .page-blog-13win21-win-popular-games-guide__description {
        font-size: 1em;
    }

    .page-blog-13win21-win-popular-games-guide__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-blog-13win21-win-popular-games-guide__section-title {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-13win21-win-popular-games-guide__guide-card-list {
        grid-template-columns: 1fr;
    }

    .page-blog-13win21-win-popular-games-guide__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-blog-13win21-win-popular-games-guide__cta-bottom {
        padding: 20px;
    }

    .page-blog-13win21-win-popular-games-guide__cta-text {
        font-size: 1.2em;
    }

    /* Mobile image overflow prevention */
    .page-blog-13win21-win-popular-games-guide img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images maintain minimum size or scale down responsively but not below 200px */
.page-blog-13win21-win-popular-games-guide__content-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}