.page-blog-good88-beginner-guide {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-blog-good88-beginner-guide__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per instruction */
    margin-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Use primary/secondary for background glow */
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center;
}

.page-blog-good88-beginner-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image wrapper */
    overflow: hidden;
}

.page-blog-good88-beginner-guide__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-good88-beginner-guide__hero-content {
    text-align: center;
    padding: 30px 20px 40px;
    max-width: 900px;
    color: #FFFFFF; /* Text on blue background */
    z-index: 1; /* Ensure text is above any subtle background elements if any */
}

.page-blog-good88-beginner-guide__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* Use clamp for font-size to control size across devices */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp for H1 */
}

.page-blog-good88-beginner-guide__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0EFFF; /* Lighter text for description */
}

.page-blog-good88-beginner-guide__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-good88-beginner-guide__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-good88-beginner-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 20px;
}

.page-blog-good88-beginner-guide__content-section {
    padding: 0 20px;
}

.page-blog-good88-beginner-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-blog-good88-beginner-guide__section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D6E2FF; /* Border color */
    padding-bottom: 10px;
}

.page-blog-good88-beginner-guide__section-title:first-of-type {
    margin-top: 0;
}

.page-blog-good88-beginner-guide__text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-blog-good88-beginner-guide__text--note {
    font-style: italic;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-blog-good88-beginner-guide__step-list,
.page-blog-good88-beginner-guide__feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.page-blog-good88-beginner-guide__step-item,
.page-blog-good88-beginner-guide__feature-item {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.page-blog-good88-beginner-guide__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.page-blog-good88-beginner-guide__feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2F6BFF; /* Primary color */
    font-weight: bold;
    font-size: 1.2rem;
}

.page-blog-good88-beginner-guide__step-list {
    counter-reset: step-counter;
}

.page-blog-good88-beginner-guide__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-good88-beginner-guide__game-card {
    background-color: #F4F7FB; /* Use background color for card inner */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Ensure card has minimum height */
}

.page-blog-good88-beginner-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-good88-beginner-guide__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-blog-good88-beginner-guide__game-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2F6BFF; /* Primary color for titles */
    padding: 15px 20px 10px;
    margin: 0;
}

.page-blog-good88-beginner-guide__game-card-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 15px;
    flex-grow: 1; /* Push link to bottom */
}

.page-blog-good88-beginner-guide__game-card-link {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #6FA3FF; /* Secondary color for links */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push to bottom */
}

.page-blog-good88-beginner-guide__game-card-link:hover {
    background-color: #2F6BFF; /* Primary color on hover */
}

.page-blog-good88-beginner-guide__faq {
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-good88-beginner-guide__faq-item {
    background-color: #F4F7FB; /* Background color for FAQ item */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #D6E2FF; /* Border color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-good88-beginner-guide__faq-question {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2F6BFF; /* Primary color for questions */
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate interactivity */
}

.page-blog-good88-beginner-guide__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 0;
    /* For JS to toggle display */
    display: block; 
}

.page-blog-good88-beginner-guide__last-updated {
    text-align: right;
    font-size: 0.9rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 50px;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-blog-good88-beginner-guide__container {
        padding: 30px;
    }
    .page-blog-good88-beginner-guide__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-good88-beginner-guide__section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-blog-good88-beginner-guide__hero-section {
        margin-bottom: 30px;
    }
    .page-blog-good88-beginner-guide__hero-content {
        padding: 20px 15px 30px;
    }
    .page-blog-good88-beginner-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-good88-beginner-guide__description {
        font-size: 1rem;
    }
    .page-blog-good88-beginner-guide__cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .page-blog-good88-beginner-guide__container {
        padding: 20px;
    }
    .page-blog-good88-beginner-guide__section-title {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-blog-good88-beginner-guide__game-categories {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-blog-good88-beginner-guide__game-card {
        min-height: auto; /* Allow height to adjust */
    }

    /* Mobile overflow prevention */
    .page-blog-good88-beginner-guide__hero-image,
    .page-blog-good88-beginner-guide__game-card-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-good88-beginner-guide__container {
        border-radius: 0; /* No radius on small screens for full width look */
        padding: 15px;
    }
    .page-blog-good88-beginner-guide__hero-section {
        padding-top: 5px; /* Even smaller top padding */
    }
    .page-blog-good88-beginner-guide__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-good88-beginner-guide__text,
    .page-blog-good88-beginner-guide__step-item,
    .page-blog-good88-beginner-guide__feature-item,
    .page-blog-good88-beginner-guide__faq-question,
    .page-blog-good88-beginner-guide__faq-answer {
        font-size: 0.95rem;
    }
}