body {
    font-family: 'Heebo', sans-serif;
    background-color: #141A33;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}
.container {
    max-width: 500px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: scale(0.95);
    opacity: 0;
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; transform: scale(1); }
}
.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 20px; /* הוספתי פינות עגולות לאייקון שיראה כמו אפליקציה */
}
.title {
    font-size: 3rem;
    font-weight: 700;
    color: #6B4EFF;
    margin: 0;
}
.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 10px 0 20px 0;
}
.description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* עיצוב הכפתור החדש */
.download-btn {
    display: inline-block; /* חשוב עבור תגית a */
    padding: 15px 30px;
    border-radius: 10px;
    background-color: #6B4EFF;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none; /* מסיר את הקו התחתון של הלינק */
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}

.download-btn:hover {
    transform: scale(1.05);
    background-color: #5a3de8;
    box-shadow: 0 0 15px rgba(107, 78, 255, 0.5);
}