/* NexusPrime Social Hub (v54.45.1) */

.nx-social-hub-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: unset;
    padding: unset;
}

.nx-cinematic-bg {
    position: absolute;
    inset: 0;
    background: url(https://marketplace.lsnn.net/assets/img/nexus_prime_triangle_widescreen_1775743795609.png) center / 70% no-repeat, radial-gradient(circle at center, rgb(14 165 233 / 24%) 0%, #0c195100 100%);
    opacity: 0.8;
    animation: nexusAura 15s infinite alternate ease-in-out;
}

@keyframes nexusAura {
    from { transform: scale(1); opacity: 0.7; }
    to { transform: scale(1.05); opacity: 0.9; }
}

.hub-container {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-top: 8rem;
    width: 100%;
    text-align: center;
}

.hub-brand-wrap {
    width: auto;
    height: auto;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.hub-brand-svg {
    position: relative;
    z-index: 10;
    width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.hub-subtitle {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 48px;
    max-width: 550px;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
    text-shadow: 0 0px 8px rgba(0,0,0,0.25);
}

.hub-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
    margin: 0 auto;
}

.hub-btn {
    padding: 16px 28px;
    border-radius: var(--radius-md, 12px);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hub-btn--primary {
    background: var(--accent-primary, #2563eb);
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.hub-btn--secondary {
    background: var(--ce-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--exif-cert-text-info);
    backdrop-filter: blur(10px);
}

.hub-btn--outline {
    color: var(--exif-cert-text-info);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--area-warning-bg);
}

.hub-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
}

.hub-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hub-footer {
    margin-top: 60px;
    color: var(--text-dim, #475569);
    font-size: 0.85rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .hub-brand-wrap {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    .hub-brand-svg {
        width: 240px;
        height: 240px;
    }
}

/* Elite Pagination Protocol (NPSP v2.1) */
.nx-pagination-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nx-pagination-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nx-page-item {
    display: flex;
}

.nx-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-surface-glass, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-page-link:hover {
    background: var(--bg-surface-glass-hover, rgba(255, 255, 255, 0.1));
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.nx-page-item.is-active .nx-page-link {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.nx-page-item.is-disabled .nx-page-link {
    cursor: default;
    opacity: 0.5;
    background: transparent;
    border-color: transparent;
}

.nx-page-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}
