body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #ff7a00;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

.owner {
    margin-top: 20px;
    font-weight: bold;
}

footer {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

.proadv {
    font-size: 12px;
    opacity: 0.7;
}

/* Language Button */
#langToggle {
    /* position: absolute; */
    margin-top: 50px;
    padding: 6px 12px;
    border: none;
    background: #ff7a00;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
}

/* RTL Support */
body[dir="rtl"] {
    font-family: "Tahoma", Arial, sans-serif;
}