/* Background */
body {
  margin: 0;
  padding: 0;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #e2e2e2;
}

/* Dark overlay to increase readability */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

/* Layout */
header {
  text-align: center;
  padding: 30px 10px;
  text-shadow: 0 0 8px #000;
}

#logo {
  width: 120px;
  margin-bottom: 10px;
}

.tag {
  opacity: 0.7;
}

.content {
  width: 90%;
  max-width: 800px;
  margin: auto;
  background: rgba(0,0,0,0.45);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(3px);
}

/* Links */
a {
  color: #ff4444;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Killers list */
.killer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.killer-list li {
  padding: 8px 0;
  border-bottom: 1px solid #444;
}
.killer-list li:last-child {
  border-bottom: none;
}

.goner-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.goner-text {
  max-width: 60%;
}

.goner-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ff3b3b; /* blood red highlight */
  text-shadow: 0 0 10px #400000;
}

.goner-text p {
  line-height: 1.6;
  font-size: 18px;
}

.goner-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px #000;
}

.box {
  background: rgba(0, 0, 0, 0.55); /* dark transparent */
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(2px); /* optional but looks nice */
}