/* Import rugged fonts */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Nosifer&display=swap');

.crime-conveners {
    --blood-dark: #660000;
    --blood-bright: #b30000;
    --tape-yellow: #f1c40f;
    
    position: relative;
    padding: 80px 20px;
    background: #865959;
    overflow: hidden;
    color: #dcdcdc;
    font-family: 'Courier Prime', monospace;
}

/* 1. Blood Splatter Background */
/* Using a radial gradient to simulate a central blood pooling effect */
.crime-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 30%),
        url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    pointer-events: none;
    z-index: 1;
}

/* 2. The Case File Container */
.crime-container {
    position: relative;
    max-width: 850px;
    margin: auto;
    background: linear-gradient(145deg, #111, #080808);
    padding: 40px;
    border: 1px solid #300;
    box-shadow: 0 0 50px rgb(44, 44, 44), inset 0 0 20px rgba(139, 0, 0, 0.2);
    z-index: 3;
}

/* 3. "Nosifer" Blood Font for Titles */
.crime-title {
    text-align: center;
    font-family: 'Nosifer', cursive; /* Dripping blood font */
    font-size: 28px;
    color: var(--blood-bright);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.crime-subtitle {
    font-family: 'Special Elite', cursive;
    color: var(--tape-yellow);
    text-transform: uppercase;
    border-left: 5px solid var(--blood-bright);
    padding-left: 15px;
    margin: 40px 0 20px;
}

/* 4. Evidence Card Styling */
.crime-person {
    position: relative;
    padding: 25px 20px;
    background: rgba(36, 36, 36, 0.8);
    border: 1px solid #222;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Make it look like a tagged evidence bag */
}

.crime-person::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--blood-bright);
    transition: 0.3s;
}

.crime-person:hover::before {
    height: 100%;
}

.crime-person:hover {
    background: #1a0505;
    border-color: var(--blood-dark);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* 5. Highlight (The "Suspect" Case Leads) */
.highlight {
    border: 1px solid rgba(139, 0, 0, 0.5);
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'), #151515;
}

.highlight .crime-role {
    color: var(--blood-bright);
    font-family: 'Special Elite', cursive;
    font-size: 14px;
}

/* 6. Forensic Details */
.crime-name {
    font-size: 22px;
    font-weight: bold;
    color: #eee;
    margin: 5px 0;
    text-transform: uppercase;
}

.crime-desc {
    font-size: 12px;
    color: #888;
    font-style: italic;
    border-top: 1px solid #333;
    padding-top: 8px;
}

.crime-phone {
    display: inline-block;
    margin-top: 15px;
    padding: 2px 8px;
    background: var(--tape-yellow);
    color: #000;
    font-weight: bold;
    font-size: 13px;
    transform: rotate(-1deg); /* Looks like a sticker */
}

/* 7. Pulse Animation (Heartbeat) */
@keyframes heartPulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

.crime-container::after {
    content: "CRITICAL DATA - DO NOT LEAK";
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 10px;
    color: var(--blood-bright);
    animation: heartPulse 2s infinite;
}

/* 8. Responsive Grid */
.crime-top, .crime-bottom {
    display: grid;
    gap: 25px;
}

.crime-top { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.crime-bottom { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (max-width: 600px) {
    .crime-person { text-align: center; }
}