.page-blog-game-guides {
    color: #333333; /* Light body background #f4f4f4 requires dark text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog-game-guides__hero-section {
    background-color: #FFD700; /* Main brand color for hero background */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-blog-game-guides__hero-content {
    max-width: 800px;
    z-index: 1;
    color: #333333; /* Dark text for light background */
}

.page-blog-game-guides__main-title {
    font-size: 3em;
    color: #8B0000; /* Auxiliary brand color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.page-blog-game-guides__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333;
}

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

.page-blog-game-guides__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-blog-game-guides__button--primary {
    background-color: #8B0000; /* Auxiliary color for primary action */
    color: #FFD700; /* Main color for text */
    border: 2px solid #8B0000;
}

.page-blog-game-guides__button--primary:hover {
    background-color: #a00000;
    transform: translateY(-3px);
}

.page-blog-game-guides__button--secondary {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.page-blog-game-guides__button--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-blog-game-guides__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-game-guides__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: none; /* Ensure no filter changes image colors */
}

.page-blog-game-guides__introduction-section,
.page-blog-game-guides__categories-section,
.page-blog-game-guides__featured-guides-section,
.page-blog-game-guides__cta-section,
.page-blog-game-guides__faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.page-blog-game-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-blog-game-guides__section-intro,
.page-blog-game-guides__cta-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-game-guides__category-grid,
.page-blog-game-guides__featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-game-guides__category-card,
.page-blog-game-guides__article-card {
    background-color: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-game-guides__category-card:hover,
.page-blog-game-guides__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides__category-image-wrapper,
.page-blog-game-guides__article-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistent card image display */
    overflow: hidden;
}

.page-blog-game-guides__category-image,
.page-blog-game-guides__article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none; /* Ensure no filter changes image colors */
}

.page-blog-game-guides__card-title,
.page-blog-game-guides__article-title {
    font-size: 1.4em;
    color: #8B0000;
    padding: 15px 20px 10px;
}

.page-blog-game-guides__card-title a,
.page-blog-game-guides__article-title a {
    text-decoration: none;
    color: inherit;
}

.page-blog-game-guides__card-title a:hover,
.page-blog-game-guides__article-title a:hover {
    text-decoration: underline;
}

.page-blog-game-guides__card-description,
.page-blog-game-guides__article-excerpt {
    font-size: 0.95em;
    color: #555555;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-blog-game-guides__button--small {
    background-color: #FFD700;
    color: #8B0000;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin: 0 20px 20px;
    align-self: flex-start;
    border: 1px solid #FFD700;
}

.page-blog-game-guides__button--small:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-blog-game-guides__button--text {
    background-color: transparent;
    color: #8B0000;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin: 0 20px 20px;
    align-self: flex-start;
    border: 1px solid transparent;
}

.page-blog-game-guides__button--text:hover {
    text-decoration: underline;
    border-color: #8B0000;
}

.page-blog-game-guides__view-all {
    text-align: center;
    margin-top: 50px;
}

.page-blog-game-guides__button--cta {
    background-color: #8B0000;
    color: #FFD700;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid #8B0000;
}

.page-blog-game-guides__button--cta:hover {
    background-color: #a00000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-game-guides__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-blog-game-guides__faq-question {
    font-size: 1.2em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-blog-game-guides__faq-answer {
    font-size: 1em;
    color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-game-guides__main-title {
        font-size: 2.5em;
    }
    .page-blog-game-guides__section-title {
        font-size: 2em;
    }
    .page-blog-game-guides__hero-section {
        padding: 60px 20px;
    }
    .page-blog-game-guides__hero-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog-game-guides__main-title {
        font-size: 2em;
    }
    .page-blog-game-guides__hero-description {
        font-size: 1em;
    }
    .page-blog-game-guides__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-game-guides__button {
        width: 100%;
        max-width: 280px;
    }
    .page-blog-game-guides__section-title {
        font-size: 1.8em;
    }
    .page-blog-game-guides__category-grid,
    .page-blog-game-guides__featured-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-game-guides__introduction-section,
    .page-blog-game-guides__categories-section,
    .page-blog-game-guides__featured-guides-section,
    .page-blog-game-guides__cta-section,
    .page-blog-game-guides__faq-section {
        margin: 20px auto;
        padding: 15px;
    }

    /* Prevent content area images from overflowing on mobile */
    .page-blog-game-guides img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-game-guides__category-image-wrapper,
    .page-blog-game-guides__article-image-wrapper {
        height: auto; /* Allow height to adjust for responsive images */
    }
    .page-blog-game-guides__category-image,
    .page-blog-game-guides__article-image {
        min-width: 200px; /* Ensure minimum size for content images */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-blog-game-guides__main-title {
        font-size: 1.8em;
    }
    .page-blog-game-guides__section-title {
        font-size: 1.5em;
    }
    .page-blog-game-guides__button--cta {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}