
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', 'Montserrat', sans-serif;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}

.split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.left-pane {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.main-p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 80px;
}

.countdown span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.countdown p { font-size: 0.9rem; margin: 0; }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-form button {
    padding: 15px 25px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover { background: #0056b3; }

.right-pane h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.right-pane .feature {
    margin-bottom: 25px;
    max-width: 400px;
}

.right-pane .feature h3 { font-size: 1.5rem; margin-bottom: 5px; }
.right-pane .feature p { font-size: 1.1rem; line-height: 1.5; margin: 0; color: #eee; }

.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

html[dir="rtl"] .lang-switcher { right: auto; left: 20px; }

.lang-switcher button {
    background: rgba(0,0,0,0.4);
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
}

[lang="en"] { display: none; }

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    .pane {
        min-height: 50vh;
    }
    h1 { font-size: 2.5rem; }
}
