.page-blog-gamebet-platform-review {
    padding-top: 10px; /* Small top padding for main content below header */
    background-color: #100224; /* Deep purple-black background */
    color: #FFFFFF; /* White text for readability */
    font-family: Arial, sans-serif;
}

.page-blog-gamebet-platform-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-gamebet-platform-review__section-title {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem); /* Responsive font size for h2 */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF; /* White for main titles */
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-gamebet-platform-review__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-blog-gamebet-platform-review__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-blog-gamebet-platform-review__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image for text contrast */
    min-height: 300px;
}

.page-blog-gamebet-platform-review__hero-content {
    position: relative; /* Changed to relative to ensure it's below the image */
    z-index: 1;
    text-align: center;
    padding: 20px 20px 0;
    max-width: 900px;
    margin: -80px auto 0; /* Pull content up slightly, but not over image */
    background-color: rgba(1, 116, 57, 0.8); /* Primary color with transparency */
    border-radius: 10px;
    padding: 30px;
}

.page-blog-gamebet-platform-review__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 size */
    font-weight: 700;
    color: #FFFF00; /* Yellow for prominence */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-blog-gamebet-platform-review__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-gamebet-platform-review__hero-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-gamebet-platform-review__hero-button:hover {
    background-color: #a00606;
}

/* Introduction Section */
.page-blog-gamebet-platform-review__introduction-section {
    padding: 60px 0;
    background-color: #017439; /* Primary color background */
    margin-top: 20px;
}

/* Features Section */
.page-blog-gamebet-platform-review__features-section {
    padding: 60px 0;
    background-color: #1a083a; /* Slightly lighter dark background */
}

.page-blog-gamebet-platform-review__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-gamebet-platform-review__feature-card {
    background-color: #017439; /* Primary color for cards */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-blog-gamebet-platform-review__feature-card:hover {
    transform: translateY(-10px);
}

.page-blog-gamebet-platform-review__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
}

.page-blog-gamebet-platform-review__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 15px;
    color: #FFFF00; /* Yellow for card titles */
}

.page-blog-gamebet-platform-review__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-blog-gamebet-platform-review__card-title a:hover {
    text-decoration: underline;
}

.page-blog-gamebet-platform-review__card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
    color: #FFFFFF;
    flex-grow: 1;
}

.page-blog-gamebet-platform-review__card-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.page-blog-gamebet-platform-review__card-button:hover {
    background-color: #a00606;
}

/* Advantages Section */
.page-blog-gamebet-platform-review__advantages-section {
    padding: 60px 0;
    background-color: #100224;
}

.page-blog-gamebet-platform-review__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-blog-gamebet-platform-review__advantage-item {
    background-color: #017439;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-gamebet-platform-review__advantage-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-blog-gamebet-platform-review__advantage-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFF00;
}

.page-blog-gamebet-platform-review__advantage-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFFFFF;
}

/* Guide Section */
.page-blog-gamebet-platform-review__guide-section {
    padding: 60px 0;
    background-color: #1a083a;
}

.page-blog-gamebet-platform-review__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-gamebet-platform-review__step-item {
    background-color: #017439;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-gamebet-platform-review__step-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFF00;
}

.page-blog-gamebet-platform-review__step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFFFFF;
}

.page-blog-gamebet-platform-review__guide-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-blog-gamebet-platform-review__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.page-blog-gamebet-platform-review__button--register,
.page-blog-gamebet-platform-review__button--login {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
}

.page-blog-gamebet-platform-review__button--register:hover,
.page-blog-gamebet-platform-review__button--login:hover {
    background-color: #a00606;
}

/* Conclusion Section */
.page-blog-gamebet-platform-review__conclusion-section {
    padding: 60px 0 80px;
    background-color: #100224;
    text-align: center;
}

.page-blog-gamebet-platform-review__conclusion-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.page-blog-gamebet-platform-review__conclusion-button:hover {
    background-color: #a00606;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-gamebet-platform-review__hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .page-blog-gamebet-platform-review__hero-description {
        font-size: 1rem;
    }

    .page-blog-gamebet-platform-review__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .page-blog-gamebet-platform-review__features-grid,
    .page-blog-gamebet-platform-review__advantages-grid,
    .page-blog-gamebet-platform-review__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-blog-gamebet-platform-review__feature-image {
        height: 180px;
    }

    .page-blog-gamebet-platform-review__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

    /* Ensure content images do not overflow */
    .page-blog-gamebet-platform-review img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-gamebet-platform-review__hero-content {
        margin-top: -50px;
        padding: 20px;
    }

    .page-blog-gamebet-platform-review__hero-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-blog-gamebet-platform-review__conclusion-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .page-blog-gamebet-platform-review__advantage-icon {
        width: 80px;
        height: 80px;
    }
}