       @font-face {
            font-family: 'Vazir';
            src: url('../../fonts/IRANSans\(FaNum\).ttf');
            font-weight: normal;
            font-style: normal;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazir', Tahoma, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0c1424 0%, #0a0f1a 100%);
            color: #e0e0ff;
            min-height: 100vh;
            direction: rtl;
            text-align: right;
        }

        /* Navbar Styles */
        nav {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2d3756;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #60a5fa;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-left: 10px;
            color: #3b82f6;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: #cbd5e1;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: #60a5fa;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Main Content */
        main {
            flex: 1;
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .page-header {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2d3756;
        }

        .page-header h1 {
            font-size: 2.2rem;
            color: #93c5fd;
            margin-bottom: 10px;
        }

        .page-header p {
            color: #94a3b8;
            font-size: 1.1rem;
            max-width: 700px;
        }

        /* Tutorial Section */
        .tutorial-section {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #2d3756;
        }

        .tutorial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .tutorial-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            font-size: 1.5rem;
        }

        .tutorial-title {
            font-size: 1.5rem;
            color: #93c5fd;
        }

        .video-placeholder {
            background: rgba(10, 17, 32, 0.8);
            border-radius: 8px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid #2d3756;
            position: relative;
        }

        .play-icon {
            font-size: 4rem;
            color: #3b82f6;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover .play-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        .tutorial-steps {
            padding-right: 20px;
        }

        .tutorial-steps li {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .step-number {
            display: inline-block;
            width: 25px;
            height: 25px;
            background: rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            text-align: center;
            line-height: 25px;
            margin-left: 10px;
            color: #93c5fd;
        }

        /* Search Section */
        .search-section {
            margin-bottom: 30px;
            display: flex;
            gap: 15px;
        }

        .search-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 8px;
            border: 1px solid #2d3756;
            background: rgba(10, 17, 32, 0.8);
            color: #e0e0ff;
            font-size: 1rem;
        }

        .search-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
        }

        .search-btn {
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0 25px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

        /* Extensions Grid */
        .extensions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .extension-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #2d3756;
            transition: all 0.3s ease;
        }

        .extension-card:hover {
            transform: translateY(-5px);
            border-color: #3b82f6;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .extension-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .extension-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            font-size: 1.5rem;
        }

        .extension-info {
            flex: 1;
        }

        .extension-name {
            font-size: 1.2rem;
            color: #93c5fd;
            margin-bottom: 5px;
        }

        .extension-version {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .extension-description {
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .extension-meta {
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #2d3756;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .install-btn {
            background: rgba(59, 130, 246, 0.2);
            color: #93c5fd;
            border: 1px solid #3b82f6;
            border-radius: 6px;
            padding: 10px 15px;
            width: 100%;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .install-btn:hover {
            background: rgba(59, 130, 246, 0.3);
        }

        .install-btn.is-disabled {
            background: rgba(30, 41, 59, 0.7);
            border-color: #2d3756;
            color: #94a3b8;
            cursor: not-allowed;
        }

        .install-btn.installing {
            background: rgba(59, 130, 246, 0.1);
        }

        .install-btn.success {
            background: rgba(16, 185, 129, 0.2);
            border-color: #10b981;
            color: #6ee7b7;
        }

        .hub-empty-search {
            margin-top: 20px;
            color: #94a3b8;
            text-align: center;
        }

        /* Footer */
        footer {
            background: rgba(15, 23, 42, 0.95);
            padding: 25px;
            text-align: center;
            font-size: 0.95rem;
            color: #94a3b8;
            border-top: 1px solid #2d3756;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .search-section {
                flex-direction: column;
            }

            .extensions-grid {
                grid-template-columns: 1fr;
            }

            .tutorial-steps {
                padding-right: 0;
            }
        }
