@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700;900&display=swap');

    :root {
      --blood-red: #8b0000;
      --off-white: #e6e6e6;
      --gray-text: #aaaaaa;
      --pure-black: #000000;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--pure-black);
      color: var(--off-white);
      font-family: "Courier New", Courier, monospace;
      line-height: 1.7;
    }

    /* ---------- HEADER ---------- */

    header {
      padding: 80px 20px 60px;
      text-align: center;
      border-bottom: 1px solid #222;
    }

    header h1 {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 48px;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blood-red);
      margin-bottom: 10px;
    }

    header p {
      font-size: 14px;
      text-align: center;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ---------- MAIN ---------- */

    main {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 20px;
    }

    section {
      margin-bottom: 100px;
    }

    /* ---------- TITLES ---------- */

    h2 {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--blood-red);
      margin-bottom: 30px;
      border-bottom: 1px solid #222;
      padding-bottom: 10px;
    }

    /* ---------- TEXT ---------- */

    p {
      margin-bottom: 22px;
      font-size: 15px;
      color: var(--off-white);
      text-align: justify;
    }

    p.emphasis {
      font-family: 'Roboto Condensed', sans-serif;
      text-transform: uppercase;
      color: var(--blood-red);
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* ---------- CASE TITLE ---------- */

    .case-title {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--blood-red);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 25px;
    }

    /* ---------- VICTIMS GRID ---------- */

    .victims {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .victim-card {
      background-color: #050505;
      border: 1px solid #222;
      padding: 20px;
    }

    .victim-card .photo {
      width: 100%;
      height: 160px;
      background-color: #111;
      border: 1px solid #222;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      font-size: 13px;
      text-transform: uppercase;
    }

    .victim-card p {
      margin: 6px 0;
      font-size: 14px;
      color: var(--off-white);
    }

    .victim-card strong {
      color: var(--gray-text);
    }

    /* ---------- HIGHLIGHT ---------- */

    .highlight {
      margin-top: 60px;
      padding-left: 20px;
      border-left: 4px solid var(--blood-red);
      font-family: 'Roboto Condensed', sans-serif;
      text-transform: uppercase;
      color: var(--blood-red);
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* ---------- FOOTER ---------- */

    footer {
      text-align: center;
      padding: 50px 20px;
      font-size: 13px;
      color: #555;
      border-top: 1px solid #222;
    }

    .photo {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border: 1px solid #600;
    }