     :root {
            --background: hsl(220 15% 4%);
            --foreground: hsl(40 20% 95%);
            --card: hsl(220 15% 8%);
            --card-foreground: hsl(40 20% 95%);
            --primary: hsl(25 95% 53%);
            --primary-foreground: hsl(220 15% 4%);
            --secondary: hsl(220 15% 12%);
            --muted: hsl(220 12% 16%);
            --muted-foreground: hsl(220 10% 55%);
            --accent: hsl(35 100% 50%);
            --border: hsl(220 15% 15%);
            --neon-green: hsl(145 70% 45%);
            --neon-amber: hsl(35 100% 50%);
            --neon-red: hsl(0 85% 55%);
            --gradient-primary: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(35 100% 50%) 100%);
            --shadow-glow: 0 0 40px hsla(25, 95%, 53%, 0.35);
            --shadow-card: 0 8px 50px hsla(0, 0%, 0%, 0.5);
            --radius: 0.75rem;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Cairo', sans-serif;
            background: var(--background);
            color: var(--foreground);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 { font-family: 'Orbitron', sans-serif; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

        /* Glass Effect */
        .glass {
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid hsla(220, 15%, 15%, 0.5);
        }

        /* Text Gradient */
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 64px;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: var(--radius);
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
        }

        .brand-text { display: none; }
        @media (min-width: 640px) { .brand-text { display: block; } }

        .brand-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .brand-subtitle {
            font-size: 0.625rem;
            color: var(--muted-foreground);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .nav { display: none; gap: 1.5rem; }
        @media (min-width: 768px) { .nav { display: flex; } }

        .nav-link {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-link:hover { color: var(--primary); }

        .header-actions { display: flex; align-items: center; gap: 0.75rem; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-hero {
            background: var(--gradient-primary);
            color: var(--primary-foreground);
            box-shadow: var(--shadow-glow);
        }

        .btn-hero:hover { opacity: 0.9; }

        .btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

        /* Language Dropdown */
        .lang-dropdown { position: relative; }

        .lang-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--foreground);
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .lang-trigger:hover { border-color: var(--primary); }

        .lang-trigger svg { width: 16px; height: 16px; color: var(--primary); }

        .lang-menu {
            position: absolute;
            top: 100%;
            
            margin-top: 0.5rem;
            min-width: 160px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            background: var(--card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            display: none;
            z-index: 200;
        }

        .lang-dropdown:hover .lang-menu { display: block; }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.625rem 0.75rem;
            width: 100%;
            border: none;
            background: transparent;
            color: var(--foreground);
            font-size: 0.875rem;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
        }

        .lang-option:hover { background: var(--muted); }
        .lang-option.active { background: hsla(25, 95%, 53%, 0.1); color: var(--primary); }

        .lang-flag { font-size: 1.125rem; }

        .lang-footer {
            padding: 0.5rem 0.75rem;
            background: var(--muted);
            border-top: 1px solid var(--border);
            font-size: 0.625rem;
            color: var(--muted-foreground);
            text-align: center;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 5rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, hsla(25, 95%, 53%, 0.12) 0%, transparent 50%);
        }

        .hero-grid {
            display: grid;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            background: hsla(25, 95%, 53%, 0.1);
            border: 1px solid hsla(25, 95%, 53%, 0.3);
            margin-bottom: 1.5rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .badge-text { font-size: 0.875rem; font-weight: 500; color: var(--primary); }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .hero-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        [dir="rtl"] .hero-list li { flex-direction: row-reverse; text-align: right; }

        .hero-list-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: hsla(25, 95%, 53%, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .hero-list-icon svg { width: 14px; height: 14px; color: var(--primary); }

        .hero-list-text { font-size: 0.875rem; color: var(--muted-foreground); }

        .download-note {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: 1rem;
            max-width: 400px;
        }

        /* Beta Banner */
        .beta-banner {
            padding: 1.5rem;
            border-radius: 1rem;
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid var(--primary);
            box-shadow: 0 0 10px hsla(25, 95%, 53%, 0.3), inset 0 0 10px hsla(25, 95%, 53%, 0.1);
            margin-bottom: 1.5rem;
        }

        .beta-banner-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .beta-banner-text { font-size: 0.875rem; color: var(--muted-foreground); }

        /* Video */
        .video-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .video-frame {
            aspect-ratio: 16/9;
            border-radius: 1rem;
            overflow: hidden;
            background: var(--card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-card);
        }

        .video-frame iframe { width: 100%; height: 100%; border: none; }

        .video-play {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: hsla(25, 95%, 53%, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px hsla(25, 95%, 53%, 0.4); }
            50% { box-shadow: 0 0 40px hsla(25, 95%, 53%, 0.6); }
        }

        .video-play svg { width: 32px; height: 32px; color: var(--primary); margin-left: 4px; }

        .video-caption {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            text-align: center;
            margin-top: 1rem;
        }

        /* Section */
        .section { padding: 5rem 0; position: relative; }

        .section-header { text-align: center; margin-bottom: 3rem; }

        .section-badge {
            display: inline-block;
            padding: 0.375rem 1rem;
            border-radius: 9999px;
            background: hsla(25, 95%, 53%, 0.1);
            border: 1px solid hsla(25, 95%, 53%, 0.3);
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Why Cards */
        .why-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

        .why-card {
            padding: 1.5rem;
            border-radius: 1rem;
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid hsla(220, 15%, 15%, 0.5);
            transition: all 0.3s;
        }

        .why-card:hover {
            border-color: hsla(25, 95%, 53%, 0.5);
            box-shadow: var(--shadow-glow);
        }

        .why-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }

        .why-card:hover .why-icon { transform: scale(1.1); }

        .why-icon svg { width: 24px; height: 24px; color: var(--primary-foreground); }

        .why-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .why-body { font-size: 0.875rem; color: var(--muted-foreground); }

        /* Comparison Table */
        .comparison-wrapper { overflow-x: auto; padding-bottom: 1rem; }

        .comparison-table { min-width: 900px; }

        .comparison-headers {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .comparison-header-label {
            padding: 1rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .comparison-header-item {
            padding: 1rem;
            border-radius: var(--radius);
            text-align: center;
            background: var(--card);
            border: 1px solid var(--border);
            transition: border-color 0.3s;
        }

        .comparison-header-item:hover { border-color: hsla(25, 95%, 53%, 0.3); }

        .comparison-header-item.highlight {
            background: var(--gradient-primary);
            border: none;
            box-shadow: var(--shadow-glow);
        }

        .comparison-header-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .comparison-header-item.highlight .comparison-header-name { color: var(--primary-foreground); }

        .comparison-header-sub {
            font-size: 0.625rem;
            color: var(--muted-foreground);
            margin-top: 0.25rem;
        }

        .comparison-header-item.highlight .comparison-header-sub { color: hsla(220, 15%, 4%, 0.7); }

        .comparison-body {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border);
            background: hsla(220, 15%, 8%, 0.5);
            backdrop-filter: blur(10px);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 0.75rem;
            align-items: center;
            transition: background 0.2s;
        }

        .comparison-row:nth-child(even) { background: hsla(220, 15%, 8%, 0.3); }
        .comparison-row:hover { background: hsla(25, 95%, 53%, 0.05); }

        .comparison-feature {
            padding: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .comparison-status {
            padding: 1rem;
            display: flex;
            justify-content: center;
        }

        .status-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .status-icon svg { width: 16px; height: 16px; }

        .status-yes { background: hsla(145, 70%, 45%, 0.2); }
        .status-yes svg { color: var(--neon-green); }

        .status-partial { background: hsla(35, 100%, 50%, 0.2); }
        .status-partial svg { color: var(--neon-amber); }

        .status-no { background: hsla(0, 85%, 55%, 0.2); }
        .status-no svg { color: var(--neon-red); }

        .status-dev { background: hsla(25, 95%, 53%, 0.2); }
        .status-dev svg { color: var(--primary); }

        /* Legend */
        .legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .legend-item { display: flex; align-items: center; gap: 0.75rem; }

        .legend-text { font-size: 0.875rem; color: var(--muted-foreground); }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 4rem;
        }

        @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

        .stat-card {
            padding: 1.5rem;
            border-radius: 1rem;
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid hsla(220, 15%, 15%, 0.5);
            text-align: center;
            transition: border-color 0.3s;
        }

        .stat-card:hover { border-color: hsla(25, 95%, 53%, 0.3); }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-top: 0.25rem;
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border);
            background: hsla(220, 15%, 8%, 0.5);
            padding: 2rem 0;
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                text-align: 
            },
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-logo {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .footer-text { font-size: 0.875rem; color: var(--muted-foreground); }

        /* Screenshots */
        .screens-showcase { max-width: 1000px; margin: 0 auto; }

        .screens-main {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 1rem;
            overflow: hidden;
            background: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .screens-placeholder {
            text-align: center;
            padding: 2rem;
        }

        .screens-num {
            width: 96px;
            height: 96px;
            margin: 0 auto 1rem;
            border-radius: 1rem;
            background: hsla(25, 95%, 53%, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--primary);
        }

        .screens-caption { color: var(--muted-foreground); }

        .screens-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid hsla(220, 15%, 15%, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .screens-arrow:hover { background: hsla(25, 95%, 53%, 0.2); }

        .screens-arrow svg { width: 24px; height: 24px; }



        .screens-index {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            background: hsla(220, 15%, 8%, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid hsla(220, 15%, 15%, 0.5);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.875rem;
        }

        .screens-index-current { color: var(--primary); }

        .screens-thumbs {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .screens-thumb {
            width: 80px;
            height: 56px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--border);
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .screens-thumb:hover { border-color: hsla(25, 95%, 53%, 0.5); }
        .screens-thumb.active { border-color: var(--primary); box-shadow: var(--shadow-glow); }

        .screens-thumb-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            color: var(--primary);
        }

        /* Hide on mobile */
        @media (max-width: 639px) {
            .hide-mobile { display: none; }
        }
    /* بدل ما نطبع left/right من PHP */
.lang-menu { right: 0; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }

.screens-arrow-prev { left: 1rem; }
.screens-arrow-next { right: 1rem; }
[dir="rtl"] .screens-arrow-prev { left: auto; right: 1rem; }
[dir="rtl"] .screens-arrow-next { right: auto; left: 1rem; }

/* footer text align */
@media (min-width: 768px) {
  .footer-inner { text-align: left; }
  [dir="rtl"] .footer-inner { text-align: right; }
}
