/* איפוס בסיסי */
* {
  box-sizing: border-box;
}

/* גוף הדף */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
}

/* מסך ראשי */
.screen {
  width: 100vw;
  height: 100vh;

  /* רקע */
  background-image: url("images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* סידור פנימי */
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* כפתור התקנה - מרכז מסך */
.install-btn {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 16px 28px;

  border: none;
  border-radius: 16px;

  font-size: 20px;
  font-weight: bold;

  background: rgba(255, 255, 255, 0.95);
  color: #0A1630;

  box-shadow: 0 6px 16px rgba(0,0,0,0.3);

  cursor: pointer;
}

/* אפקט לחיצה */
.install-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}
