:root {
    --primary-teal: #1e564d; /* درجة الأخضر من اللوجو تقريبياً */
    --primary-magenta: #ac1e44; /* درجة الأحمر/الموف من اللوجو تقريبياً */
    --text-dark: #333;
    --text-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-dark);
}

body[dir="rtl"] {
    font-family: 'Cairo', 'Poppins', sans-serif;
}
body[dir="rtl"] button {
    font-family: 'Cairo', 'Poppins', sans-serif;
}
.container {
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    padding: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-teal);
    font-weight: 700;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #666;
}

.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

button#toggleBtn {
    padding: 10px 25px;
    background: var(--primary-magenta);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(172, 30, 68, 0.3);
    transition: all 0.3s ease;
}

button#toggleBtn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

/* Newsletter Area */
.newsletter form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

input[type="email"] {
    padding: 15px 25px;
    width: 350px;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: border 0.3s;
}

input[type="email"]:focus {
    border-color: var(--primary-teal);
}

form button {
    padding: 15px 40px;
    background: var(--primary-teal);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: var(--primary-magenta);
}

/* Social Footer */
.social-links {
    margin-top: 60px;
}

.social-links a {
    color: var(--primary-teal);
    font-size: 20px;
    margin: 0 15px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-magenta);
}

.copyright {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #999;
}

/* Decoration background - Tech pattern vibes */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-teal) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 1;
}

/* Responsiveness */
@media (max-width: 600px) {
    .content h1 { font-size: 1.8rem; }
    input[type="email"] { width: 100%; }
    form button { width: 100%; }
}