/* Update for /css/tech.css */

/* THE GLASS DASHBOARD */
.grid-card {
    background: rgba(10, 10, 10, 0.4) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(0, 243, 255, 0.1) !important;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* THE HUD BRACKETS */
.grid-card::before, .grid-card::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 2px solid var(--neon-blue);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}
.grid-card::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.grid-card::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.grid-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.grid-card:hover::before, .grid-card:hover::after { width: 45px; height: 45px; }

/* THE TERMINAL LIST */
.terminal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin-bottom: 15px;
    border-left: 4px solid var(--neon-magenta);
    text-decoration: none;
    transition: 0.3s;
}

.terminal-item:hover {
    transform: translateX(15px);
    background: rgba(20, 20, 20, 1);
    border-left-color: var(--neon-blue);
    box-shadow: -10px 0 20px rgba(0, 243, 255, 0.1);
}

.terminal-id { font-family: var(--font-tech); color: var(--neon-blue); font-size: 0.8rem; margin-right: 20px; }
.terminal-text h3 { font-family: var(--font-tech); color: #fff; margin: 0; text-transform: uppercase; }
.terminal-text p { font-family: var(--font-body); color: #888; margin: 5px 0 0 0; font-size: 0.9rem; }
.terminal-status { font-family: var(--font-tech); color: var(--neon-gold); font-size: 0.7rem; text-align: right; }