html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
  background: black;
}

.image-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

.background-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(8px) brightness(0.8);
  z-index: 1;
  mask-image: linear-gradient(to bottom, black 70%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 80%);
}

.content {
  position: absolute;
  top: 15vh;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  padding: 1rem;
  box-sizing: border-box;
  font-size: clamp(1.2rem, 2.5vw, 2rem); /* ✅ responsive font size */
}}
