@import url('https://fonts.googleapis.com/css2?family=Assistant&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: "Assistant", sans-serif;
  background: linear-gradient(to bottom, #d7e3dc, #b5cbb7);
  height: 100vh;
  display: grid;
  place-items: center;
  direction: rtl;
  text-align: center;
  overflow: hidden;
}

.container {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 64, 0, 0.1);
  opacity: 1;
  transition: opacity 0.5s ease;
}

h1 {
  color: #2f4f3d;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2rem;
  user-select: none;
}

.options button {
  background-color: #e5f2e9;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 12px 0;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  color: #1f3c2e;
  font-weight: 700;
  user-select: none;
  box-shadow: 0 2px 6px rgba(31, 60, 46, 0.3);
}

.options button:hover {
  background-color: #cde3d2;
  box-shadow: 0 4px 12px rgba(31, 60, 46, 0.4);
}

.options button:active {
  background-color: #b4d1b8;
  box-shadow: inset 0 3px 6px rgba(31, 60, 46, 0.5);
}

.logo {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

/* מסך טעינה */
#loadingScreen {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #d7e3dc, #b5cbb7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

#loadingScreen img {
  width: 100px;
  height: auto;
  animation: spin 2s linear infinite;
  user-select: none;
  margin-bottom: 15px;
}

#loadingScreen span {
  font-family: "Assistant", sans-serif;
  font-size: 18px;
  color: #2f4f3d;
  font-weight: 600;
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
