body {
  font-family: "Share Tech Mono", monospace;
  background-color: #08080a;
  background-image:
    radial-gradient(
      circle at 50% 20%,
      rgba(186, 12, 12, 0.15),
      transparent 70%
    ),
    linear-gradient(to bottom, #050507, #0d0003);
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.photo-gallery {
  text-align: center;
  padding: 40px 20px;
}

.stranger-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-text-stroke: 1.5px #e61212;
  text-shadow:
    0 0 10px #ff0000,
    0 0 20px #e61212,
    0 0 30px #8b0000;
  margin-bottom: 5px;
}

.subtitle {
  color: #ff4d4d;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  opacity: 0.8;
}

/* =========================================================
   UPDATED CONTAINER & RECTANGULAR PHOTO BOXES
   ========================================================= */
.gallery-container {
  display: grid;
  /* 2 equal columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; /* Generous space between cards */
  justify-content: center;
  align-items: center;

  margin: 40px auto;
  padding: 35px 30px;

  background: rgba(15, 5, 8, 0.7);
  border: 2px solid rgba(230, 18, 18, 0.4);
  border-radius: 16px;
  width: fit-content;
  box-shadow: 0 0 25px rgba(230, 18, 18, 0.25);
}

.photo-box {
  /* Rectangular dimensions: 180px width x 130px height */
  width: 180px;
  height: 130px;
  background: #120205;
  padding: 5px;
  border-radius: 10px;
  border: 3px solid #5a0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-sizing: border-box;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the rectangle nicely without distortion */
  border-radius: 6px;
  filter: contrast(1.1) brightness(0.9);
}

/* Upside Down Hover Effect */
.photo-box:hover {
  transform: scale(1.08);
  border-color: #ff1a1a;
  box-shadow:
    0 0 15px #ff0000,
    0 0 30px rgba(255, 0, 0, 0.6);
  background-color: #2b0000;
}

.photo-box:hover img {
  filter: contrast(1.2) brightness(1.1);
}
