@import url("variables.css");

body {
    background-color: var(--bg-dark);
    color: #e0e0e0;
    font-family: 'Share Tech Mono', monospace; /* Police style terminal */
}

/* Effet de scan sur la vidéo */
.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 242, 255, 0.5);
    box-shadow: 0 0 15px var(--neon-blue);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Bordures futuristes (Glow) */
.futuristic-border {
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.1), 0 0 5px rgba(0, 242, 255, 0.2);
}

/* Coins de visée (Targeting Corners) */
.target-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-blue);
}