/* 
   LIQUID ENGINE - THE HUB LEVEL UP 
*/

/* Marquee Widget */
.nx-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--nx-dark);
    color: #fff;
    padding: 20px 0;
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--nx-font-head);
    display: flex;
}

.nx-marquee__inner {
    display: flex;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Liquid Container */
.nx-container--liquid {
    max-width: 100%;
    padding: 0 5%;
}

/* Elite Grids (Masonry Style) */
.nx-grid--masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    gap: 30px;
}

.nx-grid-item--row2 {
    grid-row: span 2;
}

.nx-grid-item--col2 {
    grid-column: span 2;
}

/* Interactive Cursor Placeholder */
.nx-cursor {
    width: 20px;
    height: 20px;
    background: var(--nx-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Liquid Section Transitions */
.nx-section--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.nx-split__left {
    background: var(--nx-dark);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 100px;
}

.nx-split__right {
    background: var(--nx-light);
    display: flex;
    align-items: center;
    padding: 100px;
}