/*
Theme Name: Entersoft Modern Theme
Theme URI: [https://entersoft.tech](https://entersoft.tech)
Author: Entersoft LLC
Author URI: [https://entersoft.tech](https://entersoft.tech)
Description: قالب ووردبريس عصري يعتمد على نظام الكتل (Block Theme) بتصميم زجاجي داكن وتأثيرات بصرية متقدمة.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: entersoft
Tags: dark, glassmorphism, full-site-editing, block-theme, rtl-language-support
*/

/* * ملاحظة: تم نقل معظم الألوان والخطوط إلى ملف theme.json 
 * يمكنك إضافة تنسيقات الـ CSS الإضافية هنا (مثل حركات الـ Animations)
 */

/* Ambient Background Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    animation: pulseOrb 10s infinite alternate ease-in-out;
}
.orb-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: rgba(229, 179, 74, 0.15); }
.orb-2 { bottom: 10%; left: -10%; width: 600px; height: 600px; background: rgba(15, 30, 60, 0.4); }

@keyframes pulseOrb {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.2) translate(-20px, 20px); opacity: 0.6; }
}

/* Glassmorphism Utilities */
.glass-effect {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}