/* الهوية اللونية المستوحاة من اللوجو */
:root {
    --color-void: #020203;       /* أسود خالص مطفأ */
    --color-surface: #0b0c10;    /* رمادي غامق جداً للكروت */
    --color-brand: #f49200;      /* البرتقالي الصناعي الفخم من اللوجو */
    --color-brand-glow: rgba(244, 146, 0, 0.4);
    --color-text: #f8fafc;
}

body {
    background-color: var(--color-void);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* تأثير الـ 3D التفاعلي عند تمرير الماوس على الكروت */
.card-3d-effect {
    position: relative;
    background: rgba(11, 12, 16, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-3d-effect:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-2deg);
    border-color: var(--color-brand);
    box-shadow: 0 20px 40px rgba(244, 146, 0, 0.1);
}

.hero-image {
    transition: filter 0.6s ease, transform 0.6s ease;
}

.card-3d-effect:hover .hero-image {
    filter: none;
    transform: scale(1.02);
}

.glow-text {
    text-shadow: 0 0 20px var(--color-brand-glow);
}

/* محاكاة حركة الطريق السريع في الخلفية (3D Path Animation) */
.highway-bg-animation {
    background: linear-gradient(135deg, rgba(2,2,3,0.95) 0%, rgba(11,12,16,0.8) 100%);
    position: relative;
}
.highway-bg-animation::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-brand-glow) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.15;
    pointer-events: none;
}