/* style/resources-phdream16-game-guide.css */

/* General page styling */
.page-resources-phdream16-game-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Apply offset here as the main content container */
}

/* Hero Section */
.page-resources-phdream16-game-guide__hero-section {
    padding: 60px 20px;
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* Light text for dark hero background */
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
    padding-bottom: 60px; /* Add some padding below content */
}

.page-resources-phdream16-game-guide__hero-container {
    position: relative;
    z-index: 10; /* Ensure text is above image if image is positioned */
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-phdream16-game-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background effect for image */
    z-index: 1;
}

.page-resources-phdream16-game-guide__hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-resources-phdream16-game-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-phdream16-game-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-phdream16-game-guide__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-phdream16-game-guide__hero-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.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-phdream16-game-guide__hero-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-resources-phdream16-game-guide__hero-button--register:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-resources-phdream16-game-guide__hero-button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-phdream16-game-guide__hero-button--login:hover {
    background-color: #E0A83A;
    transform: translateY(-2px);
}

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

/* Table of Contents */
.page-resources-phdream16-game-guide__toc {
    background-color: #F8F8F8;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.page-resources-phdream16-game-guide__toc-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-phdream16-game-guide__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-phdream16-game-guide__toc-list li {
    margin-bottom: 10px;
}

.page-resources-phdream16-game-guide__toc-list a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-resources-phdream16-game-guide__toc-list a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

/* Article Styling */
.page-resources-phdream16-game-guide__article-heading {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-phdream16-game-guide__article-subheading {
    font-size: 1.5em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-phdream16-game-guide__article-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-resources-phdream16-game-guide__article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

.page-resources-phdream16-game-guide__article-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-phdream16-game-guide__article-list li {
    margin-bottom: 10px;
}

.page-resources-phdream16-game-guide__article-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-resources-phdream16-game-guide__article-link:hover {
    color: #E0A83A;
    text-decoration: underline;
}

/* FAQ Section */
.page-resources-phdream16-game-guide__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-resources-phdream16-game-guide__faq-answer {
    font-size: 1.1em;
    color: #555555;
}

.page-resources-phdream16-game-guide__faq-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-phdream16-game-guide__faq-link:hover {
    text-decoration: underline;
}

/* Final CTA */
.page-resources-phdream16-game-guide__final-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-phdream16-game-guide__final-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.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-phdream16-game-guide__final-button--join {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-phdream16-game-guide__final-button--join:hover {
    background-color: #E0A83A;
    transform: translateY(-2px);
}

.page-resources-phdream16-game-guide__final-button--back {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-resources-phdream16-game-guide__final-button--back:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-phdream16-game-guide__hero-section {
        padding: 40px 15px;
    }

    .page-resources-phdream16-game-guide__hero-title {
        font-size: 2.5em;
    }

    .page-resources-phdream16-game-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-phdream16-game-guide__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-phdream16-game-guide__hero-button {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-phdream16-game-guide__content-area {
        margin: 20px auto;
        padding: 0 15px;
    }

    .page-resources-phdream16-game-guide__article-heading {
        font-size: 1.8em;
    }

    .page-resources-phdream16-game-guide__article-subheading {
        font-size: 1.3em;
    }

    .page-resources-phdream16-game-guide__article-paragraph,
    .page-resources-phdream16-game-guide__article-list,
    .page-resources-phdream16-game-guide__faq-answer {
        font-size: 1em;
    }

    /* Ensure content images do not overflow and meet min size */
    .page-resources-phdream16-game-guide__article-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-resources-phdream16-game-guide img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }

    .page-resources-phdream16-game-guide__final-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-phdream16-game-guide__final-button {
        width: 80%;
        margin: 0 auto;
    }
}