.page-resources-lodi646-game-guides {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF; /* Light background as per shared.css body background */
    color: #333333; /* Dark text for contrast on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-resources-lodi646-game-guides__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background-color: #000000; /* Dark background for hero to contrast with main content */
    color: #FFFFFF;
    overflow: hidden;
}

.page-resources-lodi646-game-guides__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim image to ensure text readability */
    z-index: 0;
}

.page-resources-lodi646-game-guides__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-lodi646-game-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login color for emphasis */
}

.page-resources-lodi646-game-guides__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-lodi646-game-guides__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-lodi646-game-guides__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
    font-size: 1.1em;
}

.page-resources-lodi646-game-guides__button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-lodi646-game-guides__button--primary:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-resources-lodi646-game-guides__button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-lodi646-game-guides__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.page-resources-lodi646-game-guides__content-area {
    max-width: 800px; /* Content width controlled for readability */
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-lodi646-game-guides__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-resources-lodi646-game-guides__intro-paragraph {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-lodi646-game-guides__table-of-contents {
    background-color: #F8F8F8;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.page-resources-lodi646-game-guides__toc-title {
    font-size: 1.5em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-lodi646-game-guides__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-lodi646-game-guides__toc-list li {
    margin-bottom: 10px;
}

.page-resources-lodi646-game-guides__toc-link {
    color: #333333;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.page-resources-lodi646-game-guides__toc-link:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-resources-lodi646-game-guides__article {
    margin-bottom: 60px;
    background-color: #FFFFFF;
    padding: 0;
}

.page-resources-lodi646-game-guides__article-heading {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-lodi646-game-guides__sub-heading {
    font-size: 1.5em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-lodi646-game-guides__article-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

.page-resources-lodi646-game-guides__article p {
    margin-bottom: 20px;
    font-size: 1em;
    color: #333333;
}

.page-resources-lodi646-game-guides__button--inline {
    margin-top: 20px;
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-resources-lodi646-game-guides__button--inline:hover {
    background-color: #e0a53b;
}

.page-resources-lodi646-game-guides__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 8px;
}

.page-resources-lodi646-game-guides__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45;
}

.page-resources-lodi646-game-guides__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources-lodi646-game-guides__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.page-resources-lodi646-game-guides__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-lodi646-game-guides__faq-answer {
    font-size: 1em;
    color: #333333;
    margin-bottom: 0;
}

.page-resources-lodi646-game-guides__back-link-container {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.page-resources-lodi646-game-guides__back-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-resources-lodi646-game-guides__back-link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-lodi646-game-guides__hero-title {
        font-size: 2.5em;
    }

    .page-resources-lodi646-game-guides__hero-description {
        font-size: 1em;
    }

    .page-resources-lodi646-game-guides__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-lodi646-game-guides__button {
        width: 100%;
        max-width: 300px;
    }

    .page-resources-lodi646-game-guides__section-title {
        font-size: 2em;
    }

    .page-resources-lodi646-game-guides__article-heading {
        font-size: 1.8em;
    }

    .page-resources-lodi646-game-guides__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-lodi646-game-guides__cta-title {
        font-size: 2.2em;
    }

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

    .page-resources-lodi646-game-guides__content-area {
        padding: 20px 15px;
    }

    /* Ensure images do not overflow on mobile */
    .page-resources-lodi646-game-guides__hero-image,
    .page-resources-lodi646-game-guides__article-image {
        max-width: 100%;
        height: auto;
    }

    /* Content area images must not be smaller than 200px */
    .page-resources-lodi646-game-guides img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-resources-lodi646-game-guides__hero-section {
        padding: 60px 15px;
    }

    .page-resources-lodi646-game-guides__hero-title {
        font-size: 2em;
    }

    .page-resources-lodi646-game-guides__section-title {
        font-size: 1.8em;
    }

    .page-resources-lodi646-game-guides__cta-title {
        font-size: 1.8em;
    }
}