@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url('/assets/wallpaper.png');
  background-position: center;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow: hidden;
  text-align: center;
}

.main-container {
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(99, 0, 238, 0.603);
  width: 90%;
  max-width: 500px;
}

.logo {
  width: 60px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5em;
  font-weight: 600;
  color: #be5cff;
  margin-bottom: 10px;
}

.subtext {
  font-size: 1.2em;
  color: #c8a2ff;
  margin-bottom: 30px;
}

#startButton {
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 500;
  color: white;
  background-color: #6200ee;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(98, 0, 238, 0.4);
  font-family: 'Poppins', sans-serif;
}

#startButton:hover {
  background-color: #4b00b5;
  transform: scale(1.02);
}

#uv-address {
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: 400;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #6200ee;
  border-radius: 8px;
  outline: none;
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(98, 0, 238, 0.3);
  font-family: 'Poppins', sans-serif;
}

#uv-address::placeholder {
  color: #c8a2ff;
  font-style: italic;
}

#uv-address:focus {
  border-color: #be5cff;
  box-shadow: 0 4px 15px rgba(99, 0, 238, 0.6);
}

#uv-address:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #be5cff;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  .subtext {
    font-size: 1em;
  }

  #startButton {
    width: 100%;
  }
}
