.page-blog-how-to-choose-sc8888-games {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    background-color: #F4F7FB;
    line-height: 1.6;
}

.page-blog-how-to-choose-sc8888-games__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    background-color: #2F6BFF;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-how-to-choose-sc8888-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height to prevent excessively tall hero on desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-how-to-choose-sc8888-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-choose-sc8888-games__hero-content {
    max-width: 900px;
    padding: 0 20px 40px;
    z-index: 1;
    text-align: center;
}

.page-blog-how-to-choose-sc8888-games__main-title {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* Using clamp for H1 font-size to avoid fixed large values */
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-blog-how-to-choose-sc8888-games__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-sc8888-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog-how-to-choose-sc8888-games__section-title {
    color: #2F6BFF;
    font-size: 2.2em;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

.page-blog-how-to-choose-sc8888-games__paragraph {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #1F2D3D;
}

.page-blog-how-to-choose-sc8888-games__list,
.page-blog-how-to-choose-sc8888-games__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-blog-how-to-choose-sc8888-games__ordered-list {
    list-style-type: decimal;
}

.page-blog-how-to-choose-sc8888-games__list-item {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-blog-how-to-choose-sc8888-games__game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-choose-sc8888-games__game-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-blog-how-to-choose-sc8888-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-blog-how-to-choose-sc8888-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-choose-sc8888-games__game-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-blog-how-to-choose-sc8888-games__game-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-how-to-choose-sc8888-games__game-title a:hover {
    color: #2F6BFF;
}

.page-blog-how-to-choose-sc8888-games__game-description {
    font-size: 0.95em;
    color: #1F2D3D;
}

.page-blog-how-to-choose-sc8888-games__content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-choose-sc8888-games__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-blog-how-to-choose-sc8888-games__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-sc8888-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-sc8888-games__hero-content {
        padding: 0 15px 30px;
    }

    .page-blog-how-to-choose-sc8888-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-how-to-choose-sc8888-games__intro-text {
        font-size: 1em;
    }

    .page-blog-how-to-choose-sc8888-games__container {
        padding: 30px 15px;
    }

    .page-blog-how-to-choose-sc8888-games__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-choose-sc8888-games__game-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-choose-sc8888-games__game-image,
    .page-blog-how-to-choose-sc8888-games__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Ensure all images within the content section are responsive and don't overflow */
    .page-blog-how-to-choose-sc8888-games img {
        max-width: 100%;
        height: auto;
    }
}