* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}

.scroller {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  z-index: 1;
}

.bg-image {
  height: 100%;
  width: auto;
  flex-shrink: 0;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo {
  width: 361px;
  height: 192px;
}


.logo-container:hover ~ .scroller .bg-image {
  filter: blur(8px);
  transition: filter 0.6s ease-in-out;
}

.bg-image {
  transition: filter 0.6s ease-in-out;
}


.logo {
  width: 1350px;
  height: 380px;
  transition: transform 0.3s ease-in-out;
}

.logo-container:hover ~ .scroller .bg-image {
  filter: blur(8px);
  transition: filter 0.6s ease-in-out;
}

.bg-image {
  transition: filter 0.6s ease-in-out;
}


.logo {
  width: 800px;
  height: 225px;
  transition: transform 0.3s ease-in-out;
}

.logo-container:hover ~ .scroller .bg-image {
  filter: blur(8px);
  transition: filter 0.6s ease-in-out;
}

.bg-image {
  transition: filter 0.6s ease-in-out;
}


.logo {
  width: 100%;
  max-width: 800px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

/* Desktop - keep max width of 800px */
@media (min-width: 769px) {
  .logo {
    width: 800px;
    height: auto;
  }
}

/* Mobile - scale to fit smaller screens */
@media (max-width: 768px) {
  .logo-container {
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  .logo {
    width: 90%;
    height: auto;
  }
}
