
        :root {
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --card-bg: #121212;
            --accent-green: #00ff88;
            --accent-green-light: #00cc6a;
            --text-primary: #e0e0e0;
            --text-secondary: #a0a0a0;
            --border-color: #222;
            --glow: 0 0 10px rgba(0, 255, 136, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Tajawal', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 20%);
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            color: var(--accent-green);
            font-size: 28px;
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(to right, var(--accent-green), #00cc6a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--accent-green);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 255, 136, 0.03),
                    rgba(0, 255, 136, 0.03) 1px,
                    transparent 1px,
                    transparent 2px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(0, 255, 136, 0.03),
                    rgba(0, 255, 136, 0.03) 1px,
                    transparent 1px,
                    transparent 2px
                );
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            max-width: 700px;
            z-index: 2;
        }

        .hero h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light));
            color: var(--darker-bg);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: var(--glow);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-green);
        }

        /* About Section */
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-green);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .skill-tag {
            background: var(--card-bg);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            border-color: var(--accent-green);
            box-shadow: var(--glow);
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-green);
            z-index: -1;
            opacity: 0.3;
        }

        .profile-img {
            width: 100%;
            border-radius: 8px;
            filter: grayscale(100%) contrast(120%);
            transition: all 0.5s ease;
        }

        .profile-img:hover {
            filter: grayscale(0%) contrast(100%);
            transform: scale(1.03);
        }

        /* Articles Section */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .article-card {
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .article-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-green);
            box-shadow: var(--glow);
        }

        .article-img {
            height: 200px;
            background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            font-size: 3rem;
        }

        .article-content {
            padding: 25px;
        }

        .article-category {
            display: inline-block;
            background: rgba(0, 255, 136, 0.1);
            color: var(--accent-green);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .article-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .article-excerpt {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
        }

        /* Social Media Section */
        .social-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .social-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .platform-card {
            background: var(--card-bg);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .platform-card:hover {
            border-color: var(--accent-green);
            box-shadow: var(--glow);
            transform: translateY(-5px);
        }

        .platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .youtube .platform-icon { color: #ff0000; }
        .discord .platform-icon { color: #5865f2; }
        .instagram .platform-icon { color: #e1306c; }
        .github .platform-icon { color: var(--text-primary); }

        .platform-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .platform-desc {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .platform-link {
            display: inline-block;
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .platform-link:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--accent-green), #00cc6a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-green);
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 80%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .cta-button {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            section {
                padding: 70px 0;
            }
        }
/* دعم كامل للغة العربية */
html[dir="rtl"] body {
    font-family: 'Tajawal', 'Roboto', sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
    font-family: 'Tajawal', 'Orbitron', sans-serif;
}