﻿
:root {
    --eternal-gold: linear-gradient(90deg, #7a5c1c, #e8c245, #fff1a8, #e8c245, #7a5c1c);
    --eternal-red: #b30000;
    --eternal-green: #008f11; 
    --terminal-black: #050505;
    --border-color: #1a1a1a;
}

.blueprint-terminal-system {
    background-color: #000 !important;
    padding: 80px 0 !important;
    margin:60px 0;
    width: 100% !important;
    overflow: hidden !important;
    font-family: 'Source Code Pro', monospace !important;
}

.terminal-content-wrapper {
    max-width: 1800px;
    margin: 0 auto;
}

.filter-logic {
    display: flex;
    justify-content: flex-end;
    padding: 0 5% 40px 0;
}

.matrix-switch-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.label-text {
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dynamic-status {
    color: #e8c245;
    text-shadow: 0 0 5px rgba(232, 194, 69, 0.5);
}

.switch-visual {
    width: 45px;
    height: 18px;
    border: 1px solid #e8c245;
    position: relative;
    background: #000;
}

.switch-slider {
    width: 18px;
    height: 100%;
    background: #e8c245;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-switch-input:checked + .matrix-switch-label .switch-slider {
    transform: translateX(25px);
    background: var(--eternal-red);
}

.matrix-switch-input {
    display: none;
}

.blueprint-master-viewport {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    padding: 0 50px !important;
}

.blueprint-track-overflow {
    width: 100% !important;
    overflow: hidden !important;
}

.blueprint-track {
    display: flex !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    gap: 0 !important;
}

.blueprint-card-frame {
    flex: 0 0 20% !important;
    min-width: 20% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.blueprint-node {
    display: flex !important;
    flex-direction: column !important;
    background: var(--terminal-black) !important;
    border: 1px solid var(--border-color) !important;
    text-decoration: none !important;
    position: relative !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
}

    .blueprint-node:hover {
        border-color: #e8c245 !important;
        box-shadow: 0 0 25px rgba(232, 194, 69, 0.15) !important;
    }

.node-visual {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1/1.4 !important;
    overflow: hidden !important;
    background: #000 !important;
}

    .node-visual img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        filter: grayscale(1) brightness(0.6) !important;
        transition: 0.6s ease !important;
    }

.blueprint-node:hover img {
    filter: grayscale(0) brightness(1) !important;
    transform: scale(1.08) !important;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    box-shadow: 0 0 10px #e8c245, 0 0 20px #e8c245;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.blueprint-node:hover .scan-line {
    animation: terminalScan 2.5s linear infinite;
    opacity: 1;
}

@keyframes terminalScan {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}
.node-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333; 
    color: #fff;
    font-size: 9px;
    padding: 3px 10px;
    z-index: 10;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-green {
    background-color: var(--eternal-green) !important;
}

.status-red {
    background-color: var(--eternal-red) !important;
}

.node-data {
    padding: 20px 15px !important;
    flex-grow: 1 !important;
}

.node-serial {
    font-size: 9px !important;
    color: #444 !important;
    letter-spacing: 1.5px !important;
    display: block !important;
    margin-bottom: 8px !important;
}

.node-title {
    font-family: 'Roboto', serif !important;
    font-size: 16px !important;
    margin: 0 0 10px 0 !important;
    text-transform: uppercase !important;
    background: var(--eternal-gold) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.node-desc {
    color: #777 !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    height: 3em !important; 
    overflow: hidden !important;
    margin-bottom: 15px !important;
}

.node-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-text {
    font-size: 10px;
    color: #fff;
    letter-spacing: 2px;
}

.cta-line {
    height: 1px;
    flex-grow: 1;
    background: #222;
    position: relative;
    overflow: hidden;
}

    .cta-line::after {
        content: '';
        position: absolute;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #e8c245;
        transition: 0.4s;
    }

.blueprint-node:hover .cta-line::after {
    left: 0;
}

.ui-corner-gold {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #e8c245;
    z-index: 12;
}

    .ui-corner-gold.tl {
        top: -1px;
        left: -1px;
        border-right: 0;
        border-bottom: 0;
    }

    .ui-corner-gold.br {
        bottom: -1px;
        right: -1px;
        border-left: 0;
        border-top: 0;
    }

.slider-arrow {
    background: transparent !important; 
    border: none !important; 
    width: 60px !important;
    height: 70px !important;
    cursor: pointer !important;
    z-index: 100 !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

    .slider-arrow:hover:not(.disabled) {
        filter: drop-shadow(0 0 8px rgba(232, 194, 69, 0.8)) !important;
        transform: scale(1.1); 
    }

.arrow-inner::before {
    content: '';
    display: block;
    width: 16px; 
    height: 16px;
    border-top: 2px solid #e8c245; 
    border-right: 2px solid #e8c245;
    transition: 0.3s;
}

.slider-arrow:hover:not(.disabled) .arrow-inner::before {
    border-color: #fff1a8; 
}

.prev .arrow-inner {
    transform: rotate(-135deg);
}

.next .arrow-inner {
    transform: rotate(45deg);
}

.slider-arrow.disabled {
    opacity: 0.05 !important;
    cursor: default !important;
}

@media (max-width: 1400px) {
    .blueprint-card-frame {
        flex: 0 0 25% !important;
        min-width: 25% !important;
    }
}

@media (max-width: 1100px) {
    .blueprint-card-frame {
        flex: 0 0 33.33% !important;
        min-width: 33.33% !important;
    }
}

@media (max-width: 768px) {
    .blueprint-card-frame {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .blueprint-master-viewport {
        padding: 0 10px !important;
    }

    .slider-arrow {
        width: 40px !important;
    }
}


.blueprint-bg-text {
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: 'Roboto', sans-serif !important; 
    font-size: 180px;
    color: rgba(255, 255, 255, 0.06) !important;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transform: rotate(-15deg) skew(-5deg); 
    filter:blur(1px);
}

.blueprint-main-title {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Source Code Pro' !important;
    font-size: 22px;
    letter-spacing: 10px; 
    color: #fff;
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 300;
}

.blueprint-terminal-system {
    position: relative !important; 
    background-color: #000 !important;
    padding: 80px 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    font-family: 'Source Code Pro', monospace !important;
}


@media (max-width: 768px) {
    .blueprint-bg-text {
        position: absolute;
        top: 0px;
        left: -15px;
        font-family: 'Roboto', sans-serif !important;
        font-size: 170px;
        font-weight:900;
    }

    .terminal-header {
        display: flex;
        justify-content: center; 
        align-items: center; 
        width: 100%;
        padding-left:5vw;
    }

    .blueprint-main-title {
        font-size:4vw;
    }

}