.page-game-guides {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-game-guides__hero-section {
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    background-color: #2F6BFF; /* Main Color for hero section background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-game-guides__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Example clamp for H1 */
}

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

.page-game-guides__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-game-guides__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-game-guides__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-game-guides__button--primary:hover {
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Lighter blue on hover */
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-game-guides__button--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF; /* Main Color */
    border: 2px solid #2F6BFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__button--secondary:hover {
    background-color: #F4F7FB; /* Background color */
    color: #2F6BFF;
    border-color: #6FA3FF; /* Auxiliary Color */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-game-guides__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-game-guides__guide-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-game-guides__card-image {
    width: 100%;
    height: auto; /* Allow height to be auto, but enforce min-height */
    min-height: 200px; /* Ensure card images are at least 200px high */
    object-fit: cover;
}

.page-game-guides__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-guides__card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-game-guides__card-title a {
    color: #000000; /* Custom Color_1776249996415 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
    color: #2F6BFF; /* Main Color */
}

.page-game-guides__card-text {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-game-guides__card-link {
    display: inline-block;
    color: #2F6BFF; /* Main Color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-guides__card-link:hover {
    color: #6FA3FF; /* Auxiliary Color */
    text-decoration: underline;
}

.page-game-guides__content-block {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-game-guides__content-subtitle {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 15px;
}

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

.page-game-guides__button--text-link {
    background: none;
    border: none;
    padding: 0;
    color: #2F6BFF; /* Main Color */
    text-decoration: underline;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.page-game-guides__button--text-link:hover {
    color: #6FA3FF; /* Auxiliary Color */
    text-decoration: none;
}

.page-game-guides__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-game-guides__faq-question {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-game-guides__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding: 15px 0 30px;
    }

    .page-game-guides__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .page-game-guides__description {
        font-size: 1rem;
    }

    .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guides__button {
        width: 80%; /* Make buttons wider on mobile */
        max-width: 300px;
        margin: 0 auto;
    }

    .page-game-guides__section {
        margin: 30px auto;
        padding: 15px;
    }

    .page-game-guides__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 30px;
    }

    .page-game-guides__guide-list {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-game-guides__card-image {
        height: auto; /* Adjust card image height for mobile */
        min-height: 200px; /* Ensure min height */
    }

    .page-game-guides__card-title {
        font-size: 1.1rem;
    }

    .page-game-guides__content-subtitle {
        font-size: 1.4rem;
    }

    .page-game-guides__paragraph {
        font-size: 0.95rem;
    }

    .page-game-guides__faq-question {
        font-size: 1rem;
    }

    /* Mobile content images constraint */
    .page-game-guides img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure all images in content area are not too small */
/* This rule applies to any img within .page-game-guides */
.page-game-guides img:not(.shared-logo):not(.shared-icon) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Helps maintain aspect ratio if min-width/height is forced */
}