
body {
/* Dark Noir Background */
background-color: #121212;
background-image: radial-gradient(#2a2a2a 1px, transparent 1px);
background-size: 20px 20px;
font-family: 'Courier New', Courier, monospace;
text-align: center;
padding-top: 40px;
color: #dcdcdc;
margin: 0;
padding-bottom: 50px;
}

h1 {
font-size: 42px;
color: #e0e0e0;
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 10px;
text-shadow: 2px 2px 0px #000;
border-bottom: 2px solid #555;
display: inline-block;
padding-bottom: 10px;
}

/* --- CRIME SCENE FILE CARD --- */
.crime-scene-file {
background: #1e1e1e;
border: 1px solid #333;
padding: 25px;
max-width: 600px;
margin: 30px auto;
box-shadow: 0 10px 20px rgba(0,0,0,0.5);
position: relative;
text-align: left; /* Align text inside the file to left */
}

/* Paper clip decoration */
.crime-scene-file::before {
content: '';
position: absolute;
top: -10px;
left: 50%;
width: 120px;
height: 20px;
border: 2px solid #555;
border-bottom: none;
border-radius: 10px 10px 0 0;
transform: translateX(-50%);
z-index: -1;
}

/* File Header */
.scene-header {
border-bottom: 2px dashed #444;
padding-bottom: 10px;
margin-bottom: 20px;
text-align: left;
}

.stamp-label {
background: #8b0000;
color: #fff;
padding: 2px 8px;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
display: inline-block;
transform: rotate(-2deg);
margin-bottom: 8px;
box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.scene-header h2 {
margin: 5px 0;
font-size: 22px;
color: #e0e0e0;
text-transform: uppercase;
letter-spacing: 1px;
font-style: normal;
}

.file-line {
height: 1px;
background: #444;
margin-top: 5px;
width: 100%;
}

/* Question Box */
.question-brief {
background: #121212;
padding: 15px;
border-left: 3px solid #d4af37; /* Gold accent */
margin-bottom: 20px;
}

.brief-label {
font-size: 12px;
color: #fff132;
text-transform: uppercase;
margin-bottom: 5px;
letter-spacing: 1px;
}

.brief-text {
font-size: 16px;
color: #ccc;
margin: 0;
line-height: 1.5;
}

/* Input Group */
.input-group {
display: flex;
gap: 10px;
align-items: center;
margin-top: 20px;
}

/* Detective Input Field */
.detective-input {
flex-grow: 1;
background: #0a0a0a;
border: 1px solid #444;
color: #fff;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
padding: 12px;
outline: none;
transition: all 0.3s;
}

.detective-input:focus {
border-color: #d4af37;
box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
background: #111;
}

.detective-input::placeholder {
color: #444;
font-style: italic;
}

/* Detective Button */
.detective-btn {
background-color: #3e3e3e;
border: 1px solid #555;
padding: 12px 20px;
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
font-weight: bold;
cursor: pointer;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.2s;
box-shadow: 0 4px 0 #000;
white-space: nowrap;
}

.detective-btn:hover {
background-color: #505050;
transform: translateY(-2px);
box-shadow: 0 6px 0 #000;
color: #ffcc00;
}

.detective-btn:active {
transform: translateY(4px);
box-shadow: 0 0 0 #000;
}

/* Success State (Green) */
.btn-green {
background-color: #2e5c3e !important;
border-color: #3a7a4e !important;
color: #fff !important;
box-shadow: 0 4px 0 #1a3826 !important;
}

.btn-green:hover {
background-color: #3a7a4e !important;
transform: translateY(-2px);
box-shadow: 0 6px 0 #1a3826 !important;
color: #fff !important;
}

/* Utility */
.balloons {
font-size: 30px;
margin-bottom: 20px;
filter: grayscale(80%);
opacity: 0.7;
}

.redacted {
background-color: #fff;
color: #fff;
padding: 0 4px;
cursor: help;
}
.redacted:hover {
color: #000;
}
