*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }

html { 
    line-height: 1.5; 
    -webkit-text-size-adjust: 100%; 
    -moz-tab-size: 4; tab-size: 4; 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth;
}

body { margin: 0; line-height: inherit; }

@media (min-width: 1025px) {
    body:not(.modal-abierto) * { 
        cursor: none !important; 
    }
    body:not(.modal-abierto) input, body:not(.modal-abierto) textarea {
        cursor: text !important;
    }
}

#cs-crosshair {
    position: fixed;
    top: 0; left: 0; width: 24px; height: 24px;
    pointer-events: none; z-index: 9999999;
    transform: translate(-50%, -50%); display: none;
    background: 
        linear-gradient(to right, #00ff00 9px, transparent 9px) no-repeat left 0px top 11px / 9px 2px,
        linear-gradient(to left, #00ff00 9px, transparent 9px) no-repeat right 0px top 11px / 9px 2px,
        linear-gradient(to bottom, #00ff00 9px, transparent 9px) no-repeat left 11px top 0px / 2px 9px,
        linear-gradient(to top, #00ff00 9px, transparent 9px) no-repeat left 11px bottom 0px / 2px 9px;
}

body:has(input:hover, textarea:hover) #cs-crosshair {
    display: none !important;
    opacity: 0 !important;
}

.agujero-bala {
    position: fixed !important;
    width: 16px; height: 16px;
    background: #1c1917; border: 2px solid #44403c; border-radius: 50%;
    pointer-events: none; transform: translate(-50%, -50%) scale(0);
    z-index: 9999999 !important;
    box-shadow: inset 0 0 6px #000, 0 0 10px rgba(234, 179, 8, 0.8);
    animation: entradaImpacto 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.agujero-bala::after {
    content: ''; position: absolute; inset: -8px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    animation: flashBala 0.1s ease-out forwards;
}

.agujero-desvanecer {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0 !important; transform: translate(-50%, -50%) scale(0.5) !important;
}

.hud-da«Šo {
    position: fixed !important; pointer-events: none;
    font-family: 'Arial Black', sans-serif; font-weight: 900; font-size: 18px;
    color: #ef4444; text-shadow: 0 0 8px rgba(239, 68, 68, 0.8), 0 2px 4px #000;
    z-index: 9999999 !important;
    animation: flotarDa«Šo 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translate(-50%, -50%);
}

@keyframes entradaImpacto { to { transform: translate(-50%, -50%) scale(1); } }
@keyframes flashBala { to { opacity: 0; transform: scale(1.5); } }
@keyframes flotarDa«Šo {
    0% { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
    100% { opacity: 0; transform: translate(-50%, -50%) translateY(-35px); }
}

.chispa {
    position: absolute; bottom: -10px;
    background: linear-gradient(to top, rgba(234, 179, 8, 0.9), rgba(249, 115, 22, 0));
    border-radius: 50%; pointer-events: none;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.7);
    animation: flotarChispa linear infinite;
}

@keyframes flotarChispa {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(-105vh) translateX(var(--desviacion-x)) scale(0.1); opacity: 0; }
}

.fuente-esports { font-family: 'Black Ops One', system-ui, sans-serif; font-weight: 400; font-style: normal; }

@media (max-width: 1024px) {
    #cs-crosshair { display: none !important; }
    html, body, a, button, .btn-copiar { cursor: auto !important; }
    .agujero-bala { width: 12px; height: 12px; }
    .hud-da«Šo { font-size: 14px; }
}

.card-shoot {
    transition: transform 0.25s ease, border-color 0.25s ease, background-image 0.5s ease-in-out !important;
}

.animate-pulse {
    animation: pulsoVerde 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulsoVerde {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}