        /* Reset default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body styles - dark theme */
        body {
            font-family: 'Kumbh Sans', 'Courier New', monospace;
            background: #0f1621;
            color: #e5e7eb;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        /* Header styles - fixed at top */
        .tcjo-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 20;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background: rgba(15, 22, 33, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        }

        /* Left side - Language toggle button */
        .tcjo-language {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 30px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 16px;
            color: #e5e7eb;
            text-decoration: none;
            cursor: pointer;
            font-family: 'El Messiri', 'Courier New', monospace;
        }

        .tcjo-language:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: #3b82f6;
            transform: translateY(-2px);
        }

        .tcjo-language i {
            font-size: 18px;
            color: #3b82f6;
        }

        /* Right side - Visit button container */
        .tcjo-visit-button {
            display: flex;
            align-items: center;
        }

        .tcjo-visit-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            /* Default font (will be overridden for Arabic) */
            font-family: 'Kumbh Sans', sans-serif;
        }

        .tcjo-visit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .tcjo-visit-btn i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .tcjo-visit-btn:hover i {
            transform: translateX(4px);
        }

        /* Footer styles */
        .tcjo-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 20;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 20px;
            background: rgba(15, 22, 33, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .tcjo-copyright {
            color: #9ca3af;
            letter-spacing: 0.3px;
            font-size: 14px;
            text-align: center;
            font-family: 'Kumbh Sans', sans-serif;
        }

        .tcjo-copyright span {
            color: #3b82f6;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tcjo-copyright:hover span {
            text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
        }

        /* Background floating words container */
        .tcjo-background-words {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .tcjo-word {
            position: absolute;
            color: rgba(59, 130, 246, 0.08);
            font-size: clamp(14px, 3vw, 28px);
            font-weight: 600;
            white-space: nowrap;
            user-select: none;
            pointer-events: none;
            animation: tcjo-rise linear infinite;
            font-family: 'Kumbh Sans', monospace;
        }

        @keyframes tcjo-rise {
            0% { transform: translateY(100vh); }
            100% { transform: translateY(-100vh); }
        }

        /* Code editor container */
        .tcjo-editor-container {
            position: absolute;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0.2;
            z-index: 1;
            pointer-events: none;
        }

        .tcjo-editor {
            width: min(92%, 1100px);
            height: min(75%, 700px);
            background: #1e1e2e;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #2d2d3a;
        }

        .tcjo-editor-header {
            height: 40px;
            background: #2d2d3a;
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 8px;
        }

        .tcjo-circle {
            width: 14px;
            height: 14px;
            border-radius: 50%;
        }

        .tcjo-red { background: #ff5f56; }
        .tcjo-yellow { background: #ffbd2e; }
        .tcjo-green { background: #27c93f; }

        .tcjo-editor-body {
            flex: 1;
            padding: 20px;
            color: #e5e7eb;
            font-size: clamp(12px, 2vw, 15px);
            font-family: 'Courier New', monospace;
            white-space: pre-wrap;
            overflow-y: auto;
            line-height: 1.6;
            scrollbar-width: thin;
            scrollbar-color: #3b82f6 #1e1e2e;
        }

        .tcjo-editor-body::-webkit-scrollbar {
            width: 5px;
        }

        .tcjo-editor-body::-webkit-scrollbar-track {
            background: #1e1e2e;
        }

        .tcjo-editor-body::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 4px;
        }

        .tcjo-cursor-blink {
            display: inline-block;
            width: 8px;
            height: 18px;
            background: #3b82f6;
            vertical-align: middle;
            animation: tcjo-blink 1s infinite;
        }

        @keyframes tcjo-blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Center content (logo) */
        .tcjo-center-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            text-align: center;
            pointer-events: auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .tcjo-logo-container {
            width: 100%;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
        }

        .tcjo-custom-logo {
            width: clamp(180px, 35vw, 320px);
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .tcjo-custom-logo:hover {
            transform: scale(1.15);
            filter: drop-shadow(0 0 35px rgba(59, 130, 246, 0.8));
        }

        .tcjo-logo-sub {
            font-size: clamp(10px, 1.5vw, 14px);
            color: #9ca3af;
            margin-top: 12px;
            letter-spacing: 0.5px;
            font-family: 'Kumbh Sans', sans-serif;
            font-weight: 600;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .tcjo-logo-container:hover .tcjo-logo-sub {
            color: #3b82f6;
            opacity: 1;
            letter-spacing: 1px;
        }

        /* Service items floating around */
        .tcjo-service-item {
            position: absolute;
            font-size: clamp(11px, 1.8vw, 15px);
            opacity: 1;
            pointer-events: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 4;
            background: rgba(10, 12, 15, 0.8);
            padding: 6px 14px;
            border-radius: 30px;
            border: 1px solid rgba(59, 130, 246, 0.25);
            backdrop-filter: blur(3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: translate(-50%, -50%);
            /* Default font (English) */
            font-family: 'Kumbh Sans', sans-serif;
            font-weight: 600;
        }

        /* Service item icon */
        .tcjo-service-item i {
            color: #3b82f6;
            font-size: 1em;
        }

        /* Progress bar container */
        .tcjo-progress-bar {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            z-index: 10;
        }

        .tcjo-progress-fill {
            height: 100%;
            background: #3b82f6;
            width: 0%;
            transition: width 1s linear;
            box-shadow: 0 0 15px #3b82f6;
        }

        /* Mobile responsive styles */
        @media (max-width: 768px) {
            .tcjo-header { padding: 15px 20px; }
            .tcjo-language { padding: 6px 16px; font-size: 14px; }
            .tcjo-language i { font-size: 16px; }
            .tcjo-visit-btn { padding: 8px 18px; font-size: 14px; }
            .tcjo-footer { padding: 12px 15px; }
            .tcjo-copyright { font-size: 13px; }
            .tcjo-editor-container { opacity: 0.18; }
            .tcjo-editor { width: min(94%, 1100px); height: min(70%, 700px); border-radius: 14px; }
            .tcjo-editor-body { padding: 16px; font-size: 12px; line-height: 1.5; }
            .tcjo-service-item { padding: 4px 10px; font-size: 11px; gap: 4px; }
            .tcjo-custom-logo { width: clamp(160px, 32vw, 280px); }
            .tcjo-logo-sub { font-size: 10px; margin-top: 8px; letter-spacing: 2px; }
            .tcjo-progress-bar { width: 150px; bottom: 70px; }
        }

        @media (max-width: 480px) {
            .tcjo-header { padding: 12px 15px; }
            .tcjo-language { padding: 5px 14px; font-size: 13px; }
            .tcjo-visit-btn { padding: 6px 14px; font-size: 12px; gap: 6px; }
            .tcjo-footer { padding: 10px; }
            .tcjo-copyright { font-size: 12px; }
            .tcjo-editor { height: min(65%, 700px); border-radius: 12px; }
            .tcjo-editor-body { padding: 12px; font-size: 11px; }
            .tcjo-editor-header { height: 35px; padding: 0 12px; }
            .tcjo-circle { width: 12px; height: 12px; }
            .tcjo-service-item { padding: 3px 8px; font-size: 10px; gap: 3px; }
            .tcjo-custom-logo { width: clamp(140px, 30vw, 240px); }
            .tcjo-logo-sub { font-size: 9px; margin-top: 6px; letter-spacing: 1.5px; }
            .tcjo-progress-bar { width: 120px; height: 2.5px; bottom: 60px; }
            .tcjo-service-item i { font-size: 0.9em; }
        }

        /* RTL & Arabic font overrides */
        body.rtl .tcjo-language {
            font-family: 'El Messiri', 'Kumbh Sans', sans-serif;
            flex-direction: row-reverse;
        }
        body.rtl .tcjo-visit-btn {
            font-family: 'El Messiri', 'Kumbh Sans', sans-serif; /* Egyptian font for visit button in Arabic */
        }
        body.rtl .tcjo-visit-btn i {
            transform: rotate(180deg);
        }
        body.rtl .tcjo-visit-btn:hover i {
            transform: rotate(180deg) translateX(4px);
        }
        /* Apply Egyptian font to service items when in RTL (Arabic) */
        body.rtl .tcjo-service-item {
            font-family: 'El Messiri', 'Kumbh Sans', sans-serif;
        }
        /* Optional: footer copyright in Arabic also use Egyptian font */
        body.rtl .tcjo-copyright {
            font-family: 'El Messiri', 'Kumbh Sans', sans-serif;
        }