:root {
    --primary: #FF8C00;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text: #ffffff;
    --text-muted: #a3a3a3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
html[dir="rtl"] body { font-family: 'Heebo', sans-serif; }
.container {
    text-align: center;
    max-width: 500px;
}
.logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
}
.logo-en { display: block; }
.logo-he { display: none; }
html[dir="rtl"] .logo-en { display: none; }
html[dir="rtl"] .logo-he { display: block; }
.icon {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary);
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}
.lang-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}
.lang-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.3s, color 0.3s;
}
.lang-btn.active {
    background: var(--primary);
    color: var(--bg-dark);
}
.content-en { display: block; }
.content-he { display: none; }
html[dir="rtl"] .content-en { display: none; }
html[dir="rtl"] .content-he { display: block; }
