@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  background: radial-gradient(circle at top, #0a0a0a 0%, #000000 100%);
  color: #e5e5e5;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.casefile {
  background: rgba(30, 30, 30, 0.85);
  padding: 35px;
  border: 2px solid #00f0ff42;
  backdrop-filter: blur(9px);
  border-radius: 14px;
  max-width: 960px;
  width: 92%;
  margin: 60px 0;
  color: #e2f1ff;
  box-shadow: 0 0 20px #00f0ff20;
  position: relative;
}

.casefile h1 {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 20px;
  text-shadow: 0 0 4px #00f0fe;
}

.casefile p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.casefile .lastline {
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #00f0ff33;
  font-size: 1.1rem;
  color: #ffffff;
}

.evidence {
  background: rgba(20, 20, 20, 0.76);
  padding: 25px;
  border: 2px solid #ff00d449;
  backdrop-filter: blur(8px);
  border-radius: 12px;
  margin: 30px 0;
  color: #ffccff;
}

.evidence h2 {
  font-size: 1.4rem;
  color: #ff00d4;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ff00d499;
}

.imgcontainer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 29px;
  margin-top: 10px;
}

.imgcontainer .img-box {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid #666;
  border-radius: 10px;
  padding: 15px;
  max-width: 240px;
  text-align: center;
  transition: 0.3s ease;
}

.imgcontainer .img-box:hover {
  box-shadow: 0 0 15px #00f0ff60, 0 0 25px #ff00d440;
  transform: scale(1.05);
}

.img-label {
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01rem;
}

.imgcontainer img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #00f0ff30;
  outline: none;
}
