:root {
    --primary-color: #6200EE;
    --accent-color: #007AFF;
    --text-color: #ffffff;
    --bg-color: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    background-color: #000;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: var(--text-color);
    overflow: hidden;
    height: 100dvh;
    width: 100vw;
    position: fixed;
    inset: 0;
    overscroll-behavior: none;
}

/* הרקע הזה נמתח מעבר למסך כדי לכסות הכל */
.background-container {
    position: absolute;
    top: -10vh;
    left: -10vw;
    width: 120vw;
    height: 120vh;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

.scrolling-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    transform: rotate(-12deg) scale(1.4); 
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    opacity: 0.4;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 33%;
    max-width: 200px;
}

.column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    display: block;
    background-color: #1a1a1a;
    min-height: 200px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-33.33%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-33.33%); }
    100% { transform: translateY(0); }
}

.scroll-up { animation: scrollUp 45s linear infinite; }
.scroll-down { animation: scrollDown 50s linear infinite; }

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.5) 40%, 
        rgba(0,0,0,0.95) 80%, 
        #000000 100%);
    pointer-events: none;
    z-index: 2;
}

.ai-glow-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.ai-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out;
}

.ai-glow-1 {
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(180,92,255,0.4) 0%, rgba(98,0,238,0.1) 70%, transparent 100%);
}

.ai-glow-2 {
    bottom: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(0,122,255,0.4) 0%, rgba(0,200,255,0.1) 70%, transparent 100%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

.content-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    padding-top: max(40px, env(safe-area-inset-top));
    padding-bottom: max(30px, env(safe-area-inset-bottom));
    text-align: center;
}

.logo-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10vh;
}

.app-logo {
    width: 130px;
    height: 130px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(98,0,238,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    animation: pulse-logo 4s infinite ease-in-out;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.bottom-area {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    height: 56px;
    background: #007AFF;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    transition: transform 0.2s;
}

.cta-button:active {
    transform: scale(0.96);
}

.legal-links {
    margin-top: 25px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.legal-links a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

@media (max-height: 700px) {
    .app-logo { width: 100px; height: 100px; }
    h1 { font-size: 2.2rem; }
    p { font-size: 1rem; margin-bottom: 20px; }
    .logo-area { padding-bottom: 5vh; }
}

/* --- תוספת חדשה: אפקט Blur לסטטוס בר --- */
.status-bar-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    /* הגובה יהיה בדיוק גובה ה-Notch */
    height: env(safe-area-inset-top);
    
    /* רקע כהה חצי שקוף */
    background: rgba(0, 0, 0, 0.2);
    
    /* הקסם: טשטוש הרקע שמאחוריו */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    z-index: 9999; /* שיהיה מעל הכל */
    pointer-events: none; /* שלא יפריע ללחיצות */
}