/* ==========================================================================
   SKYFALL V3 - HUD SHINE EFFECT
   ========================================================================== */
.hud-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--hud-rgb), 0.1), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
}

.hud-card.is-hovered .hud-shine {
    animation: hud-shine 0.8s ease-out;
}

@keyframes hud-shine {
    to {
        left: 150%;
    }
}

/* ==========================================================================
   HUD TECH LINES
   ========================================================================== */
.hud-tech-line-v {
    position: absolute;
    top: 0;
    right: 10px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(var(--hud-rgb), 0.15), transparent);
    pointer-events: none;
}

.hud-tech-line-h {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--hud-rgb), 0.15), transparent);
    pointer-events: none;
}
