body {
    background: #121212;
    color: #e0e0e0;
    font-family: 'Cairo', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    direction: rtl; /* لضمان دعم اللغة العربية */
    text-align: right; /* محاذاة النص لليمين */
}

.container {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 3em;
    color: #4CAF50; /* لون مميز للعنوان */
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.2em;
    color: #bdbdbd;
    margin: 5px 0 0;
}

.info-card, .links-section .card {
    background: #242424;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover, .links-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.info-card h2, .links-section h2 {
    color: #4CAF50;
    margin-top: 0;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

a {
    color: #66bb6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a5d6a7;
    text-decoration: underline;
}

strong {
    color: #bdbdbd;
}

.links-section .card {
    display: flex;
    flex-direction: column;
}

.links-section .card a {
    font-size: 1.1em;
    font-weight: bold;
}

.links-section .card ul {
    margin-top: 10px;
}
