.page-game-guides {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
}

.page-game-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-game-guides__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Use background color, not the 3WIN deep red */
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Enforce min size */
}

.page-game-guides__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-game-guides__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #1F2D3D;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-game-guides__hero-description {
    font-size: 1.1rem;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3); /* Glow color based on main color */
}

.page-game-guides__hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.5);
}

/* General Section Styling */
.page-game-guides__introduction-section,
.page-game-guides__categories-section,
.page-game-guides__featured-guide-section,
.page-game-guides__benefits-section,
.page-game-guides__cta-section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-game-guides__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
}

.page-game-guides__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 20px;
}

.page-game-guides__paragraph {
    font-size: 1rem;
    color: #1F2D3D; /* Main text color */
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-guides__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

/* Categories Section */
.page-game-guides__categories-section {
    background-color: #FFFFFF; /* Card BG */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides__guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-game-guides__guide-card {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.page-game-guides__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 107, 255, 0.2);
}

.page-game-guides__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-game-guides__card-link {
    color: #1F2D3D; /* Custom color for links in card title */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__card-link:hover {
    color: #2F6BFF; /* Main color on hover */
}

.page-game-guides__card-description {
    font-size: 0.95rem;
    color: #1F2D3D;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-game-guides__card-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Featured Guide Section */
.page-game-guides__featured-guide-section {
    background-color: #F4F7FB;
}

.page-game-guides__featured-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides__featured-image {
    flex: 1 1 45%;
    max-width: 50%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-game-guides__featured-text {
    flex: 1 1 45%;
    max-width: 50%;
}

.page-game-guides__featured-cta {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__featured-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

/* Benefits Section */
.page-game-guides__benefits-section {
    background-color: #F4F7FB;
}

.page-game-guides__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-game-guides__benefits-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-game-guides__benefits-item:hover {
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.15);
}

.page-game-guides__benefits-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 15px;
}

/* CTA Section */
.page-game-guides__cta-section {
    padding: 80px 0;
    background-color: #2F6BFF; /* Main color as background */
    color: #FFFFFF;
    text-align: center;
    border-radius: 0; /* Full width section */
}

.page-game-guides__cta-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-game-guides__cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-game-guides__cta-content {
    padding: 40px;
    color: #1F2D3D; /* Text main color for content inside white card */
}

.page-game-guides__cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-game-guides__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(47, 107, 255, 0.4);
}

.page-game-guides__cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(47, 107, 255, 0.6);
}

/* Responsive design */
@media (max-width: 992px) {
    .page-game-guides__section-title {
        font-size: 2rem;
    }

    .page-game-guides__hero-cta {
        padding: 12px 30px;
    }

    .page-game-guides__featured-content {
        flex-direction: column;
        padding: 30px;
    }

    .page-game-guides__featured-image,
    .page-game-guides__featured-text {
        max-width: 100%;
    }

    .page-game-guides__cta-title {
        font-size: 2.2rem;
    }

    .page-game-guides__cta-button {
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    .page-game-guides {
        padding-top: 5px;
    }
    .page-game-guides__hero-content {
        padding: 0 15px;
    }
    .page-game-guides__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-game-guides__hero-description {
        font-size: 1rem;
    }
    .page-game-guides__section-title {
        font-size: 1.8rem;
    }
    .page-game-guides__sub-title {
        font-size: 1.5rem;
    }
    .page-game-guides__paragraph {
        font-size: 0.95rem;
    }
    .page-game-guides__guide-list {
        grid-template-columns: 1fr;
    }
    .page-game-guides__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-game-guides__cta-section {
        padding: 60px 0;
    }
    .page-game-guides__cta-card {
        border-radius: 0;
    }
    .page-game-guides__cta-content {
        padding: 30px 20px;
    }
    .page-game-guides__cta-title {
        font-size: 1.8rem;
    }
    .page-game-guides__cta-description {
        font-size: 1rem;
    }
    .page-game-guides__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Enforce mobile image rules */
    .page-game-guides img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-game-guides__container {
        padding: 15px;
    }
    .page-game-guides__hero-section {
        padding-bottom: 30px;
    }
    .page-game-guides__introduction-section,
    .page-game-guides__categories-section,
    .page-game-guides__featured-guide-section,
    .page-game-guides__benefits-section,
    .page-game-guides__cta-section {
        padding: 40px 0;
    }
    .page-game-guides__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-game-guides__section-title {
        font-size: 1.6rem;
    }
    .page-game-guides__cta-title {
        font-size: 1.6rem;
    }
    .page-game-guides__cta-button {
        width: 100%;
    }
}

/* Image content area CSS size lower bound check */
/* This rule targets all images within the main content area to ensure they are not too small */
.page-game-guides img:not(.page-game-guides__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

/* Specific overrides for featured image to ensure it doesn't get too small on wider screens if flex shrinks it */
.page-game-guides__featured-image {
    min-width: 200px;
    min-height: 200px;
}