* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  /* Prevents text highlighting */
}

html,
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#launcher {
  position: fixed;
  z-index: 999;
  background: #111;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #333;
  cursor: default;
}

#launcher button {
  background: #0078d4;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
}

/* Main Windows 11 Update Container */
#update-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Windows typography adjustments */
.main-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
}

.sub-text {
  font-size: 22px;
  position: absolute;
  bottom: 10%;
  width: 100%;
}

.noCursor {
    cursor: none !important;
}