@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Tajawal:wght@400;500;700&display=swap');

:root {
    --primary-color: #00ffa3;
    --primary-glow: #00ffa344;
    --bg-dark: #0a0c10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-blur: blur(16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 10%, #1a2a22 0%, #0a0c10 100%);
}

.gradient-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-wrapper {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #00d1ff);
    padding: 2px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.logo-inner {
    background: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

ul {
    list-style: none;
    margin-bottom: 15px;
}

li {
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    right: 0;
    font-weight: bold;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 25px;
    }
    h1 {
        font-size: 2rem;
    }
}
