.not-found-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Blurred Background Video */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.8);
  transform: scale(1.1);
  z-index: -1;
}

/* Original Foreground GIF */
.image-fg {
  width: 320px;
  height: 420px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1); /* Subtle background in case GIF has transparency */
}

/* Text containers */
.not-found-container1,
.not-found-container2 {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  margin: 15px 0;
}

.not-found-text1 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.not-found-text2 {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
}

h3 {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Dark overlay for better text contrast */
.not-found-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
