.page-slot-games-popular-reviews {
    padding-top: 10px; /* Small top padding for the first section, relying on body for header offset */
    background-color: var(--background-color, #F4F7FB);
    color: var(--text-main-color, #1F2D3D);
    line-height: 1.6;
}

.page-slot-games-popular-reviews__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-slot-games-popular-reviews__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    padding-bottom: 40px; /* Add padding below content, separate from next section */
    background-color: var(--card-bg-color, #FFFFFF); /* Adjust if hero needs different background */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-slot-games-popular-reviews__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

.page-slot-games-popular-reviews__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* Ensure hero image is not too small */
}

.page-slot-games-popular-reviews__hero-content {
    text-align: center;
    padding: 0 20px;
}

.page-slot-games-popular-reviews__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--custom-color-1776249996415, #000000);
}

.page-slot-games-popular-reviews__description {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-main-color, #1F2D3D);
}

.page-slot-games-popular-reviews__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-slot-games-popular-reviews__cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* General Sections */
.page-slot-games-popular-reviews__introduction-section,
.page-slot-games-popular-reviews__reviews-list-section,
.page-slot-games-popular-reviews__features-section {
    padding: 40px 0;
    margin-bottom: 40px;
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-slot-games-popular-reviews__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--custom-color-1776249996415, #000000);
}

.page-slot-games-popular-reviews__text-content {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-main-color, #1F2D3D);
}

/* Review Grid */
.page-slot-games-popular-reviews__review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-slot-games-popular-reviews__review-card {
    background-color: var(--card-bg-color, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-popular-reviews__review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-reviews__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-slot-games-popular-reviews__card-content {
    padding: 25px;
}

.page-slot-games-popular-reviews__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--custom-color-1776249996415, #000000);
}

.page-slot-games-popular-reviews__card-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main-color, #1F2D3D);
}

.page-slot-games-popular-reviews__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.page-slot-games-popular-reviews__card-button:hover {
    opacity: 0.9;
}

.page-slot-games-popular-reviews__view-all-wrapper {
    text-align: center;
}

.page-slot-games-popular-reviews__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background-color: var(--primary-color, #2F6BFF);
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-slot-games-popular-reviews__view-all-button:hover {
    background-color: var(--secondary-color, #6FA3FF);
}

/* Features Section */
.page-slot-games-popular-reviews__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-slot-games-popular-reviews__feature-item {
    background-color: var(--card-bg-color, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-slot-games-popular-reviews__feature-icon {
    width: 100%; /* Make icon responsive within its container */
    max-width: 250px; /* Limit max width */
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    min-width: 200px; /* Min size requirement */
    min-height: 150px; /* Min size requirement, matching HTML attribute */
    object-fit: cover;
}

.page-slot-games-popular-reviews__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--custom-color-1776249996415, #000000);
}

.page-slot-games-popular-reviews__feature-description {
    font-size: 0.95rem;
    color: var(--text-main-color, #1F2D3D);
}

/* CTA Section */
.page-slot-games-popular-reviews__cta-section {
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    color: #FFFFFF; /* Text color for this section */
}

.page-slot-games-popular-reviews__cta-content {
    max-width: 900px;
}

.page-slot-games-popular-reviews__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-slot-games-popular-reviews__cta-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-slot-games-popular-reviews__cta-button--inverted {
    background: #FFFFFF;
    color: var(--primary-color, #2F6BFF);
}

.page-slot-games-popular-reviews__cta-button--inverted:hover {
    background-color: var(--secondary-color, #6FA3FF);
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games-popular-reviews__hero-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .page-slot-games-popular-reviews__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-slot-games-popular-reviews__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-slot-games-popular-reviews__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-slot-games-popular-reviews__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-slot-games-popular-reviews__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-slot-games-popular-reviews__text-content {
        font-size: 0.95rem;
    }
    .page-slot-games-popular-reviews__review-grid,
    .page-slot-games-popular-reviews__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-popular-reviews__review-card {
        margin-bottom: 20px;
    }
    .page-slot-games-popular-reviews__card-title {
        font-size: 1.2rem;
    }
    .page-slot-games-popular-reviews__card-description {
        font-size: 0.9rem;
    }
    .page-slot-games-popular-reviews__card-image {
        height: 200px; /* Adjust height for mobile */
    }
    .page-slot-games-popular-reviews__feature-icon {
        max-width: 200px; /* Adjust max width for mobile */
        min-width: 200px;
        min-height: 150px;
    }
    .page-slot-games-popular-reviews__cta-section {
        padding: 40px 20px;
    }
    .page-slot-games-popular-reviews__cta-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    .page-slot-games-popular-reviews__cta-description {
        font-size: 1rem;
    }

    /* Mobile image overflow prevention */
    .page-slot-games-popular-reviews img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content images meet minimum size requirements for desktop and mobile */
.page-slot-games-popular-reviews__card-image {
    min-width: 200px;
    min-height: 200px;
}
.page-slot-games-popular-reviews__feature-icon {
    min-width: 200px;
    min-height: 150px;
}