:root {
    --arc-body-bg: #000000;
    --arc-text-light: #ffffff;
    --arc-accent-gold: #ffcc00;
    --arc-border-retro: 2px solid #ffffff;
    --arc-font-pixel: 'PressStart2P', 'VT323', monospace, sans-serif;
}

@font-face {
    font-family: 'PressStart2P';
    src: url(../../fonts/PressStart2P-Regular.c4f6a3d.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    size-adjust: 75%;
}

@font-face {
    font-family: 'VT323';
    src: url(../../fonts/VT323-Regular.4cd4872.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ebrima';
    src: url(../../fonts/ebrima.99ced7d.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gptslot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 16px auto;
    margin-top: 0px;
    min-height: 250px;
    max-width: 300px;
}

.ad-label {
    color: rgb(171, 171, 171);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    position: relative;
    padding: 5px 0px 2px 0px;
    font-size: 14px;
}

body.arc-retro-root {
    background-color: var(--arc-body-bg);
    color: var(--arc-text-light);
    font-family: var(--arc-font-pixel);
    padding: 0;
    overflow-x: hidden;
}

.arc-top-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    background-color: #000;
    border-bottom: 4px solid var(--arc-text-light);
    padding: 15px 3%;
}

.arc-brand-link {
    font-size: 24px;
    font-weight: 900;
    color: var(--arc-accent-gold);
    letter-spacing: 2px;
    text-decoration: none;
    text-shadow: 2px 2px #000;
}

.arc-query-shell {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    gap: 12px;
}

.arc-query-input {
    background-color: #000088;
    border: 2px solid var(--arc-text-light);
    padding: 8px 15px;
    color: #4ce2fc;
    font-family: var(--arc-font-pixel);
    font-size: 14px;
    outline: none;
    width: 420px;
}

.arc-query-trigger {
    background-color: var(--arc-accent-gold);
    border: none;
    color: #000;
    padding: 8px 20px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--arc-font-pixel);
    font-size: 14px;
    letter-spacing: 1px;
}

.arc-query-trigger:hover {
    background-color: #fff;
}

.arc-quick-tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;
    padding: 15px 3%;
    background-color: #000;
    border-bottom: 1px solid var(--arc-text-light);
}

.arc-quick-tags span {
    border: 1px solid var(--arc-text-light);
    padding: 6px 12px;
    font-size: 11px;
    cursor: pointer;
    background-color: #111;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.arc-quick-tags span:hover {
    background-color: var(--arc-text-light);
    color: #000;
}

.arc-workspace-flow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
}

.arc-floor-section {
    padding: 25px 3% 40px 3%;
    border-bottom: 4px dashed #ffffff;
}

.arc-layer-blue {
    background-color: rgba(0, 0, 204, 0.3);
}

.arc-layer-blue .arc-floor-title {
    background-color: #fc6ea1;
    color: #000;
}

.arc-layer-purple {
    background-color: rgba(68, 0, 153, 0.5);
}

.arc-layer-purple .arc-floor-title {
    background-color: #fdd605;
    color: #000;
}

.arc-layer-teal {
    background-color: rgba(0, 102, 136, 0.5);
}

.arc-layer-teal .arc-floor-title {
    background-color: #19c73c;
    color: #000;
}

.arc-layer-navy {
    background-color: rgba(0, 0, 85, 0.5);
}

.arc-layer-navy .arc-floor-title {
    background-color: #fc6e01;
    color: #000;
}

.arc-floor-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.arc-floor-title {
    background-color: #e70013;
    color: #fff;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 800;
    border: 2px solid #fff;
    white-space: nowrap;
    overflow: hidden;
}

.arc-floor-more {
    font-size: 12px;
    color: #3fd1f6;
    text-decoration: underline;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.arc-inner-genre-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 25px;
    background-color: transparent;
    padding: 5px 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
}

.arc-genre-btn {
    width: auto;
    min-width: 110px;
    text-align: center;
    background-color: #000;
    padding: 16px 20px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #fff;
}

.arc-matrix-mesh {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.arc-matrix-cell {
    background-color: transparent;
    border: 2px solid #ffffff;
    aspect-ratio: 1 / 1;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    position: relative;
    cursor: pointer;
    -webkit-transition: border-color 0.1s ease, -webkit-transform 0.1s ease;
    transition: border-color 0.1s ease, -webkit-transform 0.1s ease;
    transition: transform 0.1s ease, border-color 0.1s ease;
    transition: transform 0.1s ease, border-color 0.1s ease, -webkit-transform 0.1s ease;
}

.arc-matrix-cell:hover {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    border-color: var(--arc-accent-gold);
    z-index: 10;
}

.arc-cell-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.arc-cell-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.arc-cell-img.arc-ready {
    opacity: 1;
}

.arc-cell-meta-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    padding: 4px;
}

.arc-cell-score-row {
    position: absolute;
    right: 0;
    bottom: 18px;
    background-color: #000;
    color: var(--arc-accent-gold);
    font-size: 9px;
    font-weight: bold;
    padding: 1px 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    white-space: nowrap;
    width: auto;
}

.arc-cell-caption {
    color: #fff;
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding-right: 2px;
}

.arc-base-footer {
    background-color: #000;
    border-top: 4px solid var(--arc-text-light);
    padding: 30px 4%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 20px;
}

.arc-footer-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
}

.arc-footer-brand {
    font-size: 24px;
    color: var(--arc-accent-gold);
    font-weight: 900;
    text-decoration: none;
}

.arc-footer-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--arc-text-light);
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
}

.arc-footer-nav span,
.arc-footer-nav a {
    text-decoration: none;
    color: var(--arc-text-light);
}

.arc-footer-nav a:hover {
    cursor: pointer;
    color: var(--arc-accent-gold);
}

.arc-footer-log {
    font-size: 10px;
    color: #555;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
}

@media (max-width: 900px) {
    .arc-query-input {
        width: 100%;
    }

    .arc-top-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 15px;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
           -moz-box-align: stretch;
                align-items: stretch;
        text-align: center;
    }

    .arc-query-shell {
        width: 100%;
    }

    .arc-matrix-mesh {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .arc-matrix-mesh {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .arc-theater-stage-top {
        height: 460px !important;
        -webkit-box-flex: 0 !important;
        -webkit-flex: none !important;
           -moz-box-flex: 0 !important;
                flex: none !important;
    }

    .arc-inner-genre-box {
        gap: 8px;
        height: 200px;
        overflow-y: scroll;
    }

    .arc-genre-btn {
        min-width: -webkit-calc(33.33% - 6px);
        min-width: calc(33.33% - 6px);
        padding: 12px 5px;
    }

    .arc-footer-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        text-align: center;
    }

    .arc-footer-nav {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
                justify-content: center;
    }

    .arc-quick-tags {
        height: 130px;
        overflow-y: scroll;
    }

    .arc-matrix-cell {
        height: 130px;
        aspect-ratio: auto;
    }
}



@media (max-width: 480px) {

    #nxGridViral .nx-element-node:nth-child(n+19),
    #nxGridFresh .nx-element-node:nth-child(n+19),
    #nxGridTop .nx-element-node:nth-child(n+19) {
        display: none;
    }
}
