/* ==================== FANDOMS PAGE GLOBAL ARCHITECTURE ==================== */

.fandoms-page {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    background-color: var(--secondary-50);
    overflow-x: hidden;
}

/* Global Halftone/Noise Texture Overlay */
.fandoms-page__texture-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    /* Sits above backgrounds but below interactions */
    opacity: 0.15;
    /* Creates a subtle halftone comic-book dot pattern */
    background-image: radial-gradient(var(--secondary-950) 1px, transparent 1px);
    background-size: 6px 6px;
    mix-blend-mode: overlay;
}

/* Wraps the zero-gap chapters */
.fandoms-page__chapters-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Zero gap! 
     Chapters and paths will snap together edge-to-edge 
    */
    gap: 0;
}


/* ==================== STATUS BLOCKS (BRUTALIST STYLING) ==================== */

.fandoms-page__status-section {
    width: 100%;
    padding: 6rem 0;
    background-color: var(--primary-600);
}

.fandoms-page__status-inner {
    /* Uses the .container class from styles.css for alignment */
    display: flex;
    justify-content: center;
}

.fandoms-page__status-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;

    /* Brutalist pop-art styling */
    border: 4px solid var(--secondary-950);
    border-radius: 0;
    box-shadow: 12px 12px 0px var(--secondary-950);
}

.fandoms-page__status-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--secondary-950);
    padding-bottom: 0.75rem;
}

.fandoms-page__status-eyebrow {
    color: var(--secondary-950);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.fandoms-page__count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-600);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--secondary-950);
}

.fandoms-page__status-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: var(--secondary-950);
    margin: 0;
}

.fandoms-page__status-copy {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--secondary-700);
    font-weight: 500;
    margin: 0;
}

.fandoms-page__status-skeleton-wrap {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .fandoms-page__status-card {
        padding: 2rem;
        box-shadow: 8px 8px 0px var(--secondary-950);
    }
}