html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px;
}

.galior-main {
  max-width: 40%;
  margin-top: -250px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.content h1 {
  color: white;
  font-size: clamp(2rem, 8vw, 7.4rem);
  text-align: center;
  margin: 0;
  font-weight: bolder;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  margin-top: -10%;
}

.content p {
  color: white;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 400;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 60%;
  line-height: 1.4;
  margin: 0;
}

.mini-logo-field {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -8%;
  margin-bottom: -200px;
}

.nessma-logo {
  width: auto;
  height: auto;
  max-width: 25%;
  max-height: 25%;
  object-fit: contain;
}

.galior-logo {
  width: auto;
  height: auto;
  max-width: 35%;
  max-height: 35%;
  object-fit: contain;
}

.copyright {
  color: white;
  font-size: clamp(0.8rem, 2vw, 1.7rem);
  font-weight: 600;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* Tablet styles */
@media screen and (max-width: 768px) {
  .content {
    gap: 15px;
    padding: 15px;
  }
  
  .galior-main {
    max-width: 70%;
  }
  
  .content p {
    max-width: 95%;
    font-size: clamp(0.9rem, 4vw, 1.5rem);
  }
  
  .mini-logo-field {
    padding-top: 150px;
    gap: 15px;
  }
  
  .nessma-logo {
    max-width: 100px;
    max-height: 65px;
  }
  
  .galior-logo {
    max-width: 130px;
    max-height: 85px;
  }
}

/* Mobile styles */
@media screen and (max-width: 480px) {
  .content {
    gap: 12px;
    padding: 10px;
  }
  
  .galior-main {
    max-width: 140%;
    margin-bottom: -5%;
  }
  
  .content h1 {
    font-size: clamp(1.5rem, 10vw, 4rem);
  }
  
  .content p {
    font-size: clamp(0.8rem, 4.5vw, 1.2rem);
    max-width: 98%;
  }
  
  .mini-logo-field {
    margin-top: -35%;
    gap: 10px;
  }
  
  .nessma-logo {
    max-width: 120px;
    max-height: 90px;
  }
  
  .galior-logo {
    max-width: 140px;
    max-height: 105px;
  }
  
  .copyright {
    font-size: clamp(0.7rem, 3vw, 1.2rem);
    bottom: 15px;
  }
}

/* Very small mobile devices */
@media screen and (max-width: 320px) {
  .content {
    gap: 10px;
    padding: 8px;
  }
  
  .galior-main {
    max-width: 85%;
    max-height: 100px;
  }
  
  .content h1 {
    font-size: clamp(1.2rem, 12vw, 3rem);
  }
  
  .content p {
    font-size: clamp(0.7rem, 5vw, 1rem);
  }
  
  .nessma-logo {
    max-width: 70px;
    max-height: 45px;
  }
  
  .galior-logo {
    max-width: 90px;
    max-height: 55px;
  }
  
  .copyright {
    bottom: 10px;
  }
}

/* Landscape mobile orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .content {
    gap: 8px;
    padding: 10px;
  }
  
  .galior-main {
    max-height: 80px;
  }
  
  .content h1 {
    font-size: clamp(1.5rem, 6vh, 3rem);
  }
  
  .content p {
    font-size: clamp(0.8rem, 3vh, 1.2rem);
  }
  
  .mini-logo-field {
    flex-direction: row;
    gap: 15px;
  }
  
  .nessma-logo {
    max-height: 40px;
  }
  
  .galior-logo {
    max-height: 50px;
  }
  
  .copyright {
    font-size: clamp(0.7rem, 2.5vh, 1rem);
    bottom: 8px;
  }
}