/* SNIPER ENGINE CSS */
.gp-sniper-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gp-sniper-scene {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(10, 15, 25, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: crosshair;
}

.gp-sniper-target {
    position: absolute;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.1s;
}

.gp-sniper-target.shatter {
    animation: shatterTarget 0.3s cubic-bezier(.36,.07,.19,.97) forwards;
}

.gp-sniper-target.missed {
    animation: fadeMiss 0.2s ease forwards;
}

@keyframes shatterTarget {
    0% { transform: translate(-50%, -50%) scale(1); color: #00ffff; text-shadow: 0 0 20px #00ffff; opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); color: #fff; text-shadow: 0 0 30px #fff; opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; filter: blur(5px); }
}

@keyframes fadeMiss {
    0% { transform: translate(-50%, -50%) scale(1); color: #ff0055; text-shadow: 0 0 10px #ff0055; opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
}

.gp-sniper-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

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