/* Custom premium FBI theme additions */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 3px 100%;
  z-index: 9999;
  opacity: 0.2;
}

.shadow-red {
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 40px rgba(220, 38, 38, 0.4);
}

.shadow-inner-red {
  box-shadow: inset 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #000; 
  border-left: 1px solid #1f2937;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #c8102e; 
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #991b1b; 
}

/* Wanted Card Hover Effects */
.wanted-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wanted-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 0, 0, 0.15);
  border-color: rgba(220, 38, 38, 0.5);
  z-index: 10;
}

.wanted-card:hover .silhouette-container {
    filter: sepia(1) hue-rotate(-50deg) saturate(3) brightness(0.8) contrast(1.2);
    border-color: #c8102e;
}

.silhouette-container {
    transition: all 0.3s ease;
}

/* Modal Open Animation */
@keyframes modalEntry {
    0% { transform: translate(-50%, -45%) scale(0.95); opacity: 0; }
    100% { transform: translate(-50%, 0) scale(1); opacity: 1; }
}

#targetModal > div:last-child {
    animation: modalEntry 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
