/* איפוס וגופן */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  color: white;
  text-align: center;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* מיכל מרכזי */
.container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  width: 500px;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.message {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 1.5rem 0;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #e73c7e;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: #f0f0f0;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* רספונסיביות */
@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .container { padding: 2rem 1.5rem; }
  .btn { font-size: 1.2rem; padding: 0.8rem 1.5rem; }
}
