
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Cairo', 'Tajawal', 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            color: #e0e0e0;
            direction: rtl;
            line-height: 1.8;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
 header {
            background-color: rgba(15, 20, 25, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .header-logo i {
            margin-left: 10px;
            font-size: 1.8rem;
        }

        .header-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .header-nav a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }

        .header-nav a:hover {
            color: var(--primary-color);
        }

        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .header-nav a:hover::after {
            width: 100%;
        }

        .header-search {
            display: flex;
            flex: 1;
            max-width: 400px;
            margin: 0 2rem;
        }

        .header-search input {
            flex: 1;
            padding: 0.6rem 1rem;
            background-color: var(--input-bg);
            border: 1px solid #3a4252;
            border-radius: 8px 0 0 8px;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .header-search button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .header-search button:hover {
            background-color: #d32f3c;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
        }

        .header-actions a {
            color: var(--light-text);
            font-size: 1.2rem;
            text-decoration: none;
            padding: 0.5rem;
            transition: color 0.3s;
        }

        .header-actions a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .breadcrumb a {
            color: #2575fc;
            text-decoration: none;
        }
        
        .breadcrumb span {
            color: #888;
            margin: 0 0.5rem;
        }
        
        /* Hero */
        .hero {
            text-align: center;
            padding: 3rem 0 2rem;
            background: linear-gradient(135deg, rgba(106,17,203,0.15), rgba(37,117,252,0.15));
            border-radius: 15px;
            margin-bottom: 3rem;
            border: 2px solid rgba(255,215,0,0.2);
        }
        
        .hero-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 0.5rem;
        }
        
        .hero .subtitle {
            font-size: 1.2rem;
            color: #b0b0b0;
            margin-bottom: 1rem;
        }
        
        .hero .time {
            display: inline-block;
            background: rgba(40,167,69,0.2);
            border: 2px solid #28a745;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            color: #28a745;
            font-weight: 600;
        }
        
        /* Quick Info */
        .quick-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .info-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
        }
        
        .info-card .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .info-card .label {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        
        .info-card .value {
            color: #ffd700;
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        /* Alerts */
        .alert {
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border-right: 5px solid;
        }
        
        .alert-success {
            background: rgba(40,167,69,0.1);
            border-color: #28a745;
        }
        
        .alert-warning {
            background: rgba(255,193,7,0.1);
            border-color: #ffc107;
        }
        
        .alert-danger {
            background: rgba(220,53,69,0.1);
            border-color: #dc3545;
        }
        
        .alert h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }
        
        .alert p {
            color: #d0d0d0;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }
        
        .alert p:last-child {
            margin-bottom: 0;
        }
        
        /* Sections */
        section {
            background: rgba(255,255,255,0.04);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.08);
        }
        
        section h3 {
            color: #ffd700;
            font-size: 1.9rem;
            margin-bottom: 1.5rem;
            border-right: 4px solid #2575fc;
            padding-right: 1rem;
        }
        
        section h4 {
            color: #2575fc;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        
        section p {
            color: #d0d0d0;
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }
        
        section ul {
            margin: 1.2rem 0;
            padding-right: 1.5rem;
        }
        
        section li {
            color: #d0d0d0;
            font-size: 1.05rem;
            margin-bottom: 0.8rem;
        }
        
        section a {
            color: #2575fc;
            text-decoration: none;
            font-weight: 600;
        }
        
        section a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        
        strong {
            color: #fff;
            font-weight: 600;
        }
        
        .brand {
            color: #ffd700;
            font-weight: 700;
        }
        
        /* Steps */
        .steps {
            counter-reset: step;
        }
        
        .step {
            background: rgba(255,255,255,0.02);
            border: 2px solid rgba(37,117,252,0.3);
            border-radius: 12px;
            padding: 2rem;
            padding-right: 5rem;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.3s;
        }
        
        .step:hover {
            background: rgba(255,255,255,0.05);
            border-color: #ffd700;
            transform: translateX(-5px);
        }
        
        .step:before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #2575fc, #6a11cb);
            color: #fff;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37,117,252,0.5);
        }
        
        .step-title {
            color: #ffd700;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        
        .step-desc {
            color: #d0d0d0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }
        
        .step-tip {
            background: rgba(255,215,0,0.1);
            border-right: 3px solid #ffd700;
            padding: 0.8rem;
            margin-top: 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            color: #ccc;
        }
        
        /* Video placeholder */
        .video-box {
            background: rgba(0,0,0,0.3);
            border: 2px dashed rgba(255,215,0,0.3);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            margin: 2rem 0;
        }
        
        .video-box .icon {
            font-size: 4rem;
            color: #ff0000;
            margin-bottom: 1rem;
        }
        
        /* CTA Button */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #ff1a1a 0%, #ff4444 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(255,26,26,0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(255,26,26,0.6);
            text-decoration: none;
        }
        
        .cta-box {
            background: linear-gradient(135deg, rgba(255,26,26,0.15), rgba(37,117,252,0.15));
            border: 2px solid rgba(255,215,0,0.3);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            margin: 2rem 0;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        footer p {
            color: #888;
            font-size: 0.9rem;
            margin: 0.5rem 0;
        }
        
        footer a {
            color: #2575fc;
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h2 { font-size: 2rem; }
            section { padding: 1.5rem; }
            section h3 { font-size: 1.6rem; }
            .step { padding: 1.5rem; padding-right: 4rem; }
            .step:before { width: 2.5rem; height: 2.5rem; font-size: 1.2rem; right: 1rem; }
            header nav { display: none; }
            .quick-info { grid-template-columns: 1fr; }
        }
    