/* style/resources-ph9999-game-strategies.css */

/* Ensure text is readable on default light body background */
.page-resources-ph9999-game-strategies {
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Fixed Header Offset */
.page-resources-ph9999-game-strategies {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-resources-ph9999-game-strategies__hero-section {
    background-color: #007bff; /* Main brand color for hero background */
    color: #ffffff; /* Light text on dark blue background */
    padding: 80px 20px;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
    position: relative;
}

.page-resources-ph9999-game-strategies__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-resources-ph9999-game-strategies__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffc107; /* Auxiliary color for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-ph9999-game-strategies__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-ph9999-game-strategies__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-ph9999-game-strategies__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    min-width: 180px; /* Ensure buttons are not too small */
    box-sizing: border-box;
}

.page-resources-ph9999-game-strategies__button--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #0056b3; /* Darker blue for contrast */
    border: 2px solid #ffc107;
}

.page-resources-ph9999-game-strategies__button--primary:hover {
    background-color: #e0a800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-ph9999-game-strategies__button--secondary {
    background-color: transparent;
    color: #ffc107; /* Auxiliary color for secondary action */
    border: 2px solid #ffc107;
}

.page-resources-ph9999-game-strategies__button--secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.page-resources-ph9999-game-strategies__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-resources-ph9999-game-strategies__content-area {
    max-width: 1000px; /* Max content width 600-800px, but 1000px for a resource page is also common. Let's stick to 1000px for wider images */
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-ph9999-game-strategies__article-wrapper {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-ph9999-game-strategies__section-title {
    font-size: 2.2em;
    color: #007bff; /* Main brand color */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-resources-ph9999-game-strategies__subsection-title {
    font-size: 1.8em;
    color: #0056b3; /* Darker blue for sub-sections */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-ph9999-game-strategies__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-ph9999-game-strategies__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    /* Ensure images are at least 200px wide for content area */
    min-width: 200px;
    min-height: 200px;
}

.page-resources-ph9999-game-strategies__call-to-action {
    background-color: #f8f9fa; /* Light background for CTA */
    border: 1px solid #e9ecef;
    padding: 30px;
    margin-top: 40px;
    border-radius: 10px;
    text-align: center;
}

.page-resources-ph9999-game-strategies__call-to-action .page-resources-ph9999-game-strategies__paragraph {
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 25px;
}

.page-resources-ph9999-game-strategies__return-link-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

.page-resources-ph9999-game-strategies__return-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}

.page-resources-ph9999-game-strategies__return-link:hover {
    background-color: #0056b3;
}

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

    .page-resources-ph9999-game-strategies__hero-description {
        font-size: 1em;
    }

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

    .page-resources-ph9999-game-strategies__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-resources-ph9999-game-strategies__section-title {
        font-size: 1.8em;
    }

    .page-resources-ph9999-game-strategies__subsection-title {
        font-size: 1.4em;
    }

    .page-resources-ph9999-game-strategies__paragraph {
        font-size: 1em;
    }

    .page-resources-ph9999-game-strategies__content-area {
        padding: 20px 15px;
    }

    .page-resources-ph9999-game-strategies__article-wrapper {
        padding: 20px;
    }

    /* Mobile content images must be responsive and not cause overflow */
    .page-resources-ph9999-game-strategies__article-image,
    .page-resources-ph9999-game-strategies__hero-image {
        max-width: 100%;
        height: auto;
    }
}

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

    .page-resources-ph9999-game-strategies__hero-title {
        font-size: 1.6em;
    }

    .page-resources-ph9999-game-strategies__section-title {
        font-size: 1.6em;
    }
}