/* --- BASE RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper-color: #f4f4f2;
    --ink-black: #1a1a1a;
    --highlight-gray: #e0e0e0;
}

body {
    background-color: var(--paper-color);
    color: var(--ink-black);
    font-family: 'Courier Prime', monospace;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* --- LAYOUT CONTAINER --- */
.dossier-container {
    max-width: 800px;
    width: 100%;
    border: 3px solid var(--ink-black);
    padding: 40px;
    background-color: #fff;
    box-shadow: 8px 8px 0px var(--ink-black);
    /* Gives it a rough, stamped 3D look */
}

/* --- HEADER --- */
.case-file-header {
    text-align: center;
    border-bottom: 3px solid var(--ink-black);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.case-file-header h1 {
    font-size: 3rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    font-weight: bold;
    font-size: 1.1rem;
    background-color: var(--ink-black);
    color: var(--paper-color);
    display: inline-block;
    padding: 5px 10px;
}

/* --- THE VISUAL (SVG CONTAINER) --- */
.lineup-visual {
    width: 100%;
    border: 2px dashed var(--ink-black);
    margin-bottom: 40px;
    background-color: var(--paper-color);
    overflow: hidden;
}

/* Ensure the SVG scales perfectly */
.lineup-visual svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --- THE MANIFESTO (RAP SHEET) --- */
.rap-sheet h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-decoration: underline;
}

.dossier-entry {
    margin-bottom: 25px;
}

.dossier-entry h3 {
    font-size: 1.2rem;
    background-color: var(--highlight-gray);
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 10px;
}

.dossier-entry ul {
    list-style-type: square;
    margin-left: 20px;
}

.dossier-entry li {
    margin-bottom: 10px;
}

/* --- CALL TO ACTION --- */
.interrogation-room {
    margin-top: 50px;
    padding: 30px;
    border: 3px solid var(--ink-black);
    text-align: center;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px);
    /* Subtle hazard stripes */
}

.interrogation-room h2 {
    margin-bottom: 15px;
}

.interrogation-room p {
    margin-bottom: 25px;
    font-weight: bold;
}

.confess-btn {
    display: inline-block;
    background-color: var(--ink-black);
    color: var(--paper-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid var(--ink-black);
    transition: all 0.2s ease;
}

.confess-btn:hover {
    background-color: var(--paper-color);
    color: var(--ink-black);
    box-shadow: 4px 4px 0px var(--ink-black);
    transform: translate(-2px, -2px);
}

/* --- FOOTER --- */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    border-top: 2px dashed var(--ink-black);
    padding-top: 10px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    .dossier-container {
        padding: 20px;
        box-shadow: 4px 4px 0px var(--ink-black);
    }

    .case-file-header h1 {
        font-size: 2rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 600px;
    margin: 20px auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.form-group label {
    margin-bottom: 4px;
}

.form-group input {
    padding: 6px;
    border: 1px solid #000;
    font-family: inherit;
}

.full-width {
    grid-column: span 2;
}

.form-actions {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}