/* Reset בסיסי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* רקע כללי */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #c4b5fd; /* לבנדר */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* קונטיינר מרכזי */
.container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 60px 45px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        0 0 40px rgba(124, 58, 237, 0.2);
    max-width: 520px;
}

/* לוגו */
.logo {
    width: 180px;
    margin-bottom: 25px;
    animation: fadeIn 1.5s ease;
}

/* כותרת */
h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

/* טקסט */
p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

/* הדגשה */
.accent {
    color: #7c3aed;
    font-weight: 600;
}

/* ספינר */
.loader {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top: 4px solid #7c3aed;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto;
}

/* פוטר */
footer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* אנימציות */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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