/* style/resources-bingo-plus-login-guide.css */

/* Base styles for the page content, ensuring top padding for fixed header */
.page-resources-bingo-plus-login-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    background-color: #f8f8f8; /* A very light grey for subtle contrast */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-resources-bingo-plus-login-guide__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff; /* White text for the hero section background */
    text-align: center;
    padding: 60px 20px; /* Adjusted padding, main padding-top is on the overall main tag */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Minimum height for hero section */
}

.page-resources-bingo-plus-login-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-bingo-plus-login-guide__hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.9)); /* Overlay for text readability */
    z-index: 2;
}

.page-resources-bingo-plus-login-guide__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensure no extra space below image */
}

.page-resources-bingo-plus-login-guide__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-bingo-plus-login-guide__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-bingo-plus-login-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-bingo-plus-login-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Button Styles */
.page-resources-bingo-plus-login-guide__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;
    cursor: pointer;
    text-align: center;
}

.page-resources-bingo-plus-login-guide__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-resources-bingo-plus-login-guide__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-bingo-plus-login-guide__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-resources-bingo-plus-login-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-resources-bingo-plus-login-guide__button--full-width {
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    display: block;
}

/* Article Content Area */
.page-resources-bingo-plus-login-guide__content-area {
    max-width: 1000px; /* Adjusted for better content flow */
    margin: 40px auto;
    padding: 0 20px;
    background-color: #ffffff; /* White background for content block */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-resources-bingo-plus-login-guide__article-container {
    max-width: 750px; /* Optimal reading width */
    margin: 0 auto;
    padding: 40px 0;
}

.page-resources-bingo-plus-login-guide__return-link {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.page-resources-bingo-plus-login-guide__return-link a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-bingo-plus-login-guide__return-link a:hover {
    text-decoration: underline;
}

.page-resources-bingo-plus-login-guide__section-title {
    font-size: 2.2em;
    color: #003366; /* Dark blue for main section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

.page-resources-bingo-plus-login-guide__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-bingo-plus-login-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Steps Grid */
.page-resources-bingo-plus-login-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-resources-bingo-plus-login-guide__step-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-resources-bingo-plus-login-guide__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-resources-bingo-plus-login-guide__step-title {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Image Wrapper for content images */
.page-resources-bingo-plus-login-guide__image-wrapper {
    margin: 30px auto;
    text-align: center;
    max-width: 800px; /* Constrain image width for readability */
}

.page-resources-bingo-plus-login-guide__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center image */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Lists */
.page-resources-bingo-plus-login-guide__ordered-list,
.page-resources-bingo-plus-login-guide__unordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
    font-size: 1.1em;
}

.page-resources-bingo-plus-login-guide__ordered-list li,
.page-resources-bingo-plus-login-guide__unordered-list li {
    margin-bottom: 10px;
}

/* Issue Cards (for troubleshooting) */
.page-resources-bingo-plus-login-guide__issue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-resources-bingo-plus-login-guide__issue-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-left: 5px solid #003366; /* Accent border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-bingo-plus-login-guide__issue-title {
    font-size: 1.4em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-resources-bingo-plus-login-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.page-resources-bingo-plus-login-guide__faq-question {
    font-size: 1.2em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-bingo-plus-login-guide__faq-answer {
    font-size: 1.05em;
    color: #555555;
}

/* Final Call to Action */
.page-resources-bingo-plus-login-guide__final-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #cccccc;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-resources-bingo-plus-login-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-bingo-plus-login-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-bingo-plus-login-guide__section-title {
        font-size: 2em;
    }
    .page-resources-bingo-plus-login-guide__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-bingo-plus-login-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-bingo-plus-login-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-bingo-plus-login-guide__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-bingo-plus-login-guide__button {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-bingo-plus-login-guide__content-area {
        margin: 20px auto;
        padding: 0 15px;
    }
    .page-resources-bingo-plus-login-guide__article-container {
        padding: 30px 0;
    }
    .page-resources-bingo-plus-login-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-bingo-plus-login-guide__sub-section-title {
        font-size: 1.4em;
    }
    .page-resources-bingo-plus-login-guide__paragraph,
    .page-resources-bingo-plus-login-guide__ordered-list li,
    .page-resources-bingo-plus-login-guide__unordered-list li,
    .page-resources-bingo-plus-login-guide__faq-answer {
        font-size: 1em;
    }
    .page-resources-bingo-plus-login-guide__step-title,
    .page-resources-bingo-plus-login-guide__issue-title,
    .page-resources-bingo-plus-login-guide__faq-question {
        font-size: 1.1em;
    }

    /* Mobile content image constraint */
    .page-resources-bingo-plus-login-guide__image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    .page-resources-bingo-plus-login-guide__article-image {
        min-width: unset; /* Allow smaller images if needed, but still > 200px */
        min-height: unset;
    }
    /* Ensure all images within the content area are responsive and do not overflow */
    .page-resources-bingo-plus-login-guide img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-bingo-plus-login-guide__hero-section {
        padding: 40px 15px;
    }
    .page-resources-bingo-plus-login-guide__hero-title {
        font-size: 1.6em;
    }
    .page-resources-bingo-plus-login-guide__hero-description {
        font-size: 0.9em;
    }
    .page-resources-bingo-plus-login-guide__button {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-resources-bingo-plus-login-guide__section-title {
        font-size: 1.6em;
    }
    .page-resources-bingo-plus-login-guide__sub-section-title {
        font-size: 1.2em;
    }
    .page-resources-bingo-plus-login-guide__steps-grid,
    .page-resources-bingo-plus-login-guide__issue-cards {
        grid-template-columns: 1fr;
    }
}