.page-blog-f8bet9-new-era {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for internal pages, body handles header offset */
}

.page-blog-f8bet9-new-era__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-f8bet9-new-era__hero-section {
    background-color: #2F6BFF; /* Main color as background */
    padding: 0; /* No padding here, content inside has padding */
    display: flex;
    flex-direction: column; /* Ensure image above text on mobile first */
    align-items: center;
    text-align: center;
}

.page-blog-f8bet9-new-era__hero-visual {
    width: 100%;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-f8bet9-new-era__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Example aspect ratio */
}

.page-blog-f8bet9-new-era__hero-content {
    padding: 40px 20px;
    color: #FFFFFF;
    max-width: 900px;
}

.page-blog-f8bet9-new-era__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* font-size will be handled by body or clamp if absolutely necessary for h1, but not fixed here */
}

.page-blog-f8bet9-new-era__description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-blog-f8bet9-new-era__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Ensure sufficient touch target */
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-blog-f8bet9-new-era__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* General Sections */
.page-blog-f8bet9-new-era__introduction-section,
.page-blog-f8bet9-new-era__features-section,
.page-blog-f8bet9-new-era__how-to-join-section,
.page-blog-f8bet9-new-era__cta-section {
    padding: 60px 0;
}

.page-blog-f8bet9-new-era__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
    text-align: center;
}

.page-blog-f8bet9-new-era__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

/* Features Section */
.page-blog-f8bet9-new-era__features-section {
    background-color: #FFFFFF; /* Card BG */
}

.page-blog-f8bet9-new-era__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-f8bet9-new-era__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-blog-f8bet9-new-era__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-f8bet9-new-era__feature-icon {
    width: clamp(200px, 50%, 400px); /* Example clamp for content image width */
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 5px;
    object-fit: cover;
}

.page-blog-f8bet9-new-era__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-blog-f8bet9-new-era__feature-description {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

/* How to Join Section */
.page-blog-f8bet9-new-era__how-to-join-section {
    background-color: #F4F7FB; /* Background */
}

.page-blog-f8bet9-new-era__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-f8bet9-new-era__step-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-f8bet9-new-era__step-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
}

.page-blog-f8bet9-new-era__step-description {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

.page-blog-f8bet9-new-era__cta-button--bottom {
    margin-top: 40px;
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.page-blog-f8bet9-new-era__cta-section {
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-blog-f8bet9-new-era__section-title--centered,
.page-blog-f8bet9-new-era__text-block--centered {
    color: #FFFFFF;
}

.page-blog-f8bet9-new-era__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-f8bet9-new-era__cta-button--secondary {
    background: none;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.page-blog-f8bet9-new-era__cta-button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (min-width: 850px) {
    .page-blog-f8bet9-new-era__hero-section {
        flex-direction: row; /* Image and content side-by-side on desktop */
        text-align: left;
        padding: 0;
        align-items: stretch;
    }

    .page-blog-f8bet9-new-era__hero-visual {
        flex: 1;
        max-width: 60%; /* Image takes more space */
    }
    
    .page-blog-f8bet9-new-era__hero-image {
        height: 100%; /* Fill container height */
        aspect-ratio: unset; /* Let height control aspect ratio */
    }

    .page-blog-f8bet9-new-era__hero-content {
        flex: 1;
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 40%;
    }

    .page-blog-f8bet9-new-era__main-title {
        font-size: clamp(2em, 4vw, 3em); /* Clamp for h1 */
    }
}

@media (max-width: 768px) {
    .page-blog-f8bet9-new-era__container {
        padding: 15px;
    }

    .page-blog-f8bet9-new-era__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-f8bet9-new-era__features-grid,
    .page-blog-f8bet9-new-era__steps-list {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .page-blog-f8bet9-new-era__hero-image,
    .page-blog-f8bet9-new-era__feature-icon {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-blog-f8bet9-new-era__hero-content {
        padding: 30px 15px;
    }

    .page-blog-f8bet9-new-era__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Clamp for h1 on mobile */
    }

    .page-blog-f8bet9-new-era__cta-button {
        width: 100%; /* Full width buttons on mobile */
        max-width: 300px; /* Max width for single button */
    }

    .page-blog-f8bet9-new-era__cta-buttons {
        flex-direction: column; /* Stack CTA buttons on mobile */
        gap: 15px;
    }
}

@media (max-width: 549px) {
    .page-blog-f8bet9-new-era__section-title {
        font-size: 1.5em;
    }
    .page-blog-f8bet9-new-era__hero-content {
        padding: 20px 10px;
    }
    .page-blog-f8bet9-new-era__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
}

/* Ensure content area images are not too small */
/* This rule applies to all img elements within the main content area */
.page-blog-f8bet9-new-era img:not(.page-blog-f8bet9-new-era__hero-image) {
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* or cover, depending on desired effect */
}

/* Color contrast check */
/* Background: #F4F7FB (light gray) */
/* Text Main: #1F2D3D (dark gray) */
/* Contrast ratio: (2F6BFF on F4F7FB) is good. (1F2D3D on F4F7FB) is good. (FFFFFF on 2F6BFF) is good. */
/* Hero section text (white) on blue background (#2F6BFF) should have good contrast */
/* CTA section text (white) on gradient background (blue gradient) should have good contrast */
/* Card BG (#FFFFFF) with Text Main (#1F2D3D) and feature title (#2F6BFF) should be good. */